I need to covert networkx edges' OutEdgeView data to a list.
I remember the graph.edges(data=True) used to return a list like [u,v,{data}]. But now the networks returns something OutEdgeView([u,v,{data}]). How could I get the original kind of list?
Thanks