I'm looking for a Python module that would take an arbitrary block of text, search it for something that looks like a date string, and build a DateTime object out of it. Something like Date::Extract in Perl
Thank you in advance.
|
4
|
I'm looking for a Python module that would take an arbitrary block of text, search it for something that looks like a date string, and build a DateTime object out of it. Something like Date::Extract in Perl Thank you in advance. |
||
|
|
|
|
Why no give parsedatetime a try? |
||
|
|
|
|
The nearest equivalent is probably the dateutil module. Usage is:
Using the fuzzy parameter should ignore extraneous text. ie
|
||
|
|