forked from mit-ll/blockchain-simulation-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_endec.py
31 lines (24 loc) · 878 Bytes
/
json_endec.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import json
import networkx as nx
class GraphEncoder(json.JSONEncoder):
"""A JSONEncoder for serialzing networkx.Graph objects.
"""
def default(self, obj):
if isinstance(obj, nx.Graph):
return {
"_type": "nx.Graph",
"value": nx.node_link_data(obj)
}
return super(GraphEncoder, self).default(obj)
class GraphDecoder(json.JSONDecoder):
"""A JSONEncoder for deserialzing networkx.Graph objects.
"""
def __init__(self, *args, **kwargs):
json.JSONDecoder.__init__(self, object_hook=self.object_hook, *args, **kwargs)
def object_hook(self, obj):
if '_type' not in obj:
return obj
type = obj['_type']
if type == 'nx.Graph':
return nx.node_link_graph(obj['value'])
return obj