如何使用指定的命名空间启动IPython Notebook

时间:2012-06-13 16:37:43

标签: ipython

我有一个用Python编写的基于GUI(TraitsUI / PyQt / Envisage)的应用程序。我想生成一个IPython Notebook,其中我公开了一个小API和一些对象。这些对象包括SQLAlchemy会话和一堆SQLAlchemy模型。

我看了很多,但我找不到任何这方面的例子。我可以开一本笔记本了:

from IPython.frontend.html.notebook import notebookapp
app = notebookapp.NotebookApp.instance()
app.initialize()
app.start()

并且运作良好(虽然我更喜欢如果' start'是非阻塞的...我认为如果需要我可以在另一个线程中执行此操作),但我无法做到改变命名空间。

我也找到了这样的例子:

from IPython.zmq.ipkernel import IPKernelApp

namespace = dict(z=1010)

kapp = IPKernelApp.instance()
kapp.initialize()

# Update the ns we want with special variables auto-created by the kernel
namespace.update(kapp.shell.user_ns)
# Now set the kernel's ns to be ours
kapp.shell.user_ns = namespace

kapp.start()

但我不确定如何从这里实际打开笔记本。

有人有任何建议吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

>>> import IPython
>>> z=1010
>>> IPython.embed()
Python 3.5.2 (default, Oct  8 2019, 13:06:37)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.9.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: z
Out[1]: 1010