https://github.com/cmd-ntrf/nbrefineproxy
Notebook proxy for OpenRefine
https://github.com/cmd-ntrf/nbrefineproxy
Last synced: about 1 year ago
JSON representation
Notebook proxy for OpenRefine
- Host: GitHub
- URL: https://github.com/cmd-ntrf/nbrefineproxy
- Owner: cmd-ntrf
- Created: 2017-05-03T18:08:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-03T18:52:19.000Z (about 9 years ago)
- Last Synced: 2025-01-28T20:44:51.402Z (over 1 year ago)
- Language: Python
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nbrefineproxy
**nbrefineproxy** provides Jupyter server and notebook extensions to proxy an OpenRefine refine.

If you have a JupyterHub deployment, nbrefineproxy can take advantage of JupyterHub's existing authenticator and spawner to launch OpenRefine in users' Jupyter environments. You can also run this from within Jupyter. Requires [nbserverproxy](https://github.com/jupyterhub/nbserverproxy).
## Installation
Install the library:
```
pip install git+https://github.com/cmd-ntrf/nbrefineproxy
```
Either install the extensions for the user:
```
jupyter serverextension enable --py nbrefineproxy
jupyter nbextension install --py nbrefineproxy
jupyter nbextension enable --py nbrefineproxy
```
Or install the extensions for all users on the system:
```
jupyter serverextension enable --py --sys-prefix nbrefineproxy
jupyter nbextension install --py --sys-prefix nbrefineproxy
jupyter nbextension enable --py --sys-prefix nbrefineproxy
```