Periodic task with timezone
Project description
Periodic task with timezone
from periodtask import Task, Period, parse_cron, send_mail
task = Task(
name='test',
command=('/periodtask/test_script.py',),
periods=[
Period(
timezone='Europe/Budapest',
minutes=list(range(0, 60)),
seconds=list(range(0, 60, 5)),
),
# cron fmt: minutes, hours, days, months, weekdays,
# timezone, years, seconds
# in contrast to Cron:
# - `weekdays` is not treated specially
# - no special handling of daylight saving time changes
parse_cron('* * * * * Europe/Budapest * */5')
],
run_on_start=True,
mail_failure=True,
mail_success=True,
mail_skipped=True,
wait_timeout=5,
stop_signal=signal.SIGINT,
send_mail_func=send_mail,
from_email='richardbann@gmail.com',
recipient_list=['richard.bann@vertis.com']
)
task.start()
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
periodtask-0.1.0.tar.gz
(5.9 kB
view details)
File details
Details for the file periodtask-0.1.0.tar.gz
.
File metadata
- Download URL: periodtask-0.1.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108fcfd647ca3e697c7bf15d4fd842ca55d43696b7a78e2d3859679172f3ee0c |
|
MD5 | 3375e92332a8ea85ff99031bc4c032b7 |
|
BLAKE2b-256 | 7b840ff327cc5354fa69dd75400c42fa6ab91ccda24c596a3215ae788681307a |