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
Version:
How to reproduce:
# correctly parsed date search_dates("HelloDate 26.09.2019", languages=["de", "fr"], settings={'DATE_ORDER': 'DMY'}) > [('26.09.2019', datetime.datetime(2019, 9, 26, 0, 0))] # the "-" in "Hello-Date" leads to a wrong date search_dates("Hello-Date 26.09.2019", languages=["de", "fr"], settings={'DATE_ORDER': 'DMY'}) > [('2019', datetime.datetime(2019, 8, 12, 0, 0))] # omitting french language leads to correctly parsed date again search_dates("Hello-Date 26.09.2019", languages=["de"], settings={'DATE_ORDER': 'DMY'}) Out[9]: [('26.09.2019', datetime.datetime(2019, 9, 26, 0, 0))]
The text was updated successfully, but these errors were encountered:
search_dates
search_date
No branches or pull requests
Version:
How to reproduce:
The text was updated successfully, but these errors were encountered: