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

``` from dateparser import parse parse('1mon ago') >> None ```

An ISO 8601 with dashes YYYY-MM-DD is quite common and I would think that there isn't much chance to confuse with other formats. However, the parsing depends on the locale...

> Using an old version of `tzlocal`, 2.1 made `dateparser` return Local Mean Time instead of the correct timezone as the result of this change. After they switched away from...

Using the common date abbreviations of `Date + st, nd, rd, th` alone returns months for 1st - 12th rather than days. Example of current behavior (desired) with 13th -...

Using a settings dictionary when parsing a date results in an error if the provided object is a subclass of the type specified in the `dateparser` settings schema, such as...

Type: Bug

The parser does not parse "Mart", the Turkish word for "March", correctly. For example, 20 Mart 2001 is parsed as 2001-11-20 00:00:00-09:30, but it should be 2001-03-20 00:00:00. As can...

Hi! Good work guys, your lib is amazing! I'm interested in parsing intervals/durations as a duration, not a date. What do you think about creating separate function with this? There's...

discussion

Makes sense wherever it does not affect external APIs. e.g. if a function uses OrderedDict internally, then yes; if a function returns OrderedDict, we probably should follow a deprecation approach,...

I think there is something wrong in dateparser prioritization of languages, as introducing 'en' even in the last position hurts extraction of dates that were extracted properly when English was...

good first issue

This function is similar to search_dates, but gets only the first date, and more suitable to shorts strings. It uses a brute-force approach, but has more predictable performance (at least...