Skip to content

unzipwalk v1.5.0

Compare
Choose a tag to compare
@haukex haukex released this 19 Jun 16:09
· 4 commits to main since this release

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