aboutsummaryrefslogtreecommitdiff
path: root/python/aniso8601/README
diff options
context:
space:
mode:
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 0000000000000..d9bf217ecfc37
--- /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