Metadata-Version: 2.1
Name: sqlite-ner
Version: 0.1.0
Summary: Create a new table with entities extracted from source columns
Author: redraw
Author-email: redraw@sdf.org
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: spacy (>=3.5.4,<4.0.0)
Requires-Dist: sqlite-utils (>=3.33,<4.0)
Description-Content-Type: text/markdown

# sqlite-ner

Create a new table with entities extracted from source columns using [spacy](https://spacy.io) NER features.

```bash
usage: sqlite-ner [-h] [--model MODEL]
                  db_path table_name source_columns [source_columns ...]

positional arguments:
  db_path
  table_name
  source_columns

optional arguments:
  -h, --help      show this help message and exit
  --model MODEL   spaCy model to use (default: es_core_news_sm)
```

