NetworkX

Previous topic

networkx.readwrite.graphml.write_graphml

Next topic

networkx.readwrite.graphml.write_graphml

networkx.readwrite.graphml.read_graphml

networkx.readwrite.graphml.read_graphml(path, node_type=<type 'str'>)

Read graph in GraphML format from path.

Parameters :

path : file or string

File or filename to write. Filenames ending in .gz or .bz2 will be compressed.

node_type: Python type (default: str) :

Convert node ids to this type

Returns :

graph: NetworkX graph :

If no parallel edges are found a Graph or DiGraph is returned. Otherwise a MultiGraph or MultiDiGraph is returned.

Notes

This implementation does not support mixed graphs (directed and unidirected edges together), hypergraphs, nested graphs, or ports.

For multigraphs the GraphML edge “id” will be used as the edge key. If not specified then they “key” attribute will be used. If there is no “key” attribute a default NetworkX multigraph edge key will be provided.

Files with the yEd “yfiles” extension will can be read but the graphics information is discarded.

yEd compressed files (“file.graphmlz” extension) can be read by renaming the file to “file.graphml.gz”.