Support 7zip compression
- Add support for compression.
You can compress files from command line
$ 7zr w target.7z src/
or from API,
archive = SevenZipFile('target.7z', 'w')
archive.writeall('./')
archive.close()
Release v0.5 is as same as v0.5rc3.
$ 7zr w target.7z src/
or from API,
archive = SevenZipFile('target.7z', 'w')
archive.writeall('./')
archive.close()
Release v0.5 is as same as v0.5rc3.