Skip to main content

A Jupyter Text Annotation Widget

Project description

jupyterannotate

Build Status

Interactive Text Annotation for Jupyter Notebook/Lab

Jupyter Annotate

Installation

You can install using pip:

pip install jupyterannotate

If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable the nbextension:

jupyter nbextension enable --py [--sys-prefix|--user|--system] jupyterannotate

Usage

See Example

Within an Jupyter Notebook cell:

# Define some labels
LABELS = ["Organization", "Product", "Person", "Country", "Date", "Quantity"]

# Define some documents
DOCUMENTS = [
    "Oracle introduced a...",
    "Microsoft will delay the ...",
]

# Instantiate widget
# Optionally specify a list of spans to prepopulate
annotation_widget = jupyterannotate.AnnotateWidget(
    docs=NEWS_HEADLINES,
    labels=LABELS,
    spans=[
      [
        {'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},
      ],
      []
    ]
)

# Render
annotation_widget

Apply Label

  • Choose label
  • Select text within displayed document
  • Click on existing span to remove
  • Navigate documents using top-right
# Access spans - a List containing a List of Spans per document
# e.g. [[{'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'}], []]
annotation_widget.spans


# See updates in real-time
annotation_widget.spans = [
    [
        {'start': 0, 'end': 6, 'text': 'Oracle', 'label': 'Organization'},
        {'start': 69, 'end': 72, 'text': '10g', 'label': 'Quantity'}
    ],
    []
]

Update Python

Development Installation

Create a dev environment:

conda create -n jupyterannotate-dev -c conda-forge nodejs yarn python jupyterlab
conda activate jupyterannotate-dev

Install the python. This will also build the TS package.

pip install -e ".[test, examples]"

When developing your extensions, you need to manually enable your extensions with the notebook / lab frontend. For lab, this is done by the command:

jupyter labextension develop --overwrite .
yarn run build

For classic notebook, you need to run:

jupyter nbextension install --sys-prefix --symlink --overwrite --py jupyterannotate
jupyter nbextension enable --sys-prefix --py jupyterannotate

Note that the --symlink flag doesn't work on Windows, so you will here have to run the install command every time that you rebuild your extension. For certain installations you might also need another flag instead of --sys-prefix, but we won't cover the meaning of those flags here.

How to see your changes

Typescript:

If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the widget.

# Watch the source directory in one terminal, automatically rebuilding when needed
yarn run watch
# Run JupyterLab in another terminal
jupyter lab

After a change wait for the build to finish and then refresh your browser and the changes should take effect.

Python:

If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyterannotate-0.1.3.tar.gz (532.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jupyterannotate-0.1.3-py2.py3-none-any.whl (220.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file jupyterannotate-0.1.3.tar.gz.

File metadata

  • Download URL: jupyterannotate-0.1.3.tar.gz
  • Upload date:
  • Size: 532.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for jupyterannotate-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2515f9d0553419167dd80e8037122b3b9abaf2eff3f1749aafda6b881a7b4171
MD5 32de602eb113c4614dc6733eb431986a
BLAKE2b-256 11c65ba60ccf8667f03968a0c8b43e15baf8cd5e5fc8c4f2a44f35827b84a6aa

See more details on using hashes here.

File details

Details for the file jupyterannotate-0.1.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterannotate-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a4c036cde65f722015195b9413bc6019c7b80e80e9061e192637b933b65fb517
MD5 0d6eba0444e782f1d39cc3f073a7ea08
BLAKE2b-256 f27be284c161ae38a83a058a60632769e68080188d20097ab5b89607908d4c28

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page