Я пытаюсь сжать поток zlib, поступающий из веб-сокета, и я не могу понять, что случилось.
test = data from here.. : pastebin.com/MPFVH2cn
test = test.encode()
test = bytes(test)
import zlib
import json
_zlib = zlib.decompressobj(zlib.MAX_WBITS|32)
hello_decomp = _zlib.decompress(test)
hello_decomp = hello_decomp.decode('utf-8')
hello = json.loads(hello_decomp)
_buffer = bytearray()
print(hello)