I have tile map graphical data compressed with <encoding=“base64” compression=“zlib”>. And in python, I’m trying to decompress that to get back the original data as a readable string or an array of nums.
The compressed data is “eJwNw4cNAAAIw7Cy4f+HiSWbJGcwWWwOl8cHArgALg==”
And after decompression, it should return to “1, 2, 3, 4, 5, 6, 7, 8, 9”
However, I’m failing (attached 2 pictures). I feel like I’m missing something very simple…
Would appreciate the help!