Skip to main content

Python wrapper for Rust's zip crate with legacy ZipCrypto encryption support

Project description

RustyZip

A Python wrapper for Rust's zip crate that exposes a ZIP file writer with legacy ZipCrypto encryption support.

⚠️ Disclaimer

This project was primarily created using Cursor with LLMs. While it has been tested, please use it at your own risk. The code may contain unexpected behaviors or bugs.

Background

This project is a simple wrapper over Rust's zip crate to support writing ZIP files with ZipCrypto encryption in Python. While there are existing solutions like pyminizip, this project addresses several limitations:

  • pyminizip lacks pre-built binary wheels on PyPI, making installation more complex
  • pyminizip ships with an outdated version of zlib
  • pyminizip's APIs are not very efficient as they only work with file paths instead of file objects or bytes

This project is not intended to be a full-featured Python ZIP library (there are already many excellent options available). Instead, it focuses specifically on providing support for writing ZIP files with the legacy ZipCrypto encryption, which seems to be missing from other Python ZIP libraries.

Security Warning

⚠️ IMPORTANT: The ZipCrypto algorithm is considered insecure and should not be used for sensitive data. It is provided solely for compatibility with legacy systems. For secure encryption, consider using more modern alternatives.

Requirements

  • Python 3.9 or later
  • Rust 1.70 or later (for building from source)

Installation

pip install rusty-zip

Usage

from rusty_zip import ZipWriter
from io import BytesIO

# Create a new encrypted ZIP file with ZipCrypto
with ZipWriter("example.zip", password=b"mypassword") as zip_file:
    # Add files to the ZIP with ZipCrypto encryption
    zip_file.write_file("path/to/file.txt", "file.txt")
    
    # Add data from memory (must be bytes)
    zip_file.write_bytes(b"Hello, world!", "hello.txt")
    
    # If you have a string, convert it to bytes first
    text = "This is a string"
    zip_file.write_bytes(text.encode('utf-8'), "string.txt")

# You can also use file-like objects
file_like = BytesIO()
with ZipWriter(file_like) as zip_file:
    zip_file.write_file("path/to/file.txt", "file.txt")
    zip_file.write_bytes(b"Hello, world!", "hello.txt")

# Get the ZIP content from the file-like object
zip_content = file_like.getvalue()

API Reference

ZipWriter

Constructor

  • ZipWriter(path_or_file_like: Union[str, BinaryIO], password: Optional[bytes] = None) - Creates a new ZIP file. The first argument can be either a path string or a file-like object that supports binary I/O operations. If a password is provided, files will be encrypted using ZipCrypto. The password must be bytes.

Methods

  • write_file(source_path: str, entry_name: str) - Adds a file from disk to the ZIP archive.
  • write_bytes(data: bytes, entry_name: str) - Adds bytes from memory to the ZIP archive. The data must be a bytes object.
  • close() - Closes the ZIP file. This is automatically called when using the context manager.

Features

  • Create ZIP files with legacy ZipCrypto encryption
  • Add files from disk or memory
  • Support for both file paths and file-like objects
  • Simple Python API with Rust performance
  • Cross-platform compatibility

Development

Building from Source

uv build

Running Tests

uv run pytest

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • zip-rs - The Rust ZIP library this project wraps
  • PyO3 - Rust bindings for Python

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rusty_zip-0.1.0a2.tar.gz (32.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (889.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (919.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (966.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (890.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (807.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (751.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (889.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (918.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (965.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (890.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (808.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (751.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (889.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (918.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (965.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (890.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (807.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (796.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl (887.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl (916.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl (965.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl (888.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (804.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (794.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (721.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (702.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp313-cp313-win_amd64.whl (473.7 kB view details)

Uploaded CPython 3.13Windows x86-64

rusty_zip-0.1.0a2-cp313-cp313-win32.whl (449.4 kB view details)

Uploaded CPython 3.13Windows x86

rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (888.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl (916.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl (965.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (889.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (715.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (805.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (794.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (750.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl (570.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rusty_zip-0.1.0a2-cp313-cp313-macosx_10_12_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rusty_zip-0.1.0a2-cp312-cp312-win_amd64.whl (473.7 kB view details)

Uploaded CPython 3.12Windows x86-64

rusty_zip-0.1.0a2-cp312-cp312-win32.whl (449.0 kB view details)

Uploaded CPython 3.12Windows x86

rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (888.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl (917.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl (965.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (889.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (715.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (806.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (750.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl (570.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rusty_zip-0.1.0a2-cp312-cp312-macosx_10_12_x86_64.whl (632.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rusty_zip-0.1.0a2-cp311-cp311-win_amd64.whl (473.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rusty_zip-0.1.0a2-cp311-cp311-win32.whl (447.5 kB view details)

Uploaded CPython 3.11Windows x86

rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (889.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl (919.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl (965.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (890.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (807.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (723.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (751.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl (573.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rusty_zip-0.1.0a2-cp311-cp311-macosx_10_12_x86_64.whl (636.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rusty_zip-0.1.0a2-cp310-cp310-win_amd64.whl (473.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rusty_zip-0.1.0a2-cp310-cp310-win32.whl (447.4 kB view details)

Uploaded CPython 3.10Windows x86

rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl (889.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl (919.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl (966.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (890.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (807.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (795.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (722.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (703.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (751.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a2-cp39-cp39-win_amd64.whl (473.2 kB view details)

Uploaded CPython 3.9Windows x86-64

rusty_zip-0.1.0a2-cp39-cp39-win32.whl (447.6 kB view details)

Uploaded CPython 3.9Windows x86

rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl (889.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl (920.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl (966.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl (890.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (716.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (807.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (796.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (723.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (704.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (752.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file rusty_zip-0.1.0a2.tar.gz.

File metadata

  • Download URL: rusty_zip-0.1.0a2.tar.gz
  • Upload date:
  • Size: 32.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rusty_zip-0.1.0a2.tar.gz
Algorithm Hash digest
SHA256 bfdc749a5d6eb71d5723979f2cfed2310e5dfb262fe60b0aa61f9ec2a0e5195d
MD5 91ed05ce8e759004cea41bbe6efbc9e0
BLAKE2b-256 8f3a18d7300b2d5669c8a0c2f36b73747ef4d5fe23fd557f9d1666d011136889

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f367e504f2ea57ad64a48aa6fdd8144d8683ed4fb739e8759a3184df5cb7545d
MD5 9c1db16fb311b15d5163a0e96ddfecde
BLAKE2b-256 cb90c34b709974a9d6a1bc57dd95a866c0a788df1482239675078ff35da3e152

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 114bea8df01ba8a6fe4b0497ea11b317e5dd5a6faa904a61ca7a035ad0135b1e
MD5 40eefd4c8e0106b6a4d960d2f61a8e82
BLAKE2b-256 372d8608cf0c81ef369e98be45fd97bd0855e4b707369f39ff99b7a8be54f21e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29c95c017e669d42a9c9c3c2f15109a798c1018fcc9f4b0bbfb72d138d29fb0a
MD5 35af27a4ed71a0e7bdb68f739650a864
BLAKE2b-256 7dea30e53e888681871261fbdff45bb60b44df944e62256cd442d4d71e8ac57b

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8822568efc365cf1736af152c3dc6246c11f7c0e7e4078f0c11ace4eeb547b4b
MD5 8db14a67ccb7fb47b9ae3ef66000226c
BLAKE2b-256 16ca7c1d2317b281f8ead6949177399a516985c933d4b9683046918690371354

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aab49b08c18b15bf361114dd316b7814a63ecf16fb386c746987ac3d2c7a05c7
MD5 d2ac817404cf179f2e01e950accee483
BLAKE2b-256 d705b8522e376fccb376b03c7cf7d0c5bc17959e4d253518cefa7a6fa269b8eb

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83f8e98d2744b820070b800325b6007700c335a610f2ad762ca65590e287099f
MD5 4ac4bcc97d5c9166a5ae9472ff06366e
BLAKE2b-256 57606a16a7e8655c37f2ed9acb85d35f5c74dfc365b466f002dbb54a07011da5

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa1341ad0ca0534820db584e471c493d7c5aedbc24d88df44cad5e9005a0f132
MD5 86b214fa23a7fba43aef76ebd41079fe
BLAKE2b-256 6a9335a69bebded8a456e5c2b1832c8e36269d7d99290f095c69b4ce6d77da45

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b22d4917f97e2d5ec15404997d6c986f8ea6d4359bdbec9d7edb23613c3a2fd4
MD5 d028977e15d57dc4a8d1bf0fe4cc0daa
BLAKE2b-256 e0f6d467b8c6742500e93491aefbf1a48f4216e8bc95078ea42ee81022629fe1

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01195e470735fb5e8ac70bda78a6726b9cdc420508178124d25529e2feff6c4e
MD5 2ecdc3b0cb8bcdc2cec91f4d6a97e6e5
BLAKE2b-256 89ec23b6715da691c86f4a2a096d748944e0290558c07a68b96e0baf7ef0b801

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c58b652290638ea95dd4f106e12c846ee1e5379f33b148bc748d78a9f4e6db8c
MD5 197078b8ffb781bc3a6ac5490c2a55b5
BLAKE2b-256 4a0c602518c83dada6a09799585708b9642bbb802c46b6f53ffdaaa14b6d2a04

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6e79642cd56e8365e72f24f5320819784b9021c083dbf3a913f36a159436438
MD5 ed470999808398eca11c9c205269595b
BLAKE2b-256 ac5ea161506221ecc986c0423f1563abf0d5a3c077018d97285dceaed9c2265e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65030e4a6feb0ae4bf4b29dc1def590b7ff753cc8160307398838a9c8167dd35
MD5 2cbef0c971a6de446e37194cb474eb83
BLAKE2b-256 b957a564e20716a76e3a2ab5321e8a63f4c4e7d12257eb0407ec8a9a6619f6ab

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2b30ec63e9dcd35af4a01b4c26e602b91ff17e64f29ee0457c15de30598a9f4
MD5 7b901642461ee6716762c510e11312b7
BLAKE2b-256 4a16c6d687e0993f96f5505493e7841acef74f51a6c86a9d334e3704e7d3d1ee

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa4c7995a31386507f2f6b3ed0ff748c46ebbebc74ba37e53822371bfa0d7eff
MD5 401f5aac2adf195c0d3466f6308cbe76
BLAKE2b-256 71601f607c6c8639086eedfb25319b86001d7ea5d3b025f76c4572f3a8a20304

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9095f89e94f0c18fa38f15acdbda1bde441d754ec71778bf4e993f03e4b478f
MD5 018f0caf42e9b8c93a231643968c6728
BLAKE2b-256 f9196d55b4fd55ade1b898c3ea6b488904d4fbd7d17391a98930cedd04daeb7d

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4db03c542545a71775216dee04072299e9aa66673d117128b76306071f67d9c
MD5 b6c4338d0589911ef939c714a566914f
BLAKE2b-256 534b77595e969be002f00d13fbb49839b7718c46d419f0df6a733338ceeb36d4

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bc47e7f890524e363b466b4f1cb873cb88db6911223d8d409d1ed91de279906
MD5 ed811a2e613f1568eb60c1377aafff59
BLAKE2b-256 f2ffeb02a2afdbba91eaa89ee4c3d6414901fd323e0bcfec9bedbfc0a41b0739

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09d543d89b70024ce0dd47cd0ca46f19c16e2fff77557cba46a2583e8b3482af
MD5 e1f551a9f4242ff59ea116c8b169c9d9
BLAKE2b-256 e6a2f3711d73e49c50fcb75838666ad10322d8164ee4ef18ff329dd72180744f

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df781e731a617096b89d7312812a2fa800629119b66925c46b6f021737b0d6f5
MD5 ec4c5f524b786ecc917f554852194f6e
BLAKE2b-256 5d76fb5c177887388f132dd46c2263bf9f21282f5f10f4b8e0242ff64d9f108f

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 836cd8507278198024583edaf407770ceb02ed633b26c551ee0e20167ae61b19
MD5 d10186a92bef3ac543d14aa3364f3e15
BLAKE2b-256 4d9eaa439c54eab57290cce6fae3825629fcc625ed52945fad7a3b5932ed99f8

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da44d3de797f13d34950fcd8a0774f86c7e48996a0545c70f9451b4025f24cf0
MD5 675f9dcaa9a0018c259b501dfc80d46b
BLAKE2b-256 745f80c0e99786dd2632fda44bc3faa2bf1ff8ffdb4a89c34ed5667cb87d9848

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae9670a9d0a78b2e2d3a847cbbc125516dc5effb8e20cc7cdf42b0ed90ec673a
MD5 386c8ae467105cc6726a244938b176d9
BLAKE2b-256 cbf8fca56fdf712d1b999968dc758427d7f8ce0426218c54dfb5dfd54769181f

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d98cf63ae5413506aacf0e48455f460f7690a87df3626bd3342434a3a35ad9b8
MD5 07eff0d7a062951d4d9591759fb0b135
BLAKE2b-256 548dc7e15566d2764d1601263fbfff2d5cafeae0f89add377f6065e2c1c81616

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 386a124328d28501f4c64ddd19062092c51810fe52a8cbc026256bb6cc3310c8
MD5 23f1efc8b9583d67773fc78296f0d047
BLAKE2b-256 8f628fc500050e0214149c6a15365a228d695464a56585c0b84327081dbb75db

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26245e98978ef2a5711174b092e62c11f4310206dc50699b0b8e664754d2c18e
MD5 8df13fe9a3ac7e1d42dab1f8fb5b0e04
BLAKE2b-256 8f421768894ecb23329e197b290f9419946110615d3b5bf925473fb665f2533a

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4181d5d957fa107890e1cc2cac50dc74b36587a9bdbf285d2442fb9dfa4a9f93
MD5 878ebc55449d70d77da90bb2e737e928
BLAKE2b-256 aecc0f43ed638c169d8cb19a1d56e5d13707dbc6548771b38e0d0b4299f95262

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c995bfe71fbd77799a7379c9bb02e89d03ce26f459abb7d881db0b42121f4d9
MD5 5b2b47d3b76653061295baf4305e074a
BLAKE2b-256 2e3a7d09eae935b29783ab826ccd1529e58f78c57874ceea06a4975ea13f710c

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94e8168e2880fd05d49cfe95d2f04641ca171a8b448945b8aa29f90f9dd8a531
MD5 4a7c2690792e7deccc20ab28a47e47f5
BLAKE2b-256 1b4ee4f7b03d2b5c2dfcfd8a2e8c7fda9f555507f0946a34fc4eb9cd4d574bd1

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9796706f3bd306d6624e034ca13f933d983a476c82680fa66d49d643d2ce3bd5
MD5 5a41440ee3b77bf785d1e7ca8419b8a6
BLAKE2b-256 4d4256835db256ad6dbb17e203afa293d10fbe13216cdc32b16d43f5b5fd046d

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99ba848a2b6d451d1326c8879f5ad703a11c6b00af6c5c9c220ba3299c46232a
MD5 da5ac0c67b3f34ed3df81b0c14151c17
BLAKE2b-256 330d0c6510267ab1592f15dd5879468f4aed534c0dab49b2a36727f9d640f265

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f74326430c7e7891fed739e57b13191cd236f376756aa957d342ff21f354c7cd
MD5 197dba9a7956ce037804741cabd70ad3
BLAKE2b-256 025c964efd6c5151dbdf3f878a228067dbfd6b1d2644ef5f877cb6fb4c7251fa

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5adcf3eb5d7bb0072f82215bc790c68d5c1f7a9ff4108a3792c89dbe0c72fd8
MD5 14c3cb8d44abfe2a96674bc192fd20ea
BLAKE2b-256 af82726ec5474ce0f084515aa5131e8f4bcdff66aca5fa4cc74d3b774820d553

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 068103f65e82b639fc1837c63b783ddf7416586e3b9d319954002424bdc365f7
MD5 23a412c3e483e6b1302c59b0c2b896e5
BLAKE2b-256 21b07173b8d97744401bce5ed0831ce315a2361f6f22c63a03c3239e75e544ee

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc59983b091af7d0f6e71d1adc5a1870b8af85d2a8a33ecfb4fd9fb56d84188e
MD5 1003038f7b5529317d67093f84505f98
BLAKE2b-256 5d7577bf12c619a4251c2fc3016c46693667a4763eff85ac7a462cd43ff00a9a

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94e273233456e0e92b5e097747ba5572c82ee6ce801b446282cd3005e975cf64
MD5 ff5d1902316b076d10fc7089fe4136f7
BLAKE2b-256 42c7f20ea41419a15f71411f617bbdf4f4d51f3fd2d92935bf8ac0cde6269d8d

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c65c04d447007d0aee1431d86fbd0c885fd1a5cf576de76672b460328b953de
MD5 c88c21150a9a5cdfe3a80d669c70223b
BLAKE2b-256 87330ab21ea256b927b714445ebf08fc079143668bf1b92ef7dddb124c450a30

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9870c6a9ae96eacd0e2ddfc26f745f6d88689d7ab47e04fba67125dd6a8f6967
MD5 b72fc1aaa893d52fc4324ca78791ffd4
BLAKE2b-256 a281247ddea58fbae1636626eee4a044749d2ac6a92554a3a0692655e7e7b416

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5ec6085c9ddfa2f58c63300c42e3792a2cbd7beebf07c70778a2c3b1d0d7800e
MD5 0c3f6b34274222458cba5fc688a47214
BLAKE2b-256 71837079a7c42b393642e9a6c78005114edd06d17e331507fb3127c58bbe1247

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bd9ef592c3fdd2065ebac81cb2e604a6ef6113445acb74cc59bbd04479403c0
MD5 d8f58c04cfd6f386a8c84b50929333d2
BLAKE2b-256 db17e7211fc19f43b0b4dd41eedad446b7dd2aeb6f0c95b702b257b80fa9e4a0

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6c06f3d87e7ff1a58eb5c7d349dead0aa5e0fe8be2a5de0c8f1b07fcfd2e32d
MD5 c75433fe56e07593d2ab8594e059c4cd
BLAKE2b-256 a707dbf408ad339321f67b5fa2850e78ec0a288dab1d67bf29b3aa8c43e5c2d8

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dba5488e6fc84a44c55ea226459d69eb94ee6c5545252ba90a7758729fe46d6e
MD5 6c36111e2604784d852b2d6bfeb774f1
BLAKE2b-256 31f79888b6533d173ce6196cbb197c72ff9fd1c5d46b916e12f568d7bff417ac

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03ab1a8dccdf7776e23cb471e6d32331e951e51eb483c29f388567bb1cf04f3c
MD5 92338fffdeda4b91fcc865cce2263d84
BLAKE2b-256 8a46a6300e95b836f73aa1752dee392bb10118caea0d4f760bbf27d16ec51946

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bc37e1a1609d5ce34a4080a863a797a7b6683eb6e40ebfa8a087092762edc32
MD5 0d9bd34622e9a49bdc5fde9f091068e3
BLAKE2b-256 414631a2ebb9907a8aae85f4e81760cb6adeae68c1ddb9c320e57c63fe2c4f12

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17e4253434950ddc9a0676dd0c90907638b6998e529fd09a276951b415261698
MD5 e8d161d160172670bbff3a500c33dd0e
BLAKE2b-256 f746ff0162d4fcaafb15f7c2717a3c8e367a16e199639a18a71ad8409fd3aed4

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcc7c2f7dc8293b5086b8884ed511d26c3ad881a7a6dd267c96ee510f0545856
MD5 114d265284bca176e1e5cbce4e1261d2
BLAKE2b-256 405b5643d7e77c070de3610a7abfa6f5d25e2e08c74b7c36539f3fa8d1f66ac6

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa109ef5277bd322bf9ba18e39f9596de021b40a906c144d9660a4ec4d19bd8d
MD5 51da53edcf0ee9a786ee042407ff5698
BLAKE2b-256 d98fe18180aa0725ef728a37d17c93ead781059c70e3ed10e6c70a0d6fbd55c1

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c756926e48c6c1181f24a43bb136b94e5c07c1448b86f675b42d303631d5f454
MD5 b6765306b1b7ac727e46c47970f6d939
BLAKE2b-256 f607123b523ad067129863ec7d54f06840d6394a2410e440877254140d713756

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5300f86998a196d7b876eeb0b481c674af1f2bd96ed5b44ca4b3738a1c27db3e
MD5 b7db96ea7e3a9d8e8b9a32dbd92a0fd8
BLAKE2b-256 7dad5a4d632df4291af692654b32e5e423152728391b19a32d28001e391b9b4a

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74ae519dafbe7f490c8d7f577913c04f53267e8735af1d35d2ad2fbdd46a24fc
MD5 0f806b63fb9b57cdd5d3705000a53ba3
BLAKE2b-256 ffd33b491af87666d71ba114bc649b8261395cd7e005f7a5d2c80f048258bd33

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb70bebc2e5a7fdbd7d9225311462f70f99f94cd7a8b2bf70404d6fe092c0d64
MD5 9e8fdf3e6b751c16f54dd7f7ecee2d0a
BLAKE2b-256 5b33a5a2ce5e84f2f74f61dc8909d841b6cc9ba1964476ea336734e660761cbe

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e011c043c81719e284d82232321b766869b56b6873f2792708f5314f3e4108d7
MD5 1d61fdba378428dddccbf3f3f03906cd
BLAKE2b-256 6a6caf645930bcb0bd8bbb7f93e4a2a64a694d9db846ba1c0ae1ddb8e8d4e245

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 192c96f04d8a090d9ef4d010f896838219f2cdf52c7ba0ee78212c7655a6c51f
MD5 4640e3f0de6c1f54be72ad472f12571f
BLAKE2b-256 0b7525dbbaa7cced4ff91b3ec6beb18e024c0b2cd6fb7685efec069e7123d390

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76a55ecabd11cf6d5dfb92c46491233aa09ac351ea50127e0abe355b2077c636
MD5 4e4f26faba7e67545cfd813f02d6e9ea
BLAKE2b-256 33493aed7105c11d2be7aad9a4b9279ee30f48f13680d493982ff748a80583e3

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd1b4504b893cec88d2d3c534ea659ac00b5e91d49b797e37f6e98fbf926bbe5
MD5 cadd12090c0d8e331f530b3aedfeec21
BLAKE2b-256 44077947d3b140ab245125d172fc67c175a9957a03229ba3fa4b7f1732f90e0d

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e1cb47e4c7bc247738b700cceadc6d015d3f4e1118b56c03bc1c4f19bb314b8
MD5 cfd13dac760a5b980c8d30da443523a3
BLAKE2b-256 4907be0b537a5f5cd31902c7358d533eb93119dfd1a834f3eceeeb7c70f403a9

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd6da5d68871e9f27fb715c47cd886a5325a00f5a7ab0151662215a900be5276
MD5 9260bec417cfaf6decad583d907f8a17
BLAKE2b-256 d186ea733da9fee8e80d754272fc74f151d346c5b572db59ac05a41202acb272

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4478ee60f1bf601da3b9434c5a28a7be5f40df1c872c293cc3143f2d7ef2cbc7
MD5 6727ed62f1d04ed23b9e816746dc1bf0
BLAKE2b-256 b0fd4179622190f43439e29274064fe6c7967f5858c16785cef957f57374c8f2

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1edf4ae700e4064ec1c39ad6b9a5166d809211460289f1321ce796fbb5fb23c
MD5 4bf26d897aaee35aab3dd697460bd7b2
BLAKE2b-256 8bb0f07dbbff6b83861dedd2334845a5b1a05d6f970d72f01a0226070fb49fc5

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d918390013f3e6c7210d723bad9c9862d4f2b579c222871ae7ffd636fa07128b
MD5 ac12518c0ac07913f3d29dc918705e41
BLAKE2b-256 13faddebeffc4e1fa4a3924afa6513821bb35780b0cec217af37111751221b56

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b51813618c3b1b80fcc540be5ed7ec5289f28cc67aba70f1d243110a6cd93de4
MD5 961fce1c8d53e46371f9d5048b2c00db
BLAKE2b-256 5c706acd1381664ebe6a4d88583ac9240104784c8826879a83b75cf63427bac9

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc552b8c6fb2dbb5c083f7efe90456ba9c5144810cb791abfef731e91a2822e4
MD5 b88835d99165938d0108838efa9fa754
BLAKE2b-256 6d2f6478bc66b2f348841cb28665f85faaa73e08a59cb7b96415767847c88b69

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1d649b402254ff96c32cf34ba0a22fc3f6cf6c0402260657b26ba8f9efda2b6
MD5 bdc8b5052b9cbfeab8de2fbc0ae1ec88
BLAKE2b-256 bf3b5928b1bf67d687dd8598c60d2fd3d610d45aa4c1574b6175a1f43bc1758c

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67460d59edd994cf620871c2f780988f64981009acb42b1bcbf8e24d58f89ef
MD5 9c022740cc1eb6b73a63f375b8512df2
BLAKE2b-256 02c448120b69e8c9695c2c9345fd65a774e2b26a48b473506e267ccc527cd97e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9856088eb316edfda3ca23ea2871cec421236e73291eb30cc78470088162f6b9
MD5 462bbe94727b986f1eefd627549e5937
BLAKE2b-256 50fcfe6845f62530aed17e7df7f7124cf32126a11428e25785a1d07ccebcc4e5

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df3859ed8a8757f0812eec912aa3827009b64ebd0da4fe2bcbb95ff786b65912
MD5 95281435b26a09a2c1eea86812394146
BLAKE2b-256 fa0beab233122622c2cbebd894b70b48badfef62aefb043cecf1873b8131fb0e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 64116472d511cb33442eecb69732907acc36f2a519383ac06dfc124ad8916ba0
MD5 e3d19672eee77b9f7e9aa403bb4ffe26
BLAKE2b-256 d1cb9f5fd242e28cbf578f80e95d709d186ee0ad3da01ab47ecb8edad0fcd305

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b7fb92a1e938bc9e3619454048a988c5eb2a9bea466790f8c4068b20d0ddf02
MD5 83f00db45e30f939c046e0d0b0c75b54
BLAKE2b-256 29812d33a826834c22f3b97adc7de0e243d56dd6743373b59378128ba15bc4b5

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fae203f0800a6aa476ff192824bf7887dc62700e7f26c317654117dd36c5b69c
MD5 6a5def3ee061db62ebf21ab9e7fb701b
BLAKE2b-256 b4199f32daf4c660207b8f5a14ae1da4a53c85781a6c32b3d41c2940506fb987

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97da394f93be24c5d96f9d4e4b10ea4f058c8577f7a0f42d302d7aeb1c45c078
MD5 b9d46736a2eb8cf7a4c4ea83c2c7b8a7
BLAKE2b-256 c83b1458db60063d3f93a97606c36a36e5fba6a7bf4c88176ecfd45600f14333

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25a3ed92ee4c479fc404b493a77ed9758c17d33b19905d76fd2877bdf5e96e31
MD5 43aa3808eb5329ec1f60c6f9066264a0
BLAKE2b-256 c5a2b9ec0d2aff98ffece6bcebbd547d21bc637af3526be9d490becc160745ee

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07e4fd1dcdb8637e53dc44e4389afce0a7a67526c1d54ee913fa25af7dbbf282
MD5 8cdea314413225ac73c58ffa775a3b35
BLAKE2b-256 6662d232f6b89c453c11d383c89d75dfbb086e192715794f0df79cbbf1f9088b

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d94c7d15131a68c9b71cf17f00f5e0278cc3dc774c99eac877dee3881244462
MD5 225856901ac95d69c795cff405bf7d3a
BLAKE2b-256 2796c5ef98b337b9cf635e9c8eb8c7968281706f5b1324840abc68575ba952aa

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86b2426eb44ce2d14dbf7ac7202495010e1ef7eb63b3f093af2ef91d1cd24110
MD5 035a043f83fdf03d52e8dd0c56da4722
BLAKE2b-256 831fada22dbf712a17e19c34e615c23b4bcf826e6b4c416c1d934e05e49b7e03

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 881d4802dfce15cc0e519de64dc4d3ded744bbedba4d08d1433e1f74c075001e
MD5 1428cc6d53f174c9ea6361a30989162e
BLAKE2b-256 53998e0b7fcd973ee25fd3d4c42fc6b70e61a4ba280b250b3d3f54ab9554f0d8

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7f07fee45444af34a9a196a3b280100f05cbea632b95f9f7b2f37444ddbd040
MD5 fee3f757c922c511f09ed51b45728d1f
BLAKE2b-256 c6ec1dd6af1c3a719fbb7f037935227359d7b3990176d6eb40baefe1b56d3d8a

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d8b3eda7b3a285e69037d80b3a0c7d0e33b8d912d7daa697aecc73a0690b5457
MD5 2f2446affc618ebb108ac3145582e301
BLAKE2b-256 2c184298e3b3e971ea394c421bdfbc5c56e8d478a74c78f5ac9fcac35d603c8d

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4aa6b31869199573d58dbd9c36a34ba35c9f93e001c41d7960e06c089a4b3f2
MD5 63b9eb0e85947f27fdb8935627620ed2
BLAKE2b-256 a1085ab87e18755e86b058d903331be1b80c9cdf19199a6dcb89c1096c4d4e38

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b9f345cd5fe63a84741e40884126fd37269adbb8d93c25aeaedaf4700ca22d5
MD5 7dc16a97f63f738c418f3c0df3df2dde
BLAKE2b-256 fe79975672e5be59ce174c0c216be3418b405e13d27700cd64fb12dfc3909da0

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51fd1039ef835299498f603b7a84117f8d5947259554e22daff256bfd745a256
MD5 947420aa0ba33afd79620c800b860179
BLAKE2b-256 035e029dd821ad2160c16130e6618c31a9fcbc4e90cc9402331dc3a98c7b16b7

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1e1a5360c6856d71a60ed5ff7d8b46c085b83796456754417310a84d6fc520db
MD5 62e4b7a98f21f69b9252d2452c962755
BLAKE2b-256 e2cebefac07a79ccf2bc05a5b4d83c7d4c66e197a3d2a2eac2836cc5a5a0fe90

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2441270720e77c675526d96ba5d2da245cbce783e8d80d261a1118e7ee0768b0
MD5 470797c5740b0d67000abeb380f23844
BLAKE2b-256 cf3f482b1ea0f0413b387020295701547b5745db38178759f159dc756d736755

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bacbf2475da82e843b71ee16f2c81104fc61ecd0c6f260e17a45d411621c169b
MD5 c44f8b77548f84424e5f19e5e2cc306a
BLAKE2b-256 0dd2d8ed84dae08b576a81c62dc25d36889aab9abc3953af9db70ef5addd00a2

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4412f9f1d69b692d1c3df2f222b34f7e118f68788366817df768f9b17e19fd72
MD5 cd89093ee194dffd48b176845926390d
BLAKE2b-256 e04d2aec56620ba2cef38486083a2e7a0bd3257ec298daa641a93458835c8814

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec68086d73f56361e2f44a89731c5bda69774b46a7ffb26027b2cbe458f9b4a6
MD5 c710787bbe1fa39b92631a499111dcbc
BLAKE2b-256 030a84d60c66c792e977020a00de634fc3d06d1c8a32352385e00c63c13dc959

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d32cb8472ce91bc8e313bb9639a420a5b3109280780bdf3ca90b11a8a3d795f
MD5 8b29e3d7f3825c2f2bc674ce47ab4f07
BLAKE2b-256 8a73925257ad42f62f5e0816ced87fba44e6e0d11ad5b2320ec54c6318d2a58a

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6e75aaee47bb027123917465169a8b9ee6bdcf2a4cefcce3757e4ef82dcefb2
MD5 0fb5ee64efd062bc69818439d71414f9
BLAKE2b-256 45bfa51b774ba2e2b8d5aabecfad4675e72fa16ac7d03d63d1f92adafb03c93c

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04b10c760ff67cd89d2e72785cc080674dfa6c031497538bf21055904262aa37
MD5 982014caf8d6926a00bcac9aef76b440
BLAKE2b-256 058d9a7492b7dda486de1f165601acd10a5a2c32ee2900488e99e638dc987d23

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9594474aeaca18027c9be2c73e278fc34fafc7d247c2db805245548f40502f40
MD5 f95aae5fd462780243a76d4094c8d784
BLAKE2b-256 1b5c70cb4bb67b007048f1384301c6b820ab079e6cd2a205bfbda6f4d6274be1

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebe62c4f589eac6271445ece9828596b0c53141a5e824cac6f4f26eaa519f21d
MD5 64da608092e583e07434ba73e744e2fd
BLAKE2b-256 d5b7b2b7c2a00da7d90f6159442498b255d03984e095c407503609fef1cd5419

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d1e8d4052f66c11d0cf188c719321fb736e066bf16879dbe57c3c8fb85d2749
MD5 2b64b3c72eeea2b6b634ecd610371f7c
BLAKE2b-256 2c70b24c411f53cfae78a63eec06e2c7d868881eefb4a6951ddf782f0c62f697

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 19a97b615f4ab5d0847934445dd07d07eafaa9fb4ca270e8bfecbc9711bd5bc9
MD5 bf0aa59579255d532b7317b531480e9e
BLAKE2b-256 73994f19e4670882da4b2c397d041a7acf5c3bd14a22ae7b14e8706c0a418ce0

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-win32.whl.

File metadata

  • Download URL: rusty_zip-0.1.0a2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 447.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 219dd15afca7582db24fd53b870641cc8c37c2364538ee9d4fe9afcb7314c0de
MD5 56d530fb9d8f77462c9ded05143829c2
BLAKE2b-256 dd0d3e7954331ebbd29939b0a71be79942bdacb13ea7a6f445499ec73ae398e9

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd475522d83652455188507bef84e6185fd342f3aa4cf1f38a2f396975faec5b
MD5 7ebe1439c6a2254452152ad2d1eb82e0
BLAKE2b-256 acaa73d6c9c333ce146ddb37b21fe02f9fd15c13b07eb2e9a988e40ac86a42fb

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f80e53a2bd671a0de4686d31ab56a39d2dc636a6b95629a94452053260f9e8d4
MD5 6123540aa5a2b755c8625fa3524b7cf6
BLAKE2b-256 3dcc035339f9a3715f9427db93ac34b37f568c3a2b243862336ed5d24160074e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c61c1d4fde45ab10de1ae4ae6b0d98f42335c7c899a01de7d7dbb84281a39a9c
MD5 9d237a56aaa1f5c30e1a03793d3179c8
BLAKE2b-256 3a9caf8f817fdcdd7ab5b00527cc58a9358f913adadc1e286999d06851b95ffb

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1eb80539a8df0b3a6b451410238ea49b68c6fcdc35852e5af49858b0a939e77f
MD5 bda96f086fa7683f9176682402d97354
BLAKE2b-256 ac4b5fa1167890338f83f28e1fed3c7acd57e127004665fbec92842a327937f7

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6979b2ef28b8abc47d6e932b9f853dfed55b2e3145bd49d9f2c023248d0c7011
MD5 64dca6168d1df013ded68b349b4afea7
BLAKE2b-256 51cbf5f5f3ee9c36b3cbbd08035031f2e1f3a89414b81f07ea1d12da908ecccd

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37be2e685114aabd84e46fc0103a74a9db4fe0686b156bf97843416f8583b354
MD5 51eb97b014be5474d01f016fa720f0ad
BLAKE2b-256 b32d3459868a81e14c8ec33dd13a35a83ac569f3158e4bece4778f66b0e221f0

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6447a5f097c67513cf99647aeaa798943bdb23355795780740aa2af33f86531
MD5 ad39edf3e3b97d5f058444ef33b17b31
BLAKE2b-256 2a161f57404301bb9096140a70df3fdfc2fdb8e93ce7e4cb228b3ef17fe4d34e

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0b2562aecab1c86cfcc5122d684e90e5e48085330b26b57da89be122b40a582
MD5 8480e1f5774e9d3f4880a415e0dc25f0
BLAKE2b-256 4d18099186b70e940c961dde4ead1954b886cc92cb8dfb8be8be7f2dabdfcb25

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbd31d12951a9ea7c98ac6dc0fc9884af392be052faa88acac26fa43933c6a66
MD5 c50e703ea64c7a46466852f18f5bfa96
BLAKE2b-256 b5fc41ad00f8e00bbc6ff34a8fc21c8ce2c3cfcb2cd18276510b252e10127914

See more details on using hashes here.

File details

Details for the file rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_zip-0.1.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2499be53940710e4de3160574bf7467f6bcdfc9b71b655ee0d2ecb8a173f920a
MD5 21a048eb365e287a1ddf926049c21679
BLAKE2b-256 b020f60fc6afc8bc114cbe6a6a5bf0a41945c8878abf4f4cee71cd4bbee02217

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page