Scheduling library, that provides a generic way to compose and query schedules of recurrent continuous events, such as working time of organizations, meetings, movie shows, etc.
Project description
This project provides a generic way to compose and query schedules of recurrent continuous events, such as working time of organizations, meetings, movie shows, etc.
It contains a Python implementation and bindings for PostgreSQL, Django and Django REST Framework.
Links
Features
Flexible schedule model, that can express shcedules, that other libraries can’t.
Queries: containment of a single timestamp, future occurences.
Bindings:
PostgreSQL
Domain type for storing schedules
Procedures for performing tests on them (timestamp containment, future occurences).
Django
Model field
Custom lookups (timestamp containment, intersection with interval between two timestamps, test if scheduled event occurs within given interval between two timestamps).
Django-REST-Framework
Serializer field for serializing and deserializing schedules.
Quick example
Just a short example, which shows, how to construct and query a schedule.
>>> import datetime as dt >>> from itertools import islice >>> from tempo.recurrenteventset import RecurrentEventSet >>> recurrenteventset = RecurrentEventSet.from_json( ... ('OR', ... ('AND', [1, 5, 'day', 'week'], [10, 19, 'hour', 'day']), ... ('AND', [5, 6, 'day', 'week'], [10, 16, 'hour', 'day'])) ... ) # 10-19 from Monday to Thursday and 10-16 in Friday >>> d1 = dt.datetime(year=2000, month=10, day=5, hour=18) >>> d1.weekday() # Thursday 3 >>> d1 in recurrenteventset True >>> d2 = dt.datetime(year=2000, month=10, day=6, hour=18) >>> d2.weekday() # Friday 4 >>> d2 in recurrenteventset False >>> d = dt.datetime(year=2000, month=1, day=1) >>> list(islice(recurrenteventset.forward(start=d), 3)) [(datetime.datetime(2000, 1, 3, 10, 0), datetime.datetime(2000, 1, 3, 19, 0)), (datetime.datetime(2000, 1, 4, 10, 0), datetime.datetime(2000, 1, 4, 19, 0)), (datetime.datetime(2000, 1, 5, 10, 0), datetime.datetime(2000, 1, 5, 19, 0))]
Schedule model
Example
Here is an example of how Tempo represents schedules:
('OR', ('AND', [1, 5, 'day', 'week'], [10, 19, 'hour', 'day']), ('AND', [5, 6, 'day', 'week'], [10, 16, 'hour', 'day'])))
It means “from monday to thursday between 10am and 7pm and in friday between 10am and 4pm”.
Informal definition
Basic building block of schedule is a recurrent event, which is defined is such way:
[<start time>, <end time>, <time unit>, <recurrence unit>]
<start time> and <end time> are numbers, that defines interval in which event takes it`s place. <time unit> defines a unit of measurement of time for values of the interval. And <recurrence unit> defines how often the interval repeats. <time unit> and <recurrence unit> values are time measurement units, such as ‘second’, ‘hour’, ‘day’, ‘week’, ‘year’, etc. <recurrence unit> also can be ‘null’, which means, that the interval doesn’t repeats in time, it just defines two points in time, that corresponds to start and end points of the event.
Recurrent events can be composed, using operators: union - or, intersection - and and negation - not.
Alternatives
TODO
More tests for RecurrentEventSet.
Implement negative indexing for schedules - indexing from an end of a day or month, etc. It will make library able to model schedules like “last friday of the month”.
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.