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

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...

See https://github.com/jupyterlab/jupyterlab/issues/12194. It looks like interrupting a cell execution which consists of awaiting a coroutine, e.g.: ```python import asyncio async def main(): await asyncio.sleep(5) await main() ``` doesn't take effect...

bug

Hello, I have a classic jupyter widget that uses some custom JS libraries and in v7 the widgets fail to load, but in v6.x they show. Is there any documentation...

I am trying to connect to a ipython kernel running on a remote machine (running CentOS 8) in the remote machine I run: ipython kernel it produces a kernel-*.json file...

We are trying to drop Tornado from ipykernel in https://github.com/ipython/ipykernel/pull/876. Because we now use asyncio's event loop, a socket's `recv_multipart` must be awaited. This change consists of adding `Session.async_recv`, which...

enhancement

@Zsailer suggested this is the best forum to discuss this idea. **Proposal**: Allow for custom control channel messages By adding this feature, extension authors can innovate around the things a...

Currently, a front-end like the Jupyter Lab Notebook clears a cell's output prior to running the cell's code. I'm experimenting with [caching cell execution](https://github.com/davidbrochart/akernel/pull/35), and it would be interesting to...

I was looking for a way to catch up previously started executions after notebook was closed and then re-opened. As far as I understand currently it is not possible to...

I'm typing up this issue while waiting for cell `4` to complete execution. I'd say I still have a few more hours to wait on this. Before I can call...