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

Given the below example ```python >>> from dateparser.search import search_dates >>> search_dates("Validity date: 2021-11-26") ``` It does return `None`, however it should return `[('2021-11-26', datetime.datetime(2021, 11, 26, 0, 0))]`

Type: Bug
Status: Bug confirmed
search_dates

Hello Guys, Should dateparser library be using black for code formatting ? https://black.readthedocs.io/en/stable/ There is also blue: https://blue.readthedocs.io/en/latest/

discussion

This PR Fixes, - Fixing E402 module-level import, not at top of file in `dateparser/docs/conf.py` - Fixing UnicodeDecodeError: 'charmap' codec can't decode byte 0x8f in position 1442: character maps to...

How can we parse "start of the month/week"? Following doesn't work >>> dateparser.parse('month start') >>> dateparser.parse('month begin')

Type: Enhancement
language

**_Improvement for the docs which cover about contribution to the repository , should be more elaborated because it does not do much help for the new contributors_** . @Gallaecio ,...

Type: Enhancement
Type: Documentation

Added support for decade in hindi language

Minimal code: ```python from dateparser import parse while True: ret = parse('24 august', settings={'RELATIVE_BASE': datetime.now()}) ``` Since for each new relative_base, a new settings object is created and cached, memory...

Type: Enhancement

When I pass the string "timestamp">timestamp 24-Aug-2021 11:00" to search_dates, I would naturally expect it to return [('24-Aug-2021 11:00', datetime.datetime(2021, 8, 24, 11, 0))], however, it actually returns [('11:00', datetime.datetime(2021,...

Type: Bug
search_dates

With this snippet: ```python # dateparser==0.7.0 ( also reproduces on master branch ) import dateparser import datetime import pytz settings = { "RELATIVE_BASE": datetime.datetime.now().replace(tzinfo=pytz.timezone("Europe/Paris")) } for input_ in ( "2009-06-01T10:00:00+09:00",...

Type: Bug

```python import dateparser dateparser.parse('2019-09-28WIB19:17:34+07:00') is None # True ``` Site with this date format: http://www.wowmenariknya.com/lists/5-warna-almamater-kampus-paling-ikonik-di-indonesia-beserta-maknanya/ ```html ```

Type: Bug
Type: Bug - Language