Last active
December 6, 2015 11:51
-
-
Save aahoo/b3bd940344c0401454d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from networkx.readwrite import json_graph | |
import json | |
# Return data in adjacency format that is suitable for | |
# JSON serialization and use in Javascript documents. | |
# more @https://goo.gl/QoRlbL | |
data = json_graph.adjacency_data(G) | |
with codecs.open('matrix.json', 'w', encoding='utf-8') as f: | |
json.dump(data, f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment