convert dict to jsonb code example
Example 1: python dict to json
# app.py
import json
appDict = {
'name': 'messenger',
'playstore': True,
'company': 'Facebook',
'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
Example 2: convert dict to json python
import json
with open('result.json', 'w') as fp:
json.dump(sample, fp)