Skip to content

Support 7zip compression

Choose a tag to compare

@miurahr miurahr released this 13 Feb 04:03
· 1528 commits to master since this release
  • 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.