Я пытаюсь программно (с Python) взаимодействовать с моим запущенным ядром jupyter в качестве эксперимента прототипирования.
У меня есть jupyter ноутбук, работающий в моем браузере, и я получил информацию о подключении из ноутбука с помощью волшебной команды
%connect_info
{
"signature_scheme": "hmac-sha256",
"shell_port": 49545,
"kernel_name": "",
"iopub_port": 49546,
"stdin_port": 49547,
"hb_port": 49549,
"control_port": 49548,
"key": "1a359267-f30d84302c39d352d6ac17c3",
"transport": "tcp",
"ip": "127.0.0.1"
}
jupyter_client docs для класса KernelClient заставляет меня поверить, что я могу подключиться к этой информации и прослушать/отобразить код с этим объектом, а также отправьте код, который будет выполняться через ядро, к которому я подключен, но мне не повезло с тем, что я пытался, например:
>>> from jupyter_client import KernelClient
>>> connection = {
"signature_scheme": "hmac-sha256",
"shell_port": 49545,
"kernel_name": "",
"iopub_port": 49546,
"stdin_port": 49547,
"hb_port": 49549,
"control_port": 49548,
"key": "1a359267-f30d84302c39d352d6ac17c3",
"transport": "tcp",
"ip": "127.0.0.1"
}
>>> client = KernelClient(**connection)
>>> client.history()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/path/to/envs/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 347, in history
self.shell_channel.send(msg)
File "/path/to/envs/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 143, in shell_channel
socket, self.session, self.ioloop
>>> client.start_channels()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 101, in start_channels
self.shell_channel.start()
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 143, in shell_channel
socket, self.session, self.ioloop
TypeError: object() takes no parameters
>>> client.load_connection_info(connection)
>>> client.execute('print("Hello World")')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 254, in execute
self.shell_channel.send(msg)
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 143, in shell_channel
socket, self.session, self.ioloop
TypeError: object() takes no parameters
EDIT: добавление этого раздела для ясности, данное @Sam H. suggestion Я сделал это, но это не сработало
>>> from jupyter_client import KernelClient
>>> kc = KernelClient()
>>> kc.load_connection_info(connection)
>>> kc.start_channels()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 101, in start_channels
self.shell_channel.start()
File "/path/to/jupyter-nb/lib/python3.5/site-packages/jupyter_client/client.py", line 143, in shell_channel
socket, self.session, self.ioloop
TypeError: object() takes no parameters