-
Thanks for putting out this parser! However, I'm having trouble getting it to work for basic zoned datetimes in standard ISO 8601 format. Am I doing something wrong or is it a bug?
```
> parse(Zon…
-
VERSION 0.7.6
In [2]: import dateparser
In [3]: dateparser.parse('15.10')
Out[3]: datetime.datetime(2020, 10, 15, 0, 0)
Version 1.0.0
dateparser.parse('15.10')
Out\[9\]: datetime.datetime(20…
-
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 not th…
-
The library fails to parse following format: "the 20 day of September 2021"
```
import dateparser
dateparser.parse("the 20 day of September 2021")
```
-
settings.PREFER_DATES_FROM=past takes no effect once date_formats specified
```
In [1]: import dateparser
In [2]: dateparser.parse('1/15/64', settings={'PREFER_DATES_FROM': 'past'}, date_format…
-
```
---- What steps will reproduce the problem? -------
var dateParser = new
goog.i18n.DateTimeParse(goog.i18n.DateTimeFormat.Format.MEDIUM_DATE);
if (dateParser.strictParse("Feb 31, 2012") > 0)
a…
-
i am getting the bellow trace when using parse function on multi threading application, i am not sure if this is happened because parse is not safe on multi threading applications or something else ha…
-
```
---- What steps will reproduce the problem? -------
var dateParser = new
goog.i18n.DateTimeParse(goog.i18n.DateTimeFormat.Format.MEDIUM_DATE);
if (dateParser.strictParse("Feb 31, 2012") > 0)
a…
-
```
---- What steps will reproduce the problem? -------
var dateParser = new
goog.i18n.DateTimeParse(goog.i18n.DateTimeFormat.Format.MEDIUM_DATE);
if (dateParser.strictParse("Feb 31, 2012") > 0)
a…
-
How can we parse "start of the month/week"? Following doesn't work
>>> dateparser.parse('month start')
>>> dateparser.parse('month begin')