Skip to content

Releases: haukex/unzipwalk

unzipwalk v1.7.0

31 Oct 18:09
Compare
Choose a tag to compare
  • Added support for .bz2, .xz, and .7z files (the latter requires the module py7zr to be installed)
  • Warning: Deprecated ReadOnlyBinary.name property; will be removed in the next release.

https://pypi.org/project/unzipwalk/1.7.0/

unzipwalk v1.6.0

19 Jun 16:45
Compare
Choose a tag to compare

unzipwalk v1.5.0

19 Jun 16:09
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.5.0/

  • Added raise_errors option that can be turned off so that errors during iteration don't abort the walk,
    and instead a UnzipWalkResult of type FileType.ERROR is yielded.
  • Warning: Potentially incompatible changes
    • When matcher is used, previously the results would be entirely suppressed, now a UnzipWalkResult of type FileType.SKIP is yielded.
    • The CLI tool now defaults to raise_errors being off; you must specify --raise-errors to get the previous behavior.
    • The CLI tool now defaults to reporting ERROR and FILE results instead of just FILE results.
  • Package unzipwalk now has a __main__.py so you can invoke the CLI tool with python3 -m unzipwalk as well

unzipwalk v1.4.0

17 Jun 16:36
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.4.0/

  • Made requirements more lenient to avoid dependency conflicts

unzipwalk v1.3.0

03 Jun 11:04
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.3.0/

  • Further improved escaping of filenames with --checksum CLI option, and provided UnzipWalkResult.from_checksum_line() to parse the output.

unzipwalk v1.2.1

31 May 19:29
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.2.1/

  • Improved escaping of filenames with --checksum CLI option.

unzipwalk v1.2.0

31 May 18:32
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.2.0/

  • Added matcher argument to unzipwalk() and corresponding --exclude CLI option.

unzipwalk v1.1.0

31 May 14:24
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.1.0/

  • Added unzipwalk.recursive_open().
  • Updated documentation.

unzipwalk v1.0.0

22 May 19:19
Compare
Choose a tag to compare

https://pypi.org/project/unzipwalk/1.0.0/

  • Initial release, based on the unzipwalk that was part of https://github.com/haukex/igbdatatools.
    • WARNING: Incompatible Changes
      • The onlyfiles argument of the unzipwalk function was removed and its return type has changed!
      • The output of the unzipwalk command line-tool has changed!