Le fichier zip Python s'ouvre sous forme de texte
with ZipFile('spam.zip') as myzip:
with myzip.open('eggs.txt') as myfile:
eggs = io.TextIOWrapper(myfile)
Alive Ape