Open ChanceNCounter opened 4 years ago
>>> parse.extract_datetime("september 30 2019 october 24th 2018") [datetime.datetime(2018, 10, 24, 0, 0, tzinfo=tzlocal()), '']
Desirable output would be:
[datetime.datetime(2018, 10, 24, 0, 0, tzinfo=tzlocal()), 'september 30 2019']
It might be worth adding an extract_datetimes() function while fixing this, or the patcher could regard that as out of scope. They're the same problem space, this bug prevents that potential feature.
Desirable output would be:
It might be worth adding an extract_datetimes() function while fixing this, or the patcher could regard that as out of scope. They're the same problem space, this bug prevents that potential feature.