Metadata-Version: 2.1
Name: date-parser-sari
Version: 0.8.7
Summary: A parser for recognising free-text dates
Home-page: https://github.com/swiss-art-research-net/bso-date-parser.git
Author: Florian Kräutli
Author-email: florian.kraeutli@uzh.ch
License: UNKNOWN
Platform: UNKNOWN
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

# sari/bso-date-parser

A parser to convert textual dates into EDTF

## Installation

Install using pip

```sh
$ pip install date-parser-sari
```

## Usage

```python
>>> from sariDateParser.dateParser import parse
>>> parse("4 December 1920")
'4.12.1920'
>>> parse("um 1920")
'1920?'
>>> parse("zwischen 1870 und 1890")
'1870/1890'
>>> parse("nicht vor 1450?")
'1450/'
```

