Z
Size: a a a
Z
S
Z
Z
S
S
Z
>>> import io, json
>>>
>>> f = io.BytesIO('{"fuck": "you"}') # example of utf-8 json
>>>
>>> def to_str(x):
... return x.encode() if isinstance(x, unicode) else x
...
>>> def object_hook(x):
... return {to_str(k): to_str(x[k]) for k in x}
...
>>> d = json.load(f, object_hook=object_hook)
>>> d
{'fuck': 'you'}
>>>ВФ
СВ
Z
Z
СВ
ML
ML
Z
Z
Z
Z
FO