Jupyter Notebook中的变量浏览器


Answers:


93

更新

向下滚动到标记为update的部分,以减少复杂的方法。

老答案

这是有关如何制作自己的Variable Inspector的笔记本。我认为它是在jupyter笔记本称为ipython笔记本时写回的,但它可以在最新版本上使用。

我将在下面发布代码,以防链接中断。

import ipywidgets as widgets # Loads the Widget framework.
from IPython.core.magics.namespace import NamespaceMagics # Used to query namespace.

# For this example, hide these names, just to avoid polluting the namespace further
get_ipython().user_ns_hidden['widgets'] = widgets
get_ipython().user_ns_hidden['NamespaceMagics'] = NamespaceMagics

class VariableInspectorWindow(object):
    instance = None

def __init__(self, ipython):
    """Public constructor."""
    if VariableInspectorWindow.instance is not None:
        raise Exception("""Only one instance of the Variable Inspector can exist at a 
            time.  Call close() on the active instance before creating a new instance.
            If you have lost the handle to the active instance, you can re-obtain it
            via `VariableInspectorWindow.instance`.""")

    VariableInspectorWindow.instance = self
    self.closed = False
    self.namespace = NamespaceMagics()
    self.namespace.shell = ipython.kernel.shell

    self._box = widgets.Box()
    self._box._dom_classes = ['inspector']
    self._box.background_color = '#fff'
    self._box.border_color = '#ccc'
    self._box.border_width = 1
    self._box.border_radius = 5

    self._modal_body = widgets.VBox()
    self._modal_body.overflow_y = 'scroll'

    self._modal_body_label = widgets.HTML(value = 'Not hooked')
    self._modal_body.children = [self._modal_body_label]

    self._box.children = [
        self._modal_body, 
    ]

    self._ipython = ipython
    self._ipython.events.register('post_run_cell', self._fill)

def close(self):
    """Close and remove hooks."""
    if not self.closed:
        self._ipython.events.unregister('post_run_cell', self._fill)
        self._box.close()
        self.closed = True
        VariableInspectorWindow.instance = None

def _fill(self):
    """Fill self with variable information."""
    values = self.namespace.who_ls()
    self._modal_body_label.value = '<table class="table table-bordered table-striped"><tr><th>Name</th><th>Type</th><th>Value</th></tr><tr><td>' + \
        '</td></tr><tr><td>'.join(['{0}</td><td>{1}</td><td>{2}'.format(v, type(eval(v)).__name__, str(eval(v))) for v in values]) + \
        '</td></tr></table>'

def _ipython_display_(self):
    """Called when display() or pyout is used to display the Variable 
    Inspector."""
    self._box._ipython_display_()

内联运行以下内容:

inspector = VariableInspectorWindow(get_ipython())
inspector

将其设为javascript;

%%javascript
$('div.inspector')
    .detach()
    .prependTo($('body'))
    .css({
        'z-index': 999, 
        position: 'fixed',
        'box-shadow': '5px 5px 12px -3px black',
        opacity: 0.9
    })
    .draggable();

更新

日期:2017年5月17日

@jfbercher创建了一个nbextension变量检查器。可以在这里找到源代码jupyter_contrib_nbextensions。有关更多信息,请参阅文档

安装

用户

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user

虚拟环境

pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --sys-prefix

启用

jupyter nbextension enable varInspector/main

这是一个屏幕截图;

在此处输入图片说明


1
很棒的东西,如果您在此处发布快照,就很好了。我相信这将有助于推广您不错的扩展!
奥列格

1
@Oleg继续,我刚刚添加了它。另外,我只是想清楚一点,我没有写别人做的扩展名。我会尝试找出谁并稍后发布归属信息。
James Draper

2
按照“更新2017年5月17日”之后的说明,您会看到一个额外的图标,看起来像是瞄准器(-:-),单击此图标,然后弹出变量浏览器。
罗比诺

2
@Robino在右侧的工具栏中有一个小按钮,看起来像是一圈单击,如果有的话。
James Draper

1
@Robino此扩展调用 str(eval(obj_name)),因此,如果您使用的是自定义类,则可以将属性监视添加到__str__ dunder方法。如果不是,则可以使用第二个“监视”类包装变量。如果您需要具体说明,请创建一个新问题,因为这里没有足够的字符可用于确切的代码。
pkowalczyk

30

这可能对您有帮助,尽管这并不是Spyder所提供的,而且要简单得多:

要获取所有当前定义的变量的列表,请运行who

In [1]: foo = 'bar'

In [2]: who
foo

有关更多详细信息,请运行whos

In [3]: whos
Variable   Type    Data/Info
----------------------------
foo        str     bar

有关内置功能的完整列表,请参见魔术命令。


2
与matlab / octave相同:P
Eugenio F. Martinez Pacheco,

26

如果您在Jupyter Lab中使用Jupyter Notebooks,将会有很多关于实现变量资源管理器/检查器的讨论。您可以在此处关注该问题

截至目前,作品中已有一个Jupyter Lab扩展,它实现了类似Spyder的变量资源管理器。它基于James在回答中提到的笔记本扩展名。您可以在此处找到实验室扩展(带有安装说明):https : //github.com/lckr/jupyterlab-variableInspector

在此处输入图片说明


2
正是我要寻找的东西
shivam13juna

2
如果不确定如何在JupyterLab中安装扩展,请执行以下步骤:jupyterlab.readthedocs.io/en/stable/user/extensions.html
Nibood_the_slightly_advanced

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.