mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-26 01:04:29 +03:00
5 lines
100 B
Python
5 lines
100 B
Python
import sys, tarfile
|
|
with tarfile.open(sys.argv[1], 'r:gz') as tgz:
|
|
tgz.extractall(sys.argv[2])
|
|
|