A python module for locating dates inside text. Use this package to extract all sorts of date like strings from a document and turn them into datetime objects.
This module finds the likely datetime strings and then uses the dateparser package to convert to the datetime object.
pip install datefinderIn [1]: string_with_dates=""" ...: ... ...: entries are due by January 4th, 2017 at 8:00pm ...: ... ...: created 01/15/2005 by ACME Inc. and associates. ...: ... ...: """In [2]: importdatefinderIn [3]: matches=datefinder.find_dates(string_with_dates)
In [4]: formatchinmatches:
...: printmatch
...:
2017-01-0420:00:002005-01-1500:00:00You can talk to us on Gitter or just submit an issue on github.