akoumjian / datefinder

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

Something wrong with no english strin months? #198

Open crossmax opened 7 months ago

crossmax commented 7 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