Closed tkchafin closed 12 months ago
write_gpickle and read_gpickle deprecated
https://networkx.org/documentation/stable/release/migration_guide_from_2.x_to_3.0.html
Replacement `import pickle
G = nx.path_graph(4) with open('test.gpickle', 'wb') as f: ... pickle.dump(G, f, pickle.HIGHEST_PROTOCOL) ... with open('test.gpickle', 'rb') as f: ... G = pickle.load(f) ...`
Fixed
write_gpickle and read_gpickle deprecated
https://networkx.org/documentation/stable/release/migration_guide_from_2.x_to_3.0.html
Replacement `import pickle