I am finding an issue when parsing some strings using your package. The string has dates, but none are returned if certain words are present. Here is a simple example that fails to parse. (just like your use case example).
string_with_dates = """at: 30 May 2010"""
matches = datefinder.find_dates(string_with_dates)
for match in matches:
print(match)
I am finding an issue when parsing some strings using your package. The string has dates, but none are returned if certain words are present. Here is a simple example that fails to parse. (just like your use case example).
string_with_dates = """at: 30 May 2010"""
matches = datefinder.find_dates(string_with_dates) for match in matches: print(match)