aboutsummaryrefslogtreecommitdiff
path: root/python/aniso8601/README
diff options
context:
space:
mode:
authorDimitris Zlatanidis <d.zlatanidis@gmail.com>2016-08-09 16:57:07 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-08-13 07:22:19 +0700
commiteb5b42110af7aedb697d0ee79b954ef896db5c9e (patch)
treeb25aa6363387e750a9214d75a275cee32dd95d72 /python/aniso8601/README
parentc5f7b84f6423504729c470e71893b63a9055e291 (diff)
python/aniso8601: Added (library for parsing ISO 8601 strings).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/aniso8601/README')
-rw-r--r--python/aniso8601/README17
1 files changed, 17 insertions, 0 deletions
diff --git a/python/aniso8601/README b/python/aniso8601/README
new file mode 100644
index 000000000000..d9bf217ecfc3
--- /dev/null
+++ b/python/aniso8601/README
@@ -0,0 +1,17 @@
+A library for parsing ISO 8601 strings.
+
+Features:
+Pure Python implementation
+Python 3 support
+Logical behavior
+
+ Parse a time, get a datetime.time
+ Parse a date, get a datetime.date
+ Parse a datetime, get a datetime.datetime
+ Parse a duration, get a datetime.timedelta
+ Parse an interval, get a tuple of dates or datetimes
+ Parse a repeating interval, get a date or datetime generator
+
+UTC offset represented as fixed-offset tzinfo
+dateutil.relativedelta available for calendar accuracy
+No regular expressions