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 wanted to catch up on what the status of the master vs 5.x branch is. 5.x has some changes that need to be merged down but they've deviated so...

`from jupyter_client import KernelManager import time try: from queue import Empty # Py 3 except ImportError: from Queue import Empty # Py 2 #km = KernelManager(kernel_name='ir') km = KernelManager(kernel_name='python3') km.start_kernel()...

I just wanted to execute a simple code and get execution results using ipykernel. My code is: ```python import jupyter_client km, kc = jupyter_client.manager.start_new_kernel() kc.execute('print("Hello")', silent=False) state = 'busy' while...

Hi, I use miniconda and I usually set up my environments like this: (base) install jupyter notebook nb_conda_kernels ipykernel (test) install ipykernel I always run this cell: ```python while True:...

Please add support for parametrized kernels so that one can pass custom arguments in to the kernels from the client (API handlers). @SylvainCorlay @jasongrout

According to the overarching messaging philosophy [as laid out in the docs](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introduction) (emphasis added), > IOPub: this socket is the ‘broadcast channel’ where the kernel publishes all side effects (stdout,...

``` echo 1 | jupyter run --kernel=faulty *** stack smashing detected ***: terminated ^C^C^C^C^C^C^C^C^C^C^C^C^C^C^C ``` the `***` line is from the kernel crashing, after which `jupyter run` just gets stuck...

I've got a custom kernel that has a lot of custom configuration. I can pass through the arguments one-by-one in the kernelspec argv such like: ```json { "argv": [ "python",...

In https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply, we see that the status in a reply message content can be 'ok', 'error', or 'abort'. However, for `is_complete_reply`, it [lists the status possibilities](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness) as one of 'complete',...

# Info / version python: `3.6.5` jupyter / ipython related: ``` ipykernel 4.9.0 ipython 5.8.0 jupyter 1.0.0 jupyter-client 5.2.3 jupyter-console 5.2.0 jupyter-core 4.4.0 ``` # Bug It seems like `execute_interactive`...