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.18.tar.gz (119.8 kB view details)

Uploaded Source

Built Distribution

callisto_jupyter_d1-0.0.18-py3-none-any.whl (148.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: callisto-jupyter-d1-0.0.18.tar.gz
  • Upload date:
  • Size: 119.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.12

File hashes

Hashes for callisto-jupyter-d1-0.0.18.tar.gz
Algorithm Hash digest
SHA256 2165e9eeb6f1ce8d5e082c10a1dfbca11da0d8afb10192c00d6842b5068258d3
MD5 baec80cb3646b0621ddd1ac06592a74b
BLAKE2b-256 74ce1210173ce41a38c1214729345cf023df6fc57157378b246efefaf3063ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for callisto_jupyter_d1-0.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 cc1e18ed540eba85bb1a9bea655e8b8123e41494d0b5ce4d209e88531b97dd37
MD5 d479878f0b64bf2045e786f2b0bd4187
BLAKE2b-256 d2a358fb209f48ce0c08cee4f4547bc62e2f2d1c61dffc53565a3008f547ebb6

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