Get edge attributes from graph
Parameters : | G : NetworkX Graph name : string
|
---|---|
Returns : | Dictionary of attributes keyed by node. : |
Examples
>>> G=nx.Graph()
>>> G.add_path([1,2,3],color='red')
>>> color=nx.get_edge_attributes(G,'color')
>>> color[(1,2)]
'red'