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]
hachoir
pillow
isal

View File

@ -1,4 +1,7 @@
import gzip
try:
from isal import igzip as gzip
except ImportError:
import gzip
import struct
from .. import TLObject