kernel_gateway
kernel_gateway copied to clipboard
Jupyter Kernel Gateway
@parente I don't have a good understanding of the enormity of the task. I was wondering how plausible is it to merge the features provided by kernel gateway back into...
Hi Folks, It would be a good feature if you implement something like this for notebook-http Instead of deployment a REST API using a single .ipython notebook file, scan all...
We can expose the 4.3 token feature. Or it might be simpler to implement the same random token generation scheme and use the auth handlers already mixed into the various...
Client connects to HTTP endpoint which has been declared as a websocket endpoint in the notebook. Kernel gateway listens for WS connections at that endpoint. Messages received from client to...
Option to limit access to one or more Jupyter protocol channels: shell, iopub, control. Maybe to limit to specific comm channel names within shell too. Use case: Restricting kernel access...
#384 prompts a major release, since it introduces backwards incompatible support for Jupyter Server. I've created a new branch for the 2.x line, `2.5.x`, which we will maintain for legacy...
If I run a cell that fails to execute using a notebook I get the error code and a message. However, if I run the same cell via the kernel...
While troubleshooting #376, it was found that JKG is not compatible with `jupyter_client >= 8` due to changes it's made to `KernelClient`. We should also have it depend on classes...
### Problem Currently when executing a cell via `kernel_gateway.notebook_http` mode, the cell's code/logic stays the same even when changing the cell after starting the kernel_gateway. For example, if `kernel_gateway` starts...
### Problem I'd like `IPython.display.display` to work for all the supported mime types. Repro: ``` # GET / from IPython.display import display display({"a": 1}) ``` Expected output: > {"a": 1}...