datefinder
datefinder copied to clipboard
Python 3.6.5: Error no attribute 'find_dates'
trafficstars
AttributeError: module 'datefinder' has no attribute 'find_dates' OS: Ubuntu 18 Python: 3.6.5
I'm getting the same error using python3 but works fine on python 2
Have you tried using:
import datefinder
df = datefinder.DateFinder()
matches = df.find_dates(a_string)
for match in matches:
print(match)
?