Skip to main content

running functions on a schedule for Sanic

Project description

SanicScheduler

SanicScheduler runs a functions on a schedule.

Installation

Automatic installation:

$ pip install sanic-scheduler

SanicScheduler is listed in PyPI and can be installed with pip or easy_install.

Manual installation:

$ git clone https://github.com/asmodius/sanic-scheduler.git
$ cd sanic_scheduler
$ python setup.py install

SanicScheduler source code is hosted on GitHub

Usage

import asyncio
from datetime import timedelta, time

from sanic import Sanic
from sanic_scheduler import SanicScheduler, task

app = Sanic()
scheduler = SanicScheduler(app)

@task(timedelta(seconds=30))
def hello(app):
    """Runs the function every 30 seconds."""
    print("Hello, {0}".format(app))

@task(timedelta(hours=1), time(hour=1, minute=30))
async def foo_bar(_):
    """Runs the function every 1 hours after 1:30."""
    print("Foo")
    await asyncio.sleep(1)
    print("Bar")


if __name__ == "__main__":
    app.run(host='127.0.0.1', port=5000, debug=True)

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

sanic-scheduler-1.0.3.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distributions

sanic_scheduler-1.0.3-py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 3

sanic_scheduler-1.0.3-py2.py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 2 Python 3

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