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?
|
feedback
|
|
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:
| |||||||
feedback
|