Skip to main content

Asynchronous background tasks for Python web-frameworks with no dependencies

Project description

autocron

autocron is a Python background task library with no dependencies beside the standard library. It works out of the box with webframeworks like django, pyramid, flask, bottle, tornado or starlette.

autocron makes it easy to delegate long running and recurring tasks to external processes. No hassle with configuration-files.

autocron is designed for the vast majority of webapplications that don't need massive scaling. And don't want to add unnecessary dependencies.

Installation

For installation use pip:

    $ pip install autocron

Quickstart

autocron provides two decorators: cron that takes a string in cron-format as argument, but accepts also keyword-arguments like minutes and hours. And delay to delegate a long running task to a background process.

Here is a simple example how to use autocron with the flask web-framework that can be run with $ flak --app application run:

    # application.py

    import autocron
    from flask import Flask

    app = Flask(__name__)
    autocron.start("the_flask_app.db")

    @autocron.cron("* * * * *")
    def cronjob():
        # do something from time to time ...

    @autocron.delay
    def do_this_later():
        # time consuming task here ...

    @app.route("/later")
    def later():
        do_this_later()
        return "delayed action triggered"

After creating the flask app instance calling autocron.start(<databasename>) starts the background workers. The cron decorated cronjob() function will get executed every minute and the delay decorated do_this_later() function gets delegated to the background worker every time the application processes the /later url. Terminating the application will shut down the worker processes.

More information and examples how to use autocron with other frameworks are at the documentation.

Documentation

The full documentation and release notes are at https://autocron.readthedocs.org

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autocron-0.9.2.tar.gz (30.6 kB view details)

Uploaded Source

Built Distribution

autocron-0.9.2-py3-none-any.whl (25.0 kB view details)

Uploaded Python 3

File details

Details for the file autocron-0.9.2.tar.gz.

File metadata

  • Download URL: autocron-0.9.2.tar.gz
  • Upload date:
  • Size: 30.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for autocron-0.9.2.tar.gz
Algorithm Hash digest
SHA256 e29ff5f117fcf6f53e78d41dd775a5dfdf860731fc845ccdb3be776a492e8f93
MD5 264720de13c8e5aea6c65a8dd29e721f
BLAKE2b-256 c92592ef86862cc063adbf7e9afa52f65e49e4c96910d84821c515ad0dd88d5e

See more details on using hashes here.

File details

Details for the file autocron-0.9.2-py3-none-any.whl.

File metadata

  • Download URL: autocron-0.9.2-py3-none-any.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for autocron-0.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 763f98b8245eaf1b4519f506aa27eeffd36d0947fe1d89382751bcc14b7d08b2
MD5 0c0ab18be2aa42027901e407122dcfc6
BLAKE2b-256 2c0818013cab6ee9e6768ff3c736090b6cf2ecf65b1919fcac517ebc71e432f7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page