Seems like there should be a method in networkx to export the json graph format, but I don\'t see it. I imagine this should be easy to do with nx.to_dict_of_dicts(), but wou
The rest of the solutions didn't work for me. From the networkx 2.2 documentation:
networkx 2.2
nx.write_gpickle(G, "test.gpickle") G = nx.read_gpickle("test.gpickle")