如果你想在另一个 Python 程序的内核中运行代码,最简单的方法是连接一个BlockingKernelManager。现在最好的例子是 Paul Ivanov 的vim-ipython客户端,或者 IPython 自己的终端客户端。
要点:
- ipython 内核编写 JSON 连接文件,
IPYTHONDIR/profile_<name>/security/kernel-<id>.json
其中包含各种客户端连接和执行代码所需的信息。
- KernelManager 是用于与内核通信(执行代码、接收结果等)的对象。*
一个工作示例:
在 shell 中,执行ipython kernel
(或者ipython qtconsole
,如果您想与已运行的 GUI 共享内核):
$> ipython kernel
[IPKernelApp] To connect another client to this kernel, use:
[IPKernelApp] --existing kernel-6759.json
这写了'kernel-6759.json'文件
然后你可以运行这个 Python 片段来连接一个 KernelManager,并运行一些代码:
from IPython.lib.kernel import find_connection_file
from IPython.zmq.blockingkernelmanager import BlockingKernelManager
# this is a helper method for turning a fraction of a connection-file name
# into a full path. If you already know the full path, you can just use that
cf = find_connection_file('6759')
km = BlockingKernelManager(connection_file=cf)
# load connection info and init communication
km.load_connection_file()
km.start_channels()
def run_cell(km, code):
# now we can run code. This is done on the shell channel
shell = km.shell_channel
print
print "running:"
print code
# execution is immediate and async, returning a UUID
msg_id = shell.execute(code)
# get_msg can block for a reply
reply = shell.get_msg()
status = reply['content']['status']
if status == 'ok':
print 'succeeded!'
elif status == 'error':
print 'failed!'
for line in reply['content']['traceback']:
print line
run_cell(km, 'a=5')
run_cell(km, 'b=0')
run_cell(km, 'c=a/b')
运行的输出:
running:
a=5
succeeded!
running:
b=0
succeeded!
running:
c=a/b
failed!
---------------------------------------------------------------------------
ZeroDivisionError Traceback (most recent call last)
/Users/minrk/<ipython-input-11-fb3f79bd285b> in <module>()
----> 1 c=a/b
ZeroDivisionError: integer division or modulo by zero
有关如何解释回复的更多信息,请参阅消息规范。如果相关,stdout/err 和显示数据将过来km.iopub_channel
,您可以使用返回的 msg_id 将shell.execute()
输出与给定的执行相关联。
PS:对于这些新功能的文档质量,我深表歉意。我们有很多写作要做。