Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

networkx.convert.to_dict_of_lists

to_dict_of_lists(G, nodelist=None)[source]

Return adjacency representation of graph as a dictionary of lists.

Parameters:
  • G (graph) – A NetworkX graph
  • nodelist (list) – Use only nodes specified in nodelist

Notes

Completely ignores edge data for MultiGraph and MultiDiGraph.