python - Variable Explorer in Jupyter Notebook -
is there variable explorer in jupyter (ipython) in spyder? uncomfortable having print list of variables time each time run through test code. has feature been implemented yet? if so, how enable it? update scroll down section labeled update less convoluted method. old answer here notebook on how make own variable inspector . think written when jupyter notebook called ipython notebook works on latest version. i'll post code below in case link breaks. import ipywidgets widgets # loads widget framework. ipython.core.magics.namespace import namespacemagics # used query namespace. # example, hide these names, avoid polluting 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 not...