Metadata-Version: 2.1
Name: fuzzy-parser
Version: 0.2.27
Summary: A parser for fuzzy dates
Home-page: https://github.com/crgz/fuzzy_dates
Author: Real Python
Author-email: conrado.rgz@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pyswip
Requires-Dist: pytest

fuzzy_parser
============

A minimal parser for Fuzzy Dates

Usage
-----
From the Command Line type:

```bash
python3 -m fuzzy_parser '21 Juin - 9 Juil.'
[datetime.date(2022, 6, 21), datetime.date(2022, 7, 9)]
['dm(explicit(French))', 'dm(abbreviated(French))']
```

Installation
------------
Install with:

```bash
  pip3 install fuzzy_parser
```

Uninstall with:

```bash
  pip3 uninstall -y fuzzy_parser
```

Requirements
^^^^^^^^^^^^

Setup Requirements with:
```bash
./operations/setup-requirements.sh
```

Test
-------------
Test with:

```bash
pytest
```

Compatibility
-------------

Tested with SWI-Prolog version 8.2.4 on Ubuntu 20.04

Licence
-------

MIT

Authors
-------

`fuzzy_parser` is maintained by `Conrado M. Rodriguez conrado.rgz@gmail.com`


