A simple Python Cron Expression lib
Project description
Python Cron Expression
Introduction
Introducing PyCronExpression
– a user-friendly Python library for crafting Cron job expressions effortlessly.
With this tool, users can create Cron job expressions by simply passing a timestamp or datetime object.
Say goodbye to the complexities of writing Cron expressions
and embrace a more convenient way to manage scheduled tasks on Linux or AWS platforms.
Quickstart
Installation
Install from pypi:
pip install PyCronExpression
Feature List
Name | status |
---|---|
Timestamp or datetime object | done |
Minute | done |
Hourly | done |
Daily | Done |
Weekly | done |
Example
Timestamp or datetime object
from datetime import datetime
from py_cron_expression import CronJobExpression
cron_job = CronJobExpression()
timestamp = int(datetime.now().timestamp())
res = cron_job.cron_expression(time=timestamp)
print(res)
# Output
# 10 55 13 2 5 ? 2020
# If you want to remove second from in your cron job expression.
# Then you need to add cancel='second'
# example
cron_job.cron_expression(time=timestamp, cancel='second')
# Output
# 55 13 2 5 ? 2020
To learn more Documentation.
Changelog
See Changelog
License
MIT
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog. This project adheres to Semantic Versioning.
1.0.1 - 2023-10-28
Update
- Update docs
1.0.0 - 2023-10-28
Add
- Add weekly expression
0.1.0 - 2020-05-28
Fixed
- Tuple comprehension in validations
0.1.1 - 2020-05-28
Fixed
- Fixed broken coverage svg
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
Built Distribution
File details
Details for the file PyCronExpression-1.0.1.tar.gz
.
File metadata
- Download URL: PyCronExpression-1.0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da2b8fc0e7e3cc3202df991b1d9d6fd410f071c93315e72663455935839969e2 |
|
MD5 | a35adefa7f079dc2a04bcec94d8769f6 |
|
BLAKE2b-256 | 6a014f858d66cddfb4f0351c744fafe232e44c624558f2179e50207ccae1fadc |
File details
Details for the file PyCronExpression-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: PyCronExpression-1.0.1-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40c44a8dcbbf890adacc2680c14abc715915da1a41faa963912994861268387c |
|
MD5 | 7187ae1a01b6d270342282ea3ab37b92 |
|
BLAKE2b-256 | 58641047dca1a1e9ae4a2f0128a95428d4b7c0b178736af6126f76cef724ea25 |