I'm writing a function that needs a timedelta input to be passed in as a string. The user must enter something like "32m" or "2h32m", or even "4:13" or "5hr34m56s"... Is there a library or something that has this sort of thing already implemented?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
for the 4:13, and other standard formats(but if you don't know which one) use dateutil.parser.parse from python-dateutil the first format(5hr34m56s) you should parse using regular expressions here is re_based solution:
|
||||
|
To me the most elegant solution, without having to resort to external libraries such as dateutil or manually parsing the input, is to use datetime's powerful
After this you can use your timedelta object as normally, convert it to seconds to make sure we did the correct thing etc.
|
|||||||||
|