Svelte Hacker News logo
  • top
  • new
  • show
  • ask
  • jobs
  • about

Show HN: Easy Python Time Parsing

github.com

21 points by felixnext 5 days ago

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 a day ago

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 a day ago

    And it only took 20 years!

PontingClarke 5 days ago

[dead]