We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0b3d45 commit adf4c4cCopy full SHA for adf4c4c
2 files changed
docs/library/index.rst
@@ -44,6 +44,7 @@ it will fallback to loading the built-in ``ujson`` module.
44
ujson.rst
45
ure.rst
46
usocket.rst
47
+ uzlib.rst
48
49
Libraries specific to the pyboard
50
---------------------------------
docs/library/uzlib.rst
@@ -0,0 +1,16 @@
1
+:mod:`uzlib` -- zlib decompression
2
+==================================
3
+
4
+.. module:: uzlib
5
+ :synopsis: zlib decompression
6
7
+This modules allows to decompress binary data compressed with DEFLATE
8
+algorithm (commonly used in zlib libarary and gzip archiver). Compression
9
+is not yet implemented.
10
11
+Functions
12
+---------
13
14
+.. function:: decompress(data)
15
16
+ Return decompressed data as bytes.
0 commit comments