json load utf-8 python code example
Example: read json file python utf8
with open('keys.json', encoding='utf-8') as fh:
data = json.load(fh)
print(data)
# from stackoverflow : https://stackoverflow.com/questions/46408051/python-json-load-set-encoding-to-utf-8