dateparser icon indicating copy to clipboard operation
dateparser copied to clipboard

python parser for human readable dates

Results 179 dateparser issues
Sort by recently updated
recently updated
newest added

This PR adds support for Arabic month names and Arabic digit parsing to the Hijri Calendar parser, improving its functionality and usability.

The README references this online demo: > Do you want to try it out without installing any dependency? Now you can test it quickly by visiting [this online demo](https://dateparser-demo.netlify.app/)! I...

Is there a way to know when a date is incomplete. e.g "December 2015" ```python from dateparser import parse parse(u'December 2015') # default behavior datetime.datetime(2015, 12, 16, 0, 0) #is...

Type: Enhancement

Let's say we have 3 date strings, 2 of them with ambiguous format and the last with unambiguous format: 2015/1/1 2015/2/3 2015/31/12 If we can pass these 3 date strings...

dateparser.parse('01/26/2023 02:55PM CT') = None Time zone: Central Time (CT)

Full Usage warning: `PytzUsageWarning: The localize method is no longer necessary, as this time zone supports the fold attribute (PEP 495). For more details on migrating to a PEP 495-compliant...

good first issue
cleanup

Seems like parsing is being broken if the datestring contains year/month/day keywords in Korean(`년`/`월`/`일`). ```python print(dateparser.__version__) >>> 1.1.7 print(dateparser.parse('2023년 2월 10일 오전 3시 30분', locales=['ko'])) >>> None print(dateparser.parse('2000년 1월 1일...

search_dates is not giving any datetime output for 'next week' and 'next day'. It is able to identify for 'next month', 'next year', 'next sunday', 'after one week'.

I have used search_dates in dateparser.search. The output of search_dates is 00:00:00 when time information is not present. For example in `I will connect with you on Monday`, the output...

Looks like because of new tox version changes the flake8 env now runs a Python test instead of flake8, so we need a fix similar to e.g. https://github.com/scrapinghub/scrapy-poet/pull/101