Metadata-Version: 2.1
Name: spacy-thrift
Version: 0.5.0
Summary: spaCy-as-a-service using Thrift
Home-page: https://github.com/turbolent/spacy-thrift
Author: Bastian Mueller
Author-email: bastian@turbolent.com
License: UNKNOWN
Keywords: natural language processing,nlp
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing
Description-Content-Type: text/markdown
Requires-Dist: click (==6.7)
Requires-Dist: thrift (==0.11.0)
Requires-Dist: spacy (==2.0.12)
Requires-Dist: coloredlogs (==10.0)

# spacy-thrift

[spaCy](https://github.com/explosion/spaCy) as a service using [Thrift](https://thrift.apache.org)


## Usage

Download spaCy's parser model for English:

- `python3 -m spacy download en`

Run the service:

- `python3 -m spacyThrift.service`

Pass the `--ner` option to perform named-entity recognition.


## Development

- The Thrift code can be updated using:

  `make generate`

- If a new version of Thrift is used, also ensure the version is specified in `requirements.txt`


