If you are fine with non-printable symbols in your json, then add ensure_ascii=False to dumps call.
>>> json.dumps(your_data, ensure_ascii=False)
If
ensure_asciiis false, then the return value will be a
unicodeinstance subject to normal Pythonstrtounicode
coercion rules instead of being escaped to an ASCIIstr.