mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-10 08:30: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])
|