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.1.tar.gz
(5.9 kB
view details)
File details
Details for the file periodtask-0.1.1.tar.gz
.
File metadata
- Download URL: periodtask-0.1.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 605aab7176b55232e1618485b67b4c7e7e1907f8545ee139ab88d31560493b3e |
|
MD5 | bef5bd9784d3c1739bd23fa059042f49 |
|
BLAKE2b-256 | 5ef45e934ea6e43753609da7f27b8c7620a49e7e43aaff4f3d30d745a253b984 |