Metadata-Version: 2.4
Name: nlp_date_parser
Version: 0.0.1
Summary: A simple NLP-based date parser to extract dates from text.
Home-page: https://github.com/viv1ag/nlp_date_parser
Author: Vivek Agarwal
Author-email: ec.vivek@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: parse
Requires-Dist: dateparser
Requires-Dist: spacy
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NLP Date Parser

A Python package to parse natural language date expressions like:

âœ… `next Tuesday`  
âœ… `in 3 days`  
âœ… `tomorrow at noon`  

## Installation & Usage

```sh
pip install nlp_date_parser
 
**Usage**

from nlp_date_parser import NLPDateParser

parser = NLPDateParser()
print(parser.parse("next Friday"))
