mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
4 lines
93 B
Python
4 lines
93 B
Python
import sys, zipfile
|
|
with zipfile.ZipFile(sys.argv[1]) as zf:
|
|
zf.extractall(sys.argv[2])
|