5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-11-10 02:20:30 +00:00
yggdrasil-map/web/graphData.py

10 lines
137 B
Python
Raw Normal View History

2014-05-28 16:48:46 +00:00
import json
def insert_graph_data(json_str):
try:
graph_data = json.loads(json_str)
except ValueError:
return False
return True