Releases: haukex/unzipwalk
Releases · haukex/unzipwalk
unzipwalk v1.7.0
- Added support for
.bz2
,.xz
, and.7z
files (the latter requires the modulepy7zr
to be installed) - Warning: Deprecated
ReadOnlyBinary.name
property; will be removed in the next release.
unzipwalk v1.6.0
https://pypi.org/project/unzipwalk/1.6.0/
- Added
--outfile
CLI option
unzipwalk v1.5.0
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 aUnzipWalkResult
of typeFileType.ERROR
is yielded. - Warning: Potentially incompatible changes
- When
matcher
is used, previously the results would be entirely suppressed, now aUnzipWalkResult
of typeFileType.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
andFILE
results instead of justFILE
results.
- When
- Package
unzipwalk
now has a__main__.py
so you can invoke the CLI tool withpython3 -m unzipwalk
as well
unzipwalk v1.4.0
https://pypi.org/project/unzipwalk/1.4.0/
- Made requirements more lenient to avoid dependency conflicts
unzipwalk v1.3.0
https://pypi.org/project/unzipwalk/1.3.0/
- Further improved escaping of filenames with
--checksum
CLI option, and providedUnzipWalkResult.from_checksum_line()
to parse the output.
unzipwalk v1.2.1
https://pypi.org/project/unzipwalk/1.2.1/
- Improved escaping of filenames with
--checksum
CLI option.
unzipwalk v1.2.0
https://pypi.org/project/unzipwalk/1.2.0/
- Added
matcher
argument tounzipwalk()
and corresponding--exclude
CLI option.
unzipwalk v1.1.0
https://pypi.org/project/unzipwalk/1.1.0/
- Added
unzipwalk.recursive_open()
. - Updated documentation.
unzipwalk v1.0.0
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 theunzipwalk
function was removed and its return type has changed! - The output of the
unzipwalk
command line-tool has changed!
- The
- WARNING: Incompatible Changes