We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>>> from dateparser.search import search_dates >>> search_dates("May 31, 8AM UTC") [ ('May 31', datetime.datetime(2020, 5, 31, 0, 0)), ('8AM UTC', datetime.datetime(2020, 8, 31, 0, 0, tzinfo=<StaticTzInfo 'UTC'>)) ] >>>
The text was updated successfully, but these errors were encountered:
I believe I found the issue here, changing 8AM to 8:00AM does the trick.
8AM
8:00AM
the :00 should really be optional if am / pm is detected after the number
:00
Sorry, something went wrong.
search_dates
No branches or pull requests
The text was updated successfully, but these errors were encountered: