Skip to content(if available)orjump to list(if available)

Show HN: Easy Python Time Parsing

Show HN: Easy Python Time Parsing

3 comments

·July 21, 2025

I recently build a python time-parser that can parse most formats in a single line. Might be useful to some here. (Also happy to hear feedback and feature requests)

watersb

Python 3.14 adds strptime()

https://github.com/python/cpython/issues/41431

"The new constructor is equivalent to datetime(*(time.strptime(date_string, format)[0:6]))."

williamjackson

And it only took 20 years!