I have a zip that, inside it there are several files to be unzipped. So long, I'm using the following method to decipher the same:?
with closing(z), zipfile.ZipFile(io.BytesIO(z.content)) as myzip:
myzip.extractall(local_path)
However I came across the situation that inside the zip exists a file with unicode can example:
- myfile.wav
- myfile2.wav
- my§ile.wav
How can I handle these files, to unzip them correctly?