Skip to main content

Jupyter D1 Server for Callisto

Project description

jupyter_d1

Jupiter Discovery One server

Info

Install

pip install git+https://github.com/OakCityLabs/jupyter_d1.git@branch_name#egg=jupyter_d1

Once installed, install kernel definitions with jupyter_d1_install_kernels

Start Server

start_jupyter_d1 --port=8000 --secret_token=user_provided_secret --root_dir=/path/to/working/directory

Run tests

(Requires pytest, async-asgi-testclient) jupyter_d1_test

How Stuff Works

The Jupyter D1 server sits between a REST client and a Jupyter Kernel. Kernels don't understand notebooks. They just execute commands they receive. Jupyter D1 manages the state of the notebook, keeping track of which cell is being executed and updating the cells results with the kernel finishes processing.

In the traditional JavaScript Jupyter client, all of this state is held in the web app. This makes it impossible to share that state with another client.
In Jupyter D1, this state is held in the D1 server and a client can connect at any time and ask for the current state.
A client may also ask that new code is executed. The D1 server relays that to the active kernel. Kernel results are used to update the current model of the notebook in the D1 server and broadcast to clients to update UIs.

Clients should connect to the notebook websocket stream where they will receive a broadcast of all the updates to the notebook cells. Clients can send regular REST requests to initiate action, like executing a cell or changing a cell's source code. A websocket is also avaible for the raw stream of kernel messages, but that's not intended for client consumption in the long term. Kernel messages are more of a debugging tool.

See Makefile for convenience commands

make save_env    save current development environment using conda to environment.yml
make load_env    create a development environment using conda from environment.yml (deletes current env definition)
make show_env    list available conda environments
make lint        run the linter
make test        run pytest
make ci_test     run the linter and then run pytest    
make run_debug   run the 'uvicorn' server in debug mode
make docs        open the docs in your browser (mac only, requires server running locally)
make redoc       open the alternate docs in your browser (mac only, requires server running locally)

Documentation

  • Run the server with make run_debug
  • Open the Swagger UI docs URL with make docs link
  • Open the ReDoc docs URL with make docs link

Stream listeners

Run ./ws_listener.py to echo out messages from the websocket broadcast channels. Two options are:

  • ./ws_listener.py --feed stream -- Listen to the stream of kernel messages direct from the Jupyter kernel
  • ./ws_listener.py --feed notebook -- List to the jupyter_d1 stream of updates to notebook cells

Paw

See the included Paw file jupyter_d1.paw for some examples. A simple test sequence that might represent what a client would do:

  • Open the simple notebook
  • Execute a cell by ID -- set x
  • Execute a cell by ID -- increment x

This loads a notebook, executes a cell which assigns a value to x and then executes another cell that increments the value of x. It's useful to have the stream listeners active to see the results.

Testing

  • make test will pytest and report coverage
  • Just running pytest from the top level directory will run all the tests
  • Can specify a specific test with pytest tests/test_notebooks_websocket.py::TestNotebookWebSocket::test_notebook
  • VS Code should understand the tests and run them from the editor, but sometimes that seems flakey.
  • If VS Code has trouble finding tests, run pytest --collect-only at the cli to check for errors.

WebDAV server

  • The FastAPI app instantiates a WebDAV server mounted under /dav.
  • Currently, this exposes /tmp on the local machine.
  • Can be mounted via a WebDAV client.
  • Eventually, this will provide clients file level access to the Jupyter working directory.
  • Current username is user with password password.
  • There is a read-only user called readonly_user but permission levels aren't implemented, so this user has full access.

Static typing

  • Jupyter_D1 uses static typing for compatibility with FastAPI
  • The python runtime ignores type information at the moment.
  • In VS Code, you should enable the mypy linter to check typing.
  • Mypy Cheatsheet

Authenication with shared secret

  • Use the shared secret from the server command line to get an access token
    • curl -H "Authorization: <SHARED_SECRET>" http://127.0.0.1:<port_number>/login/access-token
    • returns {"token":{"access_token":"ACCESS_TOKEN","token_type":"bearer"}}
  • Use the returned access token for subsequent requests
    • curl -H "Authorization: Bearer <ACCESS_TOKEN>" http://127.0.0.1:<port_number>/notebooks

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

callisto-jupyter-d1-0.0.3.tar.gz (65.4 kB view details)

Uploaded Source

Built Distribution

callisto_jupyter_d1-0.0.3-py3-none-any.whl (86.4 kB view details)

Uploaded Python 3

File details

Details for the file callisto-jupyter-d1-0.0.3.tar.gz.

File metadata

  • Download URL: callisto-jupyter-d1-0.0.3.tar.gz
  • Upload date:
  • Size: 65.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.8.2 requests/2.23.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.8.2

File hashes

Hashes for callisto-jupyter-d1-0.0.3.tar.gz
Algorithm Hash digest
SHA256 54a3622277aabb05840cd42402eea9fbcde3d8465bb5904735272b3a3775b975
MD5 c837efa8fe13d0a2c9c114f1d6e26158
BLAKE2b-256 8a5abd7ebeeed7c1210b98de655c3c95ac8224b41c9c2e7ebcfb63e995f559e3

See more details on using hashes here.

File details

Details for the file callisto_jupyter_d1-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: callisto_jupyter_d1-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 86.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.8.2 requests/2.23.0 setuptools/46.1.3.post20200325 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.8.2

File hashes

Hashes for callisto_jupyter_d1-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 45c1f46ac941eea4db8cda644f5af06d0ccafc421789419f5985ea0477738d19
MD5 988bd967700b0bb93752956e6d6c97b0
BLAKE2b-256 fba04923655b33b7b34b2334976861d4f20dc4dccdaa46e388006fbd1370a8bf

See more details on using hashes here.

Supported by

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