scrapinghub / scrapinghub/dateparser
date has year inside brackets
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 2.9k
- Forks
- 520
- Avg merge
- 22h 56m
- Merged PRs (30d)
- 6
Description
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)),
('1919', datetime.datetime(1919, 8, 20, 0, 0))]
it didn't give the right date
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the issue by running search_dates on the supplied Afghanistan Independence Day string and compare the returned dates with the date expressed by the input. Trace the parser path that handles the parenthesized year; done means the input is interpreted as the intended date rather than separate August and 1919 results.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- backend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100