Periodic task with timezone
Project description
Periodic task with timezone
from periodtask import Task, Period, parse_cron, send_mail
def _send_mail(subject, message, html_message=None):
return send_mail(
subject, message,
from_email='from@my.service',
recipient_list=['admins@my.service'],
html_message=html_message
)
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)),
),
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,
policy=SKIP
)
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.3.0.tar.gz
(6.0 kB
view details)
File details
Details for the file periodtask-0.3.0.tar.gz
.
File metadata
- Download URL: periodtask-0.3.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a66575bb30cb65cdf0affbb54819ba8b09babf6e594d0a55ba6fa647303cdb13 |
|
MD5 | 57818c47efac6358935a789db6bc9660 |
|
BLAKE2b-256 | 4c63421b43155d90089aae8a578b3495f8c8e18e850f5898ea2bfd103d4f220d |