A simple Python library providing cron functionality via the use of a single decorator.
Project description
Installation
The latest version of pycron may be installed via pip
as follows:
pip install python-cron
Usage
The pycron
module provides a @cron
decorator that may be used to mark functions declared async
as cron jobs. The decorator takes a croniter-style cron string as input to determine when the function should be executed. For example, the following test
function would be automatically executed every 5 seconds:
from datetime import datetime
import pycron
@pycron.cron("* * * * * */5")
async def test(timestamp: datetime):
print(f"test cron job running at {timestamp}")
if __name__ == '__main__':
pycron.start()
All functions declared with the @cron
decorator should take a single positional argument that will contain the current timestamp when the function is automatically invoked. Also note the usage of the pycron.start()
method. This function signals that automated job scheduling and execution should begin and it should be invoked after all jobs have been declared.
For more information on the format of the cron strings that should be provided to the @cron
decorator, please see the croniter documentation on PyPI.
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 Distribution
File details
Details for the file python-cron-1.0.1.tar.gz
.
File metadata
- Download URL: python-cron-1.0.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3be6febfb0e13af9fe70ad3f099e82b10778c544f160bbbfa6ab88b0ff7d7a3c |
|
MD5 | 5bab2350330eda5575a94297e97c8399 |
|
BLAKE2b-256 | ca6df4069d6bf7a1decf5c00c21ff5cdb095baad693f3849fe066a7f2a308183 |