Metadata-Version: 2.3
Name: nl-matcher
Version: 0.0.5
Summary: A simple library to match locations in text using SpaCy
Project-URL: Homepage, https://github.com/smartcrash/nlmatcher
Project-URL: Issues, https://github.com/smartcrash/nlmatcher/issues
Author-email: Diego Da'Silva <smartcrashomg@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: spacy
Description-Content-Type: text/markdown

# NL Matcher

A simple library to match locations in text using SpaCy

## Installation

```bash
pip install nlmatcher
```

## Usage

```python
import nlmatcher

matcher = nlmatcher.LocationMatcher()

text = "I live in Amsterdam and work in Utrecht"
matches = matcher.match(text)

for match in matches:
    print(match.text)
```

## Output

```
Amsterdam
Utrecht
```
