Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

squarecapadmin / Pillow   python

Repository URL to install this package:

/ winbuild / untar.py

import sys
import 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])