Add isal gzip decompressor

This commit is contained in:
humbertogontijo 2025-07-23 20:12:51 -03:00 committed by Lonami
parent 5e150ddf1e
commit b59c005903
2 changed files with 5 additions and 1 deletions

View File

@ -3,3 +3,4 @@ pysocks
python-socks[asyncio] python-socks[asyncio]
hachoir hachoir
pillow pillow
isal

View File

@ -1,3 +1,6 @@
try:
from isal import igzip as gzip
except ImportError:
import gzip import gzip
import struct import struct