Metadata-Version: 2.1
Name: ipylabel
Version: 0.1.7
Summary: A Jupyter Widget Library for labeling text.
Home-page: https://github.com/unrndm/ipylabel
Author: Danil Kireev
Author-email: unrndm@gmail.com
License: BSD
Keywords: Jupyter,Widgets,IPython
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Jupyter
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: examples
Provides-Extra: docs
License-File: LICENSE.txt

# ipylabel

A Jupyter Widget Library for labeling text.

<table>
  <tr>
    <td>Status</td>
    <td>
      <a href="https://github.com/unrndm/ipylabel/actions">
        <img src="https://github.com/unrndm/ipylabel/actions/workflows/main.yml/badge.svg" alt="Build Status">
      </a>
      <a href="https://ipylabel.readthedocs.io/en/latest/?badge=latest">
        <img src="https://readthedocs.org/projects/ipylabel/badge/?version=latest&style=flat-square" alt="Documentation Status" />
      </a>
      <a href="https://codecov.io/gh/unrndm/ipylabel" > 
        <img src="https://codecov.io/gh/unrndm/ipylabel/branch/dev/graph/badge.svg?token=ffJWtuvn4Q"/> 
      </a>
    </td>
  </tr>
  <tr>
    <td>Try for yourself</td>
    <td>
      <a href="https://mybinder.org/v2/gh/unrndm/ipylabel/HEAD?labpath=examples%2Fintroduction.ipynb"><img src="https://mybinder.org/badge_logo.svg" alt="Binder"></a>
      <a href="https://colab.research.google.com/github/unrndm/ipylabel/blob/dev/examples/introduction.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"></a>
    </td>
  </tr>
  <tr>
    <td>Package repositories</td>
    <td>
      <a href="https://www.npmjs.com/package/ipylabel"><img alt="npm" src="https://img.shields.io/npm/v/ipylabel?logo=npm&style=flat-square"></a>
      <a href="https://pypi.org/project/ipylabel/"><img alt="PyPI" src="https://img.shields.io/pypi/v/ipylabel?logo=pypi&style=flat-square"></a>
    </td>
  </tr>
</table>

## Installation

You can install using `pip`:

```bash
pip install ipylabel
```

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

```bash
jupyter nbextension enable --py [--sys-prefix|--user|--system] ipylabel
```

## Development Installation

Create a dev environment:

```bash
conda create -n ipylabel -c conda-forge nodejs yarn python=3.6 jupyterlab jupyter-packaging
conda activate ipylabel
```

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

```bash
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 .
npm run build
```

For classic notebook, you need to run:

```
jupyter nbextension install --sys-prefix --symlink --overwrite --py ipylabel
jupyter nbextension enable --sys-prefix --py ipylabel
```

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.

```bash
# Watch the source directory in one terminal, automatically rebuilding when needed
npm 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.

## TODO:

- [x] add packages to regestries (pypi and npm)
- [x] ensure google colab compatability
- [x] jupyter binder support!
- [ ] add black
  - add vscode task
  - possible extension
  - add config
  - add badge
- [ ] add isort
  - add vscode task
  - add vscode extension
  - add config with support for black
  - add badge
- [ ] add prettier
  - add badge
- [ ] add stylelint
  - add badge
- [ ] add linting task to vscode
- [ ] add code coverage with budge
- [ ] [prebuild images for binder](https://github.com/jupyterhub/repo2docker-action#use-github-actions-to-cache-the-build-for-binderhub)
- [ ] [auto badges on pull request?](https://mybinder.readthedocs.io/en/latest/howto/gh-actions-badges.html)
