read json to dict python code example
Example 1: python dictionary to json
import json
appDict = {
'name': 'messenger',
'playstore': True,
'company': 'Facebook',
'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
Example 2: json file to dict python
import json
with open("data.json", "r") as json_file:
my_dict = json.load(json_file)
Example 3: python dict to json
import json
appDict = {
'name': 'messenger',
'playstore': True,
'company': 'Facebook',
'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
Example 4: convert dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, fp)