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

I see that in settings there is a `PREFER_DAY_OF_MONTH`, in case the day is missing. Is there also a `PREFER_MONTH_OF_YEAR`, in case the month is missing? Because currently it uses...

It would be nice to add support fot his, but I don't know how feasible it is. Original comment: https://github.com/scrapinghub/dateparser/issues/833#issuecomment-734296359

Type: Enhancement
search_dates

Closes #1010 this will support dates such as ```26 .10.21``` or ```26 . 10.21``` , in date ```26 . 10.21``` the first period was getting removed in sanitization even when...

When `dateparser` parses a unix timestamp, and the user has set a `TIMEZONE` that is not `local` (or the same as the user's system local timezone), it gets the wrong...

I tried following code with the versions `1.0.0` `1.1.0` and `1.1.1` on Windows with `python 3.7.4` and all three versions have the same output of `None`: `dateparser.parse('mar, 07 giu 2022...

Add support for other words ("decade", "fortnight", "century"...) #725

Thai year is 543 days ahead of Gregorian calendar. However dateparser.parse is not taking care of this fact. For example, '6 มิถุนายน 2554' should be converted to datetime.datetime(2011, 6, 6,...

While I don’t think https://github.com/scrapinghub/dateparser/issues/606 is necessarily a bug, I do think that it would be an improvement for Dateparser to parse '20110101' the same as '2011-01-01' by default.

Type: Enhancement

Fixes #753 Added support for fractional units by making the regex pattern support digits before a decimal point and converting `num` to a `float` instead of an `int` on line...

Hi, I cannot parse some type of short days ago. Some examples - `1d ago` - `1mon ago` - `2y ago` ```python from dateparser import parse parse('1mon ago') >> None...