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

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', datetime.datetime(2021, 6, 5, 11, 14, 16,...

Type: Enhancement
search_dates

Severe issue where parseDate("hh:mm") in some circumstances jumps one day ahead of where it should. I'm in New Zealand (UTC+12). At 2021-06-04 19:30 +00:00:00 (UTC), the local datetime in New...

Any idea to recognize this format: from %hh:mm to %hh:mm from %dd to %dd %yyyy

Type: Enhancement

Hi, I am testing `dateparser` and it seems that it may not work in some cases if the string containing the date contains additional words. In the following example, I...

Thanks for your great package, but I have an issue, please look: input = 'afghanistan Independence Day, 19 August (1919)' search_dates(input) the output is [('August', datetime.datetime(2021, 8, 20, 0, 0)),...

search_dates

I think we should rethink how the timezones are applied, as we have more than one case of abbreviations with different meanings. I could found at least these cases: *...

Type: Enhancement

## Why? A lot of use cases for date parsing may include the need to understand date ranges. Natural language search by date may need to parse input as a...

search_dates('Do you have a car') Returns: [('Do', datetime.datetime(2021, 7, 4, 0, 0)), ('a', datetime.datetime(2021, 7, 4, 0, 0))] search_dates('bar') Returns: [('bar', datetime.datetime(2021, 7, 5, 0, 0))] search_dates('are') Returns: [('are', datetime.datetime(2021,...

search_dates

CLDR data doesn't seem to be updated and languages like `as` are not translated properly. Additionally, CLDR data URL is archived: `https://github.com/unicode-cldr/cldr-dates-full` (archived) Thanks

OS: Ubuntu 20.04.2 LTS Python: Python 3.8 Dateparser version: 1.0.0 input: `Сервис будет недоступен с 12 января по 30 апреля` search.search_dates result: `[('января', datetime.datetime(2021, 1, 3, 0, 0)), ('30 апреля',...

search_dates