compile(self, f)
Called once for a given decorated function -- collects the code from all argmap decorators in the stack, and compiles the decorated function.
Much of the work done here uses the assemble
method to allow recursive treatment of multiple argmap decorators on a single decorated function. That flattens the argmap decorators, collects the source code to construct a single decorated function, then compiles/executes/returns that function.
The source code for the decorated function is stored as an attribute :None:None:`_code`
on the function object itself.
Note that Python's compile
function requires a filename, but this code is constructed without a file, so a fictitious filename is used to describe where the function comes from. The name is something like: "argmap compilation 4".
The function to be decorated
The decorated file
Compile the decorated function.
The following pages refer to to this document either explicitly or contain code examples using this.
networkx.utils.decorators.argmap.assemble
networkx.utils.decorators.argmap
networkx.utils.decorators.argmap.compile
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