Skip to content

Instantly share code, notes, and snippets.

View hydrogen-mvm's full-sized avatar
🏠
Working from home

hydrogen-mvm

🏠
Working from home
View GitHub Profile
from os.path import isfile
from sys import argv
from zipfile import ZipFile
zipfile = argv[1]
if not isfile(zipfile):
raise SystemExit
f = ZipFile(zipfile)