jupyter_client icon indicating copy to clipboard operation
jupyter_client copied to clipboard

Jupyter protocol client APIs

Results 154 jupyter_client issues
Sort by recently updated
recently updated
newest added

When running session and kernel tests for nbclassic, the execution of the following code in a cell, results in only two of the four expected events ``` import os from...

The Debian package was broken ; I had to add the following patch: ``` --- jupyter-client.orig/pyproject.toml +++ jupyter-client/pyproject.toml @@ -53,6 +53,10 @@ # We could eventually find a way to...

maintenance

This has been a controversial topic from some time: https://github.com/jupyter/notebook/issues/1000 https://forums.databricks.com/questions/21390/is-there-any-way-to-get-the-current-notebook-name.html https://stackoverflow.com/questions/12544056/how-do-i-get-the-current-ipython-jupyter-notebook-name https://ask.sagemath.org/question/36873/access-notebook-filename-from-jupyter-with-sagemath-kernel/ This is also sometime critical to linter, and tab completion to know current name. Of course current...

enhancement

Implements #763 This is an early draft of the work. I wanted to open-source this early to encourage feedback/discussion. Adds a state machine to the default `KernelManager` implementation . This...

enhancement

Hello, After upgrading to 7.3.0, running a notebook in jupyterlab aborts with IndexError: pop from an empty deque Downgrading to 7.2.2 fixes the problem. Has anyone seen this ?

On building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues. Here is the output with warnings: ```console +...

I think this deprecation is a bad idea: >Out of range float values are not JSON compliant >Supporting this message is deprecated in jupyter-client 7, please make sure your message...

The kernel protocol documentation is not very clear about the ["shutdown and restart" feature](https://github.com/jupyter/jupyter_client/blob/30823666344c9d03daa7330a81caedd04a6a53a6/docs/messaging.rst#kernel-shutdown). A `shutdown_request` has `content`: ``` content = { 'restart' : bool # False if final shutdown,...

Continued discussion from #751. We also can't rely `asyncio_run` in the future, since it relies on the deprecated global `get_event_loop` and `set_event_loop`. Options for moving forward: - Use a single...

maintenance

I am trying to write a script interact with binder remotely. My approach is based on code written by @yuvipanda for hubtraf: https://github.com/yuvipanda/hubtraf/blob/master/hubtraf/user.py Specifically, I am doing this, all using...