out_edges_iter
in_edges_iter
Enter search terms or a module, class or function name.
Return a list of the incoming edges.
nbunch : iterable container, optional (default= all nodes)
A container of nodes. The container will be iterated through once.
data : bool, optional (default=False)
If True, return edge attribute dict with each edge.
keys : bool, optional (default=False)
If True, return edge keys with each edge.
in_edges : list
A list of (u,v), (u,v,d) or (u,v,key,d) tuples of edges.
See also