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

The word "studenog" is a more colloquial and natural sounding version of "studenoga". Both are considered correct in the language.

Currently, a relative time with granularity less than a day will still result in a period of `day`, even when `RETURN_TIME_AS_PERIOD` is set: ```python In [1]: parser = dateparser.date.DateDataParser(settings={'RETURN_TIME_AS_PERIOD': True})...

Hi, I couldn't find any existing issue for this, hopefully there aren't already. I think it would be interesting to be able to parse rounded time like 20h (8pm). Only...

``` from dateparser.search import search_dates search_dates('\nPLEASE PROVIDE A DETAILED RECORD OF WEB ACTIVITY FOR CID ON .\n') ``` gives this output : `[('ON', datetime.datetime(2022, 2, 9, 0, 0))]` (executed on...

We ported the dateparser to Go (up to date with commit ff439d1 from Nov 19, 2021. https://github.com/markusmobius/go-dateparser It's pretty much a line-by-line port with some Go specifics added.

Some Arabic locales use names such as "كانون الثاني", "تشرین الأول", etc. This appears to be supported well in the library, but in some cases, the same is also written...

Hi all, I've noticed that when I use "am" in search_dates it doesn't work, but when supplied with :minutes it works fine (below is the output of installation and usage...

It seems to be impossible to get the following behaviour: `parse("01-02-03") == "datetime.datetime(2003, 2, 1, 0, 0)"` `parse("2003-02-01") == "datetime.datetime(2003, 2, 1, 0, 0)"` The problem is that when ever...

Type: Bug

Here is my sample test codes: ```python import dateparser if __name__ == '__main__': s = '2019年5月30日' date = dateparser.parse(s) assert date is not None and date.year == 2019 and date.month...