Remember
Register
Home
/
Support
/
Support Forum
/
Is there any way to decompress .zip files from Xbee3 Micropython environment?
Digi Forum
All Activity
Q&A
Questions
Hot!
Unanswered
Tags
Categories
Users
Ask a Question
Welcome to Digi Forum, where you can ask questions and receive answers from other members of the community.
All categories
Digi Remote Manager
(383)
Python
(1,016)
RF Solutions and XBee
(8,417)
Device Cloud-enabled RF Gateways
(97)
XBee3
(475)
IEEE 802.11 (Wi-Fi)
(267)
IEEE 802.15.4
(1,644)
ZigBee PRO Featureset (and legacy ZNet 2.5)
(1,488)
ZigBee Smart Energy Profile 1.1
(111)
DigiMesh Proprietary Mesh Networking
(783)
Multipoint Proprietary
(197)
XLR PRO
(17)
XStream
(40)
XTend
(137)
XCite
(4)
XPress
(8)
Miscellaneous Hardware and Software
(513)
XBee Programmable Development
(777)
XBee Cellular
(119)
MicroPython
(66)
Digi TransPort
(787)
Digi Connect Cellular
(445)
DAL
(4)
Embedded Devices
(4,162)
Google Coral
(2)
Rabbit
(3,195)
Console Servers
(353)
Modbus and Industrial Automation
(246)
Realport
(600)
Serial Servers
(836)
Satellite Modules
(25)
USB
(1,269)
Serial Cards
(715)
ConnectPort Display
(58)
Feedback/Wish List
(92)
Other/Legacy
(373)
Is there any way to decompress .zip files from Xbee3 Micropython environment?
+1
vote
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?
xbee3
micropython
compression
asked
Jan 29, 2021
in
MicroPython
by
samson49
New to the Community
(
10
points)
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
3 Answers
0
votes
No, not that I am aware of. But you might want to check in the documentation for Micro Python.
answered
Feb 2, 2021
by
mvut
Veteran of the Digi Community
(
15,112
points)
Please
log in
or
register
to add a comment.
0
votes
I'm curious about the answer to that, too.
answered
Feb 8, 2021
by
ericedelacruz
New to the Community
(
1
point)
Please
log in
or
register
to add a comment.
0
votes
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/
answered
Feb 15, 2021
by
starfish
New to the Community
(
11
points)
Please
log in
or
register
to add a comment.
...