Skip to main content

Timezone aware Cron/Quartz parser

Project description

Documentation Status

tzcron

A library to work with cron/quartz expressions and timezones.

Overview

tzcron provides a way to define schedules attached to timezones and get time occurrences out of it by just iterating the object created.

Install

>>> pip install tzcron

Usage

>>> import tzcron
>>> import pytz
>>> schedule = tzcron.Schedule("* * * * * *", pytz.utc)
>>> str(schedule)
'Cron: * * * * * * @UTC [2016-09-25 19:10:48.948486+00:00->None]'
>>> next(schedule)
datetime.datetime(2016, 9, 25, 19, 11, tzinfo=<UTC>)
>>> next(schedule)
datetime.datetime(2016, 9, 25, 19, 12, tzinfo=<UTC>)
>>> next(schedule)
datetime.datetime(2016, 9, 25, 19, 13, tzinfo=<UTC>)

For further information, check the official documentation

Develop this package

To test the package:

> python -m nose

To release a new version of the package:

> python setup.py sdist bdist_wheel upload

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tzcron-1.0.0.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

tzcron-1.0.0-py2.py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page