Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 618 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 618 Bytes

nbserverproxy

Jupyter notebook server extension to proxy web services. This enables users to reach arbitrary web services running within their spawned Jupyter server. GET and POST are supported.

Example

A user starts a web service via New > Terminal:

echo "hello world" > index.html
python -m http.server 8001

The service is proxied off of /proxy/ at https://address.of.notebook.server/user/theuser/proxy/8001.

Installation

Run

pip install git+https://github.com/ryanlovett/nbserverproxy
jupyter serverextension enable --py nbserverproxy

Based on https://github.com/senko/tornado-proxy.