IPython 8.4.0 Pypi GitHub Homepage
Other Docs
Parameters
extract_vars(*names, **kw)

Parameters

*names : str

One or more variable names which will be extracted from the caller's frame.

**kw : integer, optional

How many frames in the stack to walk when looking for your variables. The default is 0, which will use the frame where the call was made.

Extract a set of variables by name from another frame.

Examples

In [2]: def func(x):

...: y = 1 ...: print(sorted(extract_vars('x','y').items())) ...:

In [3]: func('hello') [('x', 'hello'), ('y', 1)]

See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /IPython/utils/frame.py#23
type: <class 'function'>
Commit: