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 am trying to parse a date in Farsi and the call fails ``` > dateparser.parse('۳ یولیو ۲۰۱۴', languages=['fa']) None ``` What am I doing wrong? I tried to find...

**dateparser version: 1.1.8** **Python version: 3.12.0** When searching for dates in a large chunk of Russian text (see example below) with the `'PREFER_DATES_FROM': 'past'` setting, dateparser throws the `OverflowError: date...

My name is McKenna Dallmeyer and I would like to submit dateparser to OSS-Fuzz. If you are not familiar with the project, OSS-Fuzz is Google's platform for continuous fuzzing of...

Hi, I want to search for dates in phrases but in Persian language which use Jalali calendar. Because Jalali calendar does not work for searching longer chunks of texts, I...

I'm trying to parse french text and noticed that words with dots preceding the date will break the parser ```python print(search_dates("TAS le 10/01", settings={'DATE_ORDER': 'DMY'})) #[('le 10/01', datetime.datetime(2024, 1, 10,...

I checked other issues, but this exact problem was not mentioned. **For context:** I am in time zone CST, so in UTC it is already 2023-11-07, which may be the...

Hi, it looks like full hours do not work, at least in German. For example, "18 Uhr" should be `2023-03-28 18:00` but it is `2023-03-18` ```python >>> dateparser.parse("18 Uhr", languages=['de'],...

These UTC offsets behave as expected: ```python import dateparser dateparser.parse('tomorrow', settings={'TIMEZONE': 'UTC+8'}) dateparser.parse('tomorrow', settings={'TIMEZONE': 'UTC+08'}) dateparser.parse('tomorrow', settings={'TIMEZONE': 'UTC+0800'}) dateparser.parse('tomorrow', settings={'TIMEZONE': 'UTC+8:00'}) dateparser.parse('tomorrow', settings={'TIMEZONE': 'UTC+08:00'}) dateparser.parse('tomorrow', settings={'TIMEZONE': '+0800'}) dateparser.parse('tomorrow', settings={'TIMEZONE': '+08:00'})...

Very strange issue. ``` dateparser.__version__ '1.1.8' settings= { 'RELATIVE_BASE': datetime.datetime(2023, 7, 31, 0, 0), 'PREFER_DAY_OF_MONTH': 'first', 'PREFER_DATES_FROM': 'future', 'REQUIRE_PARTS': ['year', 'month'], 'DATE_ORDER': 'YMD' } s = 'Closing Yield, 2010 Year...

Demo not working on `https://dateparser-demo.netlify.app/` : No output is displayed when entering any date