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 / unzip.py

import sys
import zipfile


def unzip(src, dest):
    with zipfile.ZipFile(src) as zf:
        zf.extractall(dest)


if __name__ == '__main__':
    unzip(sys.argv[1], sys.argv[2])