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

ipython 7.4.0 ipykernel 5.1.0 pyzmq (18.0.0) or (18.0.1) Previous versions of ipython didn't have this issue but it related to the newer pyzmq lib. Fixes: downgrading pyzmq to 17.1.3 seems...

The following code works as expected when running from `ipython` terminal (i.e.; start using the `ipython` command) ```python from jupyter_client import AsyncKernelClient import json kernel_config = json.load(open("config/kernel-s3-next.json")) kc = AsyncKernelClient()...

In #751 we explored better internal state management for the `KernelManager` class. We decided there to adopt the [`transitions`](https://github.com/pytransitions/transitions) library. It is MIT licensed, already on conda-forge, and lets you...

enhancement

Is it possible to run a kernel in one process and have access to it in the second process? Example code: first process (file `start.py`): ```py import time from jupyter_client...

Not sure if this is an issue with `jupyter_client` or `panflute`. Taking this minimal example (call it test-jupyter.py): ```python #!/usr/bin/env python3.7 import panflute import jupyter_client import sys def action(elem, doc):...

Kernel messages are currently [signed](https://github.com/jupyter/jupyter_client/blob/7d05cfb640a05bd80abc11db815df04b8c3ce25c/jupyter_client/session.py#L744-L745), preventing e.g. from running code that doesn't originate from a trusted source, but the code of an execution request is still sent unencrypted over the...

### Problem Currently, messages on the `shell` channel are handled in the main thread. This guarantees that e.g. execution requests are run one after the other, in the order they...

Discussing #797 with @SylvainCorlay, we thought that it might not tackle the issue at the right level. Instead of enabling background execution on a per-message basis, maybe we should execute...

**Describe the bug** confront with this bug,lib\site-packages\traitlets\traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode. it happend in...

Otherwise type checkers complain about a kernel client not having the required methods.

enhancement