Skip to content

Instantly share code, notes, and snippets.

Created June 16, 2014 18:06
Show Gist options
  • Save anonymous/0d9856e111922feb0835 to your computer and use it in GitHub Desktop.
Save anonymous/0d9856e111922feb0835 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from zipfile import *
with ZipFile("2593562588.zip", "r") as file:
for x in file.infolist():
x.filename = x.filename.encode('ascii', 'ignore')
file.extract(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment