Network.edges
-
Network.edges(data=False) Iterate over the edges of the network.
- Parameters
data (bool, optional) – If
True, yield both the identifier and the attributes.- Yields
tuple – The next edge identifier (u, v), if
dataisFalse. Otherwise, the next edge identifier and its attributes as a ((u, v), attr) tuple.