parse_options(self, arg_str, opt_str, *long_opts, **kw)
The interface is similar to that of getopt.getopt
, but it returns a ~IPython.utils.struct.Struct
with the options as keys and the stripped argument string still as a string.
arg_str is quoted as a true sys.argv vector by using shlex.split. This allows us to easily expand variables, glob files, quote arguments, etc.
The arguments to parse.
The options specification.
If given as 'list', the argument string is returned as a list (split on whitespace) instead of a string.
Put all option values in lists. Normally only options appearing more than once are put in a list.
Whether to split the input line in POSIX mode or not, as per the conventions outlined in the shlex
module from the standard library.
Parse options passed to an argument string.
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