-
```
---- 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…
-
It seems that the `search_dates` function has a bit of trouble with "day after tomorrow".
```python
from dateparser.search import search_dates
search_dates("day after tomorrow")
[('tomorrow',…
-
Sometimes the timezone info is duplicate:
* `'Mon, 25 Jun 2018 10:37:47 +0530 (GMT+05:30)'` (source: https://github.com/scrapinghub/dateparser/issues/425)
* `'2012-11-02 04:16:13.000123 PM EST (-0…
-
We noticed that ISO 8601 datetimes without hyphens or colons don't seem to be parsable, even though I don't think they're required? Cf. https://en.wikipedia.org/wiki/ISO_8601#Dates, https://en.wikiped…
-
I reinstalled anaconda and updated version from python 3.8 to python 3.9
Anaconda3-2021.11-Windows-x86_64.exe
I try testing the program that it has worked well formerly, but on new anaconda envi…
-
```
---- 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…
-
(Python 3.10.2/dateparser 1.1.8
```
>>> DAYS = ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"]
>>> for d in DAYS:
... print(dateparser.parse(d))
...
2023-06-19 00:00:00
None
None
None
2023-0…
-
```
In [22]: dateparser.parse('08 listopad 2017', languages=[], settings={'RELATIVE_BASE': datetime(2018, 6, 28)})
In [23]: dateparser.parse('08 listopad 2017', languages=[], settings={})
In [2…
-
```py
dateparser.parse("11月08日 12:52")
datetime.datetime(2011, 8, 16, 12, 52)
dateparser.parse("11-08 12:52")
datetime.datetime(2011, 8, 16, 12, 52)
```