akoumjian / datefinder

Find dates inside text using Python and get back datetime objects
http://datefinder.readthedocs.org/en/latest/
MIT License
635 stars 167 forks source link

Something wrong with no english strin months? #198

Open crossmax opened 10 months ago

crossmax commented 10 months ago

Hi. Even though MONTH_PATTERNS contains months in Spanish, the module is not able to locate string dates in Spanish.

>>> list(datefinder.find_dates("2 de septiembre de 2016")) [] >>> list(datefinder.find_dates("2 septiembre 2016")) [] Can you resolve this behavior? Thanks