##// END OF EJS Templates
ATRAD actualizado
ATRAD actualizado

File last commit:

r380:34e7637f39b2
r396:bcff7b1b68a2
Show More
files.py
18 lines | 270 B | text/x-python | PythonLexer
import json
def read_json_file(fp):
kwargs = {}
json_data = fp
data = json.load(json_data)
json_data.close()
topic = data["topic"][0][1]
kwargs['topic'] = topic
return kwargs
def write_json_file(filename):
pass