Metadata-Version: 2.1
Name: spacysee
Version: 0.0.4
Summary: Visualizer for spaCy NER models
Author: Matthew Oxley
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

# SpacySee

A project that helps you visualize your Spacy docs in Jupyter notebooks

## Installation

```bash
pip install spacysee
```

## Usage

```python
from spacysee import render

nlp = spacy.load("en_core_web_sm")
doc = nlp("This is a neat way to visualize your Spacy docs")

render(doc, width="500", height="500")
```

## Example

![Example](https://raw.githubusercontent.com/moxley01/spacysee/master/screenshot.png)

## Notes

Each of the dependency tags, POS tags and morphological features are clickable. Clicking on a tag will bring up the relevant documentation for that tag.
