mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +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])
|
|
|