Metadata-Version: 2.1
Name: allennlp-server
Version: 0.0.1
Summary: Simple demo server for AllenNLP models
Home-page: https://github.com/allenai/allennlp-server
Author: Allen Institute for Artificial Intelligence
Author-email: allennlp@allenai.org
License: Apache 2.0
Keywords: allennlp simple demo server serve models NLP deep learning machine reading
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Flake8
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
Requires-Dist: allennlp (<3.0,>=2.0)
Requires-Dist: allennlp-models (<3.0,>=2.0)
Requires-Dist: flask (>=1.0.2)
Requires-Dist: flask-cors (>=3.0.7)
Requires-Dist: gevent (>=1.3.6)

# AllenNLP Simple Server

This repo contains a simple demo server for serving a model. To file an issue, please open a ticket on https://github.com/allenai/allennlp and tag it with "Server".

## Installation

You can install AllenNLP Server by cloning our git repository:

```bash
git clone https://github.com/allenai/allennlp-server
```

Create a Python 3.8 virtual environment, and install AllenNLP Server in `editable` mode by running:

```bash
pip install --editable .
```

## Running AllenNLP Server

AllenNLP Server is a plugin for AllenNLP which adds a "serve" subcommand:

```bash
allennlp serve --help
```


