Is there any way to decompress .zip files from Xbee3 Micropython environment?

There doesn’t appear to be a way to handle .zip files received from a GET request or otherwise. Is there someway to import zlib or uzlib to solve this? Just need a way to decompress a file. Perhaps even the decompress algorithm itself?

1 Like

No, not that I am aware of. But you might want to check in the documentation for Micro Python.

I’m curious about the answer to that, too.

There is a zipfile module in the stdlib.

https://docs.python.org/2.7/library/zipfile.html

For an example, this tutorial looks right to me:

https://www.geeksforgeeks.org/working-zip-files-python/