asyncio crontab utils
Project description
async_cron
this repo is influenced by schedule.
we supply a async scheduler and async function support
you can easily integrate this lib to you async program,with no blocking
Install
pip install async-cron
Usage examples
import asyncio
from async_cron.job import CronJob
from async_cron.schedule import Scheduler
async def test(*args, **kwargs):
print(args, kwargs)
def tt(*args, **kwargs):
print(args, kwargs)
msh = Scheduler()
myjob = CronJob(name='test', run_total=3).every(
5).second.go(test, (1, 2, 3), name=123)
job2 = CronJob(name='exact', tolerance=100).at(
"2019-01-15 16:12").go(tt, (5), age=99)
job3 = CronJob(name='very_hour').every().hour.at(
":44").go(tt, (5), age=99)
job3 = CronJob(name='hour').every().hour.at(
":00").go(tt, (5), age=99)
job4 = CronJob(name='minute').every(1).minute.go(tt, (5), age=99)
job5 = CronJob(name='weekday').weekday(2).at("11:18").go(tt, (5), age=99)
job6 = CronJob(name='monthday').monthday(16).at("11:22").go(tt, (5), age=99)
job7 = CronJob(name='monthday').every(5).monthday(
16).at("11:22").go(tt, (5), age=99)
msh.add_job(myjob)
msh.add_job(job2)
msh.add_job(job3)
msh.add_job(job4)
msh.add_job(job5)
msh.add_job(job6)
msh.add_job(job7)
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(msh.start())
except KeyboardInterrupt:
print('exit')
License
The async_cron is offered under MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file async_cron-1.2.1-py3-none-any.whl.
File metadata
- Download URL: async_cron-1.2.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b382df6029e4a1e87985ee27ea987e0fb56022f8a170d65e3028e9ee0b40c689
|
|
| MD5 |
e43a4d4db25ded4f676a876d58bd777f
|
|
| BLAKE2b-256 |
6f2c8281c72897627efa58c51509c93040c540319548989f00fde28b656bf362
|