aboutsummaryrefslogtreecommitdiff
path: root/python/python3-aniso8601/README
diff options
context:
space:
mode:
authorfourtysixandtwo <fourtysixandtwo@sliderr.net>2022-05-20 16:33:32 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-05-21 08:25:26 +0700
commit259c4dbb66b21513f40cb90193827c6762d170dd (patch)
treec3d58071e9e71712ea421ab0d537c2a3abf7d9d0 /python/python3-aniso8601/README
parent059e08471062393f6793d574d228abfd7a991b7d (diff)
python/python3-aniso8601: Added (ISO 8601 string parsing ibrary)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-aniso8601/README')
-rw-r--r--python/python3-aniso8601/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/python3-aniso8601/README b/python/python3-aniso8601/README
new file mode 100644
index 0000000000..7dcb192d0b
--- /dev/null
+++ b/python/python3-aniso8601/README
@@ -0,0 +1,12 @@
+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