FLO-appStore/Loading json file.py
Kaushal Kumar Agarwal 8872930af7
Accessing json file
2018-08-18 10:59:24 +05:30

6 lines
133 B
Python

import json
with open('AppData.json',encoding='utf-8') as F:
json_data=json.loads(F.read())
print(json_data["Dapps"][0]["id"])