datefinder
datefinder copied to clipboard
strict mode is broken
`import datefinder
test_string = "September 6, 1922"
matches = datefinder.find_dates(test_string, strict=True)
for match in matches: print(match)`
produces no matches. In fact, I can find no combination that yeilds results with that flag set to true.
I am also facing the same issue with the latest version. This was working fine in older version.