It seems to me, that encoding is lost on json.dumps()
stage. I would try to add ensure_ascii
parameter:
print(json.dumps(dict, indent = 2, ensure_ascii=False))
CLICK HERE to find out more related problems solutions.
It seems to me, that encoding is lost on json.dumps()
stage. I would try to add ensure_ascii
parameter:
print(json.dumps(dict, indent = 2, ensure_ascii=False))
CLICK HERE to find out more related problems solutions.