Python has pretty good date parsing but is the only way to recognize a datetime such as "Today 3:20 PM" or "Yesterday 11:06 AM" by creating a new date today and doing subtractions?
|
|
A library that I like a lot, and I'm seeing more and more people use, is python-dateutil but unfortunately neither it nor the other traditional big datetime parser, mxDateTime from Egenix can parse the word "tomorrow" in spite of both libraries having very strong "fuzzy" parsers. The only library I've seen that can do this is magicdate. Examples:
Unfortunately this only returns datetime.date objects, and so won't include time parts and can't handle your example of "Today 3:20 PM". So, you need mxDateTime for that. Examples:
EDIT: mxDateTime.Parser is only parsing the time in these examples and ignoring the words "today" and "tomorrow". So for this particular case you need to use a combo of magicdate to get the date and mxDateTime to get the time. My recommendation is to just use python-dateutils or mxDateTime and only accept the string formats they can parse. |
|||
|
|
|
I am not yet completely up to speed on Python yet, but your question interested me, so I dug around a bit. Date subtraction using Since your question asks if that's the only way to do it, I checked out the strftime format codes to see if you could define your own. Unfortunately not. From Python's strftime documentation:
Anyhow, this isn't a definitive answer, but maybe It'll save others time barking up the wrong tree. |
||
|
|
