Initial import of py-dateutil-1.2, from pkgsrc-wip, initially packaged
[pkgsrc.git] / time / py-dateutil / DESCR
1 The dateutil module provides powerful extensions to the standard datetime
2 module, available in Python 2.3+.
3
4 Features
5
6 * Computing of relative deltas (next month, next year, next monday, last week
7   of month, etc);
8 * Computing of relative deltas between two given date and/or datetime objects;
9 * Computing of dates based on very flexible recurrence rules, using a superset
10   of the iCalendar specification. Parsing of RFC strings is supported as well.
11 * Generic parsing of dates in almost any string format;
12 * Timezone (tzinfo) implementations for tzfile(5) format files
13   (/etc/localtime, /usr/share/zoneinfo, etc), TZ environment string (in all
14   known formats), iCalendar format files, given ranges (with help from
15   relative deltas), local machine timezone, fixed offset timezone, and UTC
16   timezone.
17 * Computing of Easter Sunday dates for any given year, using Western, Orthodox
18   or Julian algorithms;
19 * More than 400 test cases.