package documentation

AbstractDataSet implementation to save and load NetworkX graphs in JSON , GraphML and GML formats using NetworkX.

Module gml_dataset NetworkX GMLDataSet loads and saves graphs to a graph modelling language (GML) file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create GML data.
Module graphml_dataset NetworkX GraphMLDataSet loads and saves graphs to a GraphML file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create GraphML data.
Module json_dataset JSONDataSet loads and saves graphs to a JSON file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create JSON data.

From __init__.py:

Class GMLDataSet GMLDataSet loads and saves graphs to a GML file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create GML data. See https://networkx.org/documentation/stable/tutorial.html for details.
Class GraphMLDataSet GraphMLDataSet loads and saves graphs to a GraphML file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create GraphML data. See https://networkx.org/documentation/stable/tutorial.html...
Class JSONDataSet NetworkX JSONDataSet loads and saves graphs to a JSON file using an underlying filesystem (e.g.: local, S3, GCS). NetworkX is used to create JSON data. See https://networkx.org/documentation/stable/tutorial.html...