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

update print in example to Python 3 #189

Open reagle opened 1 year ago

reagle commented 1 year ago
import datefinder
matches = datefinder.find_dates(string_with_dates)
for match in matches:
    print(match)