mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 05:06:49 +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])
|