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

OS: Windows 10.0.17763.805 dateparser version: 0.7.2 When using the `search_dates()` function some numerical and punctuation mark combinations that don't resemble any date format I've ever seen get picked up as...

search_dates

I'm deploying a project on a service that requires all the dependencies to be written in pure Python, C dependent libraries such as pandas are not supported. I've noticed that...

Type: Enhancement

Currently working on adding [stubs](https://github.com/python/typeshed/pull/5778) for the dateparser library. I would like to know, is this something that could be interesting for you? Thanks o/

Type: Enhancement

cannot detect 29:13.42 as MM:SS.centiseconds as used in sports times python code: mark = str(row['Mark']).rstrip('h') mark1 = parser.parse(mark) # using dateutil mark2 = dateparser.parse(mark) # using dateparser print(row['Mark'], mark1, mark2)...

`search_dates` is having issues with sentence splitting in `_sentence_split` [link](https://github.com/scrapinghub/dateparser/blob/ad50964fc319a26ed69300937354f59332d415a3/dateparser/languages/locale.py#L234) This issue is common in many issues [masked here](https://github.com/scrapinghub/dateparser/pull/945#issuecomment-881762464) referred as related issue 1. Returns broken results limited by period...

```console + /usr/bin/python3 setup.py build_sphinx -b man --build-dir build/sphinx running build_sphinx Running Sphinx v4.0.2 making output directory... done WARNING: html_static_path entry '_static' does not exist loading intersphinx inventory from https://docs.python.org/3/objects.inv......

Type: Documentation
good first issue

First, thanks for the great project! Our project standardized on using dates in the ISO 8601 `YYYYMMDD` format. According to [wikipedia](https://en.wikipedia.org/wiki/ISO_8601): > the standard allows both the "YYYY-MM-DD" and YYYYMMDD...

Splitting out from my comment in #939: > Also, while I haven't yet tried using this at scale, I wonder if the dateparser.parse function might have some opportunity for performance...

Splitting out from my comment in #939 : > from what I could tell, the DateDataParser does not accept a date_formats parameter, even in the settings dictionary, instead it looks...

Hi! Love your project! Whilst checking some binkp servers for TIME strings that should be RFC822 compliant per binkp 1.0 spec, I came across this one which is fairly common,...