mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
9 lines
176 B
Python
9 lines
176 B
Python
import sys, tarfile
|
|
|
|
def untar(src, dest):
|
|
with tarfile.open(src, 'r:gz') as tgz:
|
|
tgz.extractall(dest)
|
|
|
|
if __name__=='__main__':
|
|
untar(sys.argv[1],sys.argv[2])
|