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

# 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")

API Reference

ZipWriter

Constructor

  • ZipWriter(path: str, password: Optional[bytes] = None) - Creates a new ZIP file at the specified path. 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
  • 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.0a1.tar.gz (29.5 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.0a1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (876.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (904.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (954.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (877.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (736.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (876.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (904.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (954.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (878.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (796.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (736.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (876.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (904.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (954.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (878.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl (876.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_i686.whl (903.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl (953.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl (877.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp313-cp313-win_amd64.whl (461.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rusty_zip-0.1.0a1-cp313-cp313-win32.whl (436.3 kB view details)

Uploaded CPython 3.13Windows x86

rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_x86_64.whl (876.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_i686.whl (903.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_armv7l.whl (954.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_aarch64.whl (877.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (702.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (781.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (735.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl (558.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rusty_zip-0.1.0a1-cp313-cp313-macosx_10_12_x86_64.whl (618.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rusty_zip-0.1.0a1-cp312-cp312-win_amd64.whl (462.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rusty_zip-0.1.0a1-cp312-cp312-win32.whl (436.3 kB view details)

Uploaded CPython 3.12Windows x86

rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_x86_64.whl (875.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_i686.whl (903.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_armv7l.whl (954.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_aarch64.whl (877.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (702.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (708.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (735.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl (558.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rusty_zip-0.1.0a1-cp312-cp312-macosx_10_12_x86_64.whl (617.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rusty_zip-0.1.0a1-cp311-cp311-win_amd64.whl (462.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rusty_zip-0.1.0a1-cp311-cp311-win32.whl (435.5 kB view details)

Uploaded CPython 3.11Windows x86

rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_x86_64.whl (877.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_i686.whl (904.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_armv7l.whl (954.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_aarch64.whl (877.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (704.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (795.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (709.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (689.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (736.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl (561.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rusty_zip-0.1.0a1-cp311-cp311-macosx_10_12_x86_64.whl (621.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rusty_zip-0.1.0a1-cp310-cp310-win_amd64.whl (461.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rusty_zip-0.1.0a1-cp310-cp310-win32.whl (435.8 kB view details)

Uploaded CPython 3.10Windows x86

rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_x86_64.whl (877.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_i686.whl (904.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_armv7l.whl (954.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_aarch64.whl (877.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (704.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (796.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (781.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (709.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (736.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rusty_zip-0.1.0a1-cp39-cp39-win_amd64.whl (461.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rusty_zip-0.1.0a1-cp39-cp39-win32.whl (436.0 kB view details)

Uploaded CPython 3.9Windows x86

rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_x86_64.whl (877.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_i686.whl (905.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_armv7l.whl (955.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_aarch64.whl (878.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (704.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (796.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (709.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (737.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for rusty_zip-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 945c7a3547714760e3a4d8303f9b9af4018f5b5a39e304a5cba5c53fb502567d
MD5 65620b59e8e708148d0dff17fe697dab
BLAKE2b-256 9b4a8ebc4fc4081c2f529c4c2ae3fbf83aa9b028fb1d399910e842d7c56f4e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33ba14f4b6ac6f27e7363af1aafcc01fb30a9b56009e60ad0689616856802bb6
MD5 d8a2c70d3aa85fb3d2acaa5769d0acca
BLAKE2b-256 2276b41a38dcd924cde86c822d5b97b0d394be3a325edc5d808bbd5ebded71d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 021ac8fb962d88f1fd797ecabd110756c67f4f3feaabce1591eb11a09b6aa884
MD5 33846f20d56028175c7d16e5ad843b5f
BLAKE2b-256 1cdc4fde9e3e202ebc3425c2f0eb4eb93a028de1ccb2c7d3e276e346b6195a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa3843e979ccb07630303b7c480d8578ec29e4bca8d092956ad77aa1f73f7423
MD5 4fc2b54c7b2d3e40a1991b6c553e83e9
BLAKE2b-256 13a038cf51db5e8bc23e642a8e53880cd6a3033788af96f8951faf7573995af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 298f120c08bb79e440ec496300b150bcc65f01197ae25fbcfea544f68d0c4b79
MD5 008ff246642bb1b0ae62dbffbe0237cf
BLAKE2b-256 64eb19fe7d89e01903edcb654ff8c911de3db5600cf2348f88bcd4dfa7a98f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eee623833f5cf417b9612f3d0801c3d39ffb293cdd48263662e70bdfffe8198
MD5 d404696191b8a62dc598afe3074fc222
BLAKE2b-256 b6374d9ccb7335bf88112f97e40a8ac4968509c10f6bc297da620ab8875759f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdeef773a09989142db9939629422fd7404717725c919607ca52579687bddf2b
MD5 06fc3a8b95cd37eeb832c2566e567747
BLAKE2b-256 65e181e32d589b020d1343e7e3d81929585e9f3ca5e593b180073cafc38f801f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c25241c093bbc90e80d65f48a8527f302a595494b64e840fb9b87c4cbbc916e
MD5 94c83d8c8e8407eb68c5baaaf8fa52fb
BLAKE2b-256 3b3fd33c9356b673d7ddd7ce7dc7c9e8919ec0a59076778686313e35dceaf83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bc81a9f8ecca1dfb5fd889bb9af4d5d39acc7e04c2f47d55d0be26137d79ef0
MD5 cc2c2b5ade188a998c6c02ac8a67d4a5
BLAKE2b-256 0c691a69da54d3dcff9fa7936c61462e80944e2fec4ef56eedb693f7e2789c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ff360f778efb495fdba06403d1e96034feee8a241562da6c1ad73af347417d1
MD5 05c177428513bd36b2f11672f206e916
BLAKE2b-256 6a7af8e3aedd627f439ea88379555f80517ef5f1c5d75cd4ef1574d59a1e5150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66fdf00bb83dd613bf0f9551d9dfd965a1b597aa8a0e18a113d0463058380cc1
MD5 4d2f60a80dea64f56607f0ef371186f6
BLAKE2b-256 3869d1b7af65cc4fa67e5da3821703e1d591e8699090702bb67879f652192f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9321e8234ad229148bea941cef970d1610f4e3b8b19ca9d067ec6b7d028bac45
MD5 50b9919e5ea0bea49018841085309e15
BLAKE2b-256 a819d9cdae849c07fbca47ca582dcdc56a97126f9b6d0d2541d92b53a938f0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a323564c2696693252e22d039e12627c8b3a073788712bbf579dc4de3f770a6a
MD5 9ebf0eb1f44e1e2be48e6b27f10e71df
BLAKE2b-256 c0e9e7dbec45f8f534fbbcd3ea68088c8d0d43cdfc4deec58f77f74405b6c9dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c65befdc02031bcb2f0e344e7732072c139ce93dc8d1ab3bc283453fd1ccf52
MD5 137a84fdaecbf61fddd21605f5aac8fb
BLAKE2b-256 806d04257caedde557bc91fb68e679efac4d21f2cf330922608aeec0c11bab62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68313cf2e24b577493a75eebc5e0a00636cacbb08703c8233bfac48150a551af
MD5 eaeabf8520621f43ff82f829afbf04ae
BLAKE2b-256 ddd9c7316967d7f7f9eb19608ce00ab3e2a4a8a72d1c156455bc7f13e27cf05b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2890e00daa967bff39862568e0d6bb2f65c7106b1ded3b99b59e84654fc17339
MD5 5a59d482e4da928bae7510040a953fd7
BLAKE2b-256 b9c488efc7e2cf00fafea6da35f014d3c275899eac71df807ac0c48eacfe29dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e703938f0f7bb23c566507b7694f5e539f04966fa9fb647f02e7155209b7b9d
MD5 78d2492d10c6e13d876fbb9a868b5e8a
BLAKE2b-256 cac50c158b3ca38c31fd33c63c9b73a0b1ff86476cf45f2973de73ecc117fea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f0672fb7064498303c0137ac08ab27f9f2bb37fbbcd2de75357bdfcb4f2c585
MD5 3c2b33c8cf9461bd016a78aa3fd21975
BLAKE2b-256 66892e7b66c69f5df992f8a6b361d33900f6571dc148052fbbdee00397e1165a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ebb7f248731ee04b4f7891e37c8a3bc2e94194c5d3df0548ea7ddfe6de757c6
MD5 b82207003126684872143620de11ef41
BLAKE2b-256 f76f37c93a6f118e224c0a3b20dd89fcb2b5e1b87e2dd35bd09da06c28a600ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b05ad8ae7f94dc4a5958a6a5aab2f0fd5697b0f859bdd0499e30170475971ef
MD5 2e2ea7463108c4bf6a7fe1383aa13591
BLAKE2b-256 1d4aab7392a3b8d907fd8ac17e81288e75225c3b33dea7ecce1c7c69b14a202e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4d1ab0dfaa21fae81540bba825456967a214a0f980a85e5548c223f0d087104
MD5 f8fb01ea0beb6ae7d2a8cebb919de3a1
BLAKE2b-256 514dc78296c914204420b6c1f8800e0eff71689499cd67413800313ffebbf913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f2aab921faf8213bbaf4499d18327bf8dce4d15219cabc7040a137db6d76f25
MD5 e1d8211831a00a9d83ae60762cae74d5
BLAKE2b-256 719bb8c94eafb11916ec16875dab0024811d8c99a107aeff8f21817c84f9c88b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a026c12c197cf3b756dcf54eb5a64cbaa595e4401f78700b532b70026bde125
MD5 111fdff5ce5a2d8590400684fb3ccf5c
BLAKE2b-256 cbce48dc4c5dd677ff0f4f40571c7cd6aa16ebf71f619b6217496ff1bfed4984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d5c58b4bc132340a2d6a1e834e092c21042e703d24e80663052d87ea0583511
MD5 80c0f5df85d1ecb32fc1057b8962c4fb
BLAKE2b-256 90e8979e36857832d7d7309d38755bd282ab0b7e27c9e1e3b0f7ee7f830463b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db1c2b22193c224d4f88a0cd40d6debe10bcb4f57c5dd52c647af9d2874fb1c0
MD5 c603d82bdfd23135c83f13e79d1b0369
BLAKE2b-256 6705332f887443c6b7f58b67f310fdb92bd33043fba547f74b3344331897610c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f25a78a52dbb43d46ed2b11384dfeb5f2f9aa5e5bb61671e2b0cfc8cb5c3fa9d
MD5 1ab4b5d23163d2851363e32b882ab9c8
BLAKE2b-256 fe70ab15a5760d550cf54a8d797182bd9df4aedca873ebd09056566ac53eac21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e216fc95614f8196811f472d066ec85878387038a94f964c163aaa9efec18114
MD5 7c684e6d35d7311b2746725172d8a2a8
BLAKE2b-256 e38bf1c50572fcb93ea192f64bcc0b3b8d0979b3565053b750db8cbea879f677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d59ac5bf14ce9a80b1e0b94f25f9efa5b178283634e0803a3922ecf1c298dac
MD5 43bd0d93352c03fa8e799c84464b26b7
BLAKE2b-256 2bf021aaddb4273eaf1f5fb74db6606104b0ebecbe4d5fe507d46a1c72352e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec55ce93ef101827ebe49821901ec03f36058f3d89579bfba7c693b172b38f1d
MD5 6e52f49789107db00b415eb108dff98c
BLAKE2b-256 b05c46cb5fb716947b159107ffe846bff9540c8fc6c8c385806898fe847ba9dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aabe86e6fd3569be44235b177c56e3e2be7cf960db9b72c88fd57a6438d1b91
MD5 ad46851c0f2500de6a33087de1113e18
BLAKE2b-256 a678d38423a33249af8cd3b08b72c062020ab8159d49d3e95a733e03f3ef2e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f09ddd78422b90e21000c0a56054c0b1f3019234b0b1981aa50ff2c070181c5c
MD5 0f37908ec4caa9db91eef8d4511289d0
BLAKE2b-256 f6fc7220d51691a993dcda886f6e4275bcebf74127c95829471789ce4a601e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 feb86097aeb6d568bb36ae9a498bc71a41e0674ffc82b05a262f20fbc581fd3d
MD5 eb4d2af395fe96f92087a4c844004bae
BLAKE2b-256 15924829396ba6405e4e53d6b935a2f3ff792800f188f3d3a60aac491b67fe60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0798e7df7cc08825f73e9a6c7a842bbcddd26ad19a02d2d3038fe878fb5802e1
MD5 ad59dff5a89fd281cbce0fc17326bdb2
BLAKE2b-256 71e0078843e3da1f57f2ad7ed21d3be1be578284735e23b10fb49467f73ad877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e8b80ff609e6c7f108e15709710f16af9cdf4ac53ac3b40acb934c02dc6e453
MD5 ff3f6e46a5ab5cdd2391ed1511495f23
BLAKE2b-256 39a776ac198c97eb839015fcb8f764b15651908a73ac21cfcef6f43b0e447d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17ef48ef5fd55fae7f53fdc082be52aef64b5777649dc614afb99fe1319e2b71
MD5 89e640af32fdc519401466323321020d
BLAKE2b-256 e5f01bb7e1610b7951fbac02bc744c631c95df1d1cec382260fc1b793ae1a870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23a47adfab953361f7c944d69dce3cdba6c705b33f8e7c14408af8639766b205
MD5 b1450ad5dff0497bc5805358e0db1cdd
BLAKE2b-256 706cf86e9547d5b5f0f9a24712fae498d2053b1b85497c104d1c58bb01d133d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7045b8dd0e63f243dd47f7d698bfeccccb64bba12d7fdbd0b9be4e138de3b931
MD5 a7e7d5999cbda256f6be92c0f51d028c
BLAKE2b-256 a2936e88e1872ff36c1811e7e4bf3223c301726cea7245418ed90ab2b06ba1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f0845191d669aa76608bc52d5242c5a93d88ebc9430d2301a57102af6aa270f6
MD5 f008a50d0bff505916978226d92bbcfb
BLAKE2b-256 a3447f02eddb9a001203962a952bd41517b503095d116a63726cbdd1c361454f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c980a66dca66244573f0c7468ffbe8299640ba1bda7e61bafa50f68071d3f45c
MD5 b571df49d257c981540bedfa927c7ac5
BLAKE2b-256 eadca48e33c5d1c87eedac9fe1a357682d54757ddefd1ee41eed958b36fe8e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b3289d7e27e623ed2782cdb1b327697f6fcf6e186beaa30583bf2b42873c487
MD5 64cb4c59f0d2f9f7ea50d86948d75118
BLAKE2b-256 fe640b4a1f598087aad7211e8a5e428d0fda2a61c16a3adf0daa7ffc1a488035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b5c11b27ecb1597aaadccfb0b6fd8efbc011b6272e78be983bcab90743bee6a
MD5 c63d0d07c10376b3ea286d04587b6a97
BLAKE2b-256 a3dd84aecb5aed620414910c45aa1d7923b8ad68867af2152c8700525698fda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8309348cdb4d47edad36090f328cae55dd746d1de68c6d3578ae71acfcd46c88
MD5 6bc3e2c680cbb3e0977e25f8ffbf2c1f
BLAKE2b-256 b424e1f21c9920e3b4de8a0c80b50c1d0f917a339bee0030f37491253973696b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07ed4ce73aa336b0294c31505c46b60946dcb96f2276fd0781c69354041780a0
MD5 7e2f0ce1e9e023441267e6e5657dcae8
BLAKE2b-256 88e4b01f066539469af5a4da2a5c83cb1827c2cfa1312c09692bf8a17cd16181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a7ff6fc9f8e61c02189b22ec934cadd4472d52c48c0f48f255efda9522592c6
MD5 9debd5b403d898c986b0ddb99593498c
BLAKE2b-256 4492c6fb0d4fe77a4a93cefd7db7dc9fbf0ce540783ad454ff74da04cb704a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fe31a95965b405d6f46842f2ba955ad7c173864fe811cc55e705cbac993ce2e
MD5 0ead13c3306fd85b79399e1ecd3abc39
BLAKE2b-256 01ff69ad92455924a6239ac8380cdb30d2a940a0edc5fc919309222d3de1c38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 203a854e1928bb923a62a222f4ebccc2d970dfabedbe715d17427f9c0a278ac8
MD5 84f471e1ef0ed27b22d63fbbfdd7c407
BLAKE2b-256 077165683620c93e2c9efb2ba524bd4d65ef032ea32f081cbb2f98db64436768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e23f17138c4b6c2b1fb6626b3767b1a58fb984bf416d97260edaa95cd6d75beb
MD5 8d61850c0484d18ce33533baa3846a8b
BLAKE2b-256 4a5aefbf714480c114c489e86c05a541ab0ec8cff6401d88ec8f7e3bc0aaba04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53f97c56991eed398be05174e2d902e7062d2b8174b61fee4bdee69839fe187f
MD5 bd74730729e56bb644d2e422d7e04868
BLAKE2b-256 7adbf04a582f4c88171623fe0962fc4bae97b0b72c9fbc006fde9d2aa08aa8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bab9103174db1153255c177c70cd0edba7d9a99f28c418d14821e6d14298e597
MD5 2bf512fecb15f4294058293b7d18cd91
BLAKE2b-256 9c9ce4716b3ff2782ebc0f89b0e5fe0a7b450f98f73b10a5815c68685a9ab12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 322d29fdea151627e9a1c3e40a6a4d8dc4265bacb92387e6b40b463b4b499886
MD5 d55b238be793dcf943870d0d60444c52
BLAKE2b-256 e9416a29fb38f339ff17270ca153d70ba124abc6f0fbdfa1ce9a3911ba3d7730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d5043e92ab4e54cd301a40284bd5cf92ff089346c73e57b536c9c9688795252
MD5 c8f3167b6b844880a32ce940bcb48bbb
BLAKE2b-256 d41d32556029e4ff56ebb230e7b8f21fc6ecb6411daf7422218efa111a33dab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cbb6830b7e753b3c95e88ee5a769b2bad17f0e6c5889e5ef637b2bc6f8ebd65c
MD5 50d8bd5a14a8c482c1eda522e55e2ebb
BLAKE2b-256 86485a8e2012969dad248248482e38bf7fb836f0ec692bc37b90075b987136c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d2224aa9c5dbdad034c5643944c7f9cb71bd85072608a1da6383c71f94fe7658
MD5 7aa782b252fa5aaa36958463b9d691e8
BLAKE2b-256 994cc5da07ff8f733bda8c88dbc23475d094bc1312d8f567029f17ce7919f2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04a88d35e3c60212c390ef9cf16dee07e50ce546e775bdbfd635b654e3750428
MD5 471129119549f4958774ab8fe9aa6708
BLAKE2b-256 c3bed315d41f5b2d0296ac56d6f0f0ecc6252c9654cf6e672ce516973bf76a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b84b071e40fbbfc109a566305ad40164a98961d078118bbeb2a12c3b62a0423d
MD5 ee30e78a4f7bdecd04ce247b93f9271c
BLAKE2b-256 1117e705d47e1c1de1065a16a88ab35a761e563f5ff8acc6c32b553470108e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e332498919aa274fe23c5c16f3d0fa6d1cd4442733b48bcbe91fcaf16d007c82
MD5 862a1b8cc8aba0af99acb8135c65c247
BLAKE2b-256 78539f30154e6e14111bb936829a0f71fdf4d5660c3183b8e5960b58bcadc98e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 caeded9cefd66861c33c79479d240ce5e1fda764c1c411088d608ed4b3744ef7
MD5 8438cf7e51e5da923b795333fc9e5270
BLAKE2b-256 9f654854c6f2f331c3788d539e16621368f7e085242a42be6103a784a18b98e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ce271a34c9dab6b7bfb3b5df012799254fa375f96894d667de19e29bcc0324d
MD5 345f72b37f07a58bb3e3259e91c64313
BLAKE2b-256 ac5e3760bd6ef2d92e4e86d4bb9108f394d53b4d7a3db192625f2a4ce8452d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 354efd31b274a36ce6b32c497d8819b0b3432d352be9a35baeb930b1af49df81
MD5 a130efcff3a323612440125dfb65ad27
BLAKE2b-256 fdea7e171c44f8fa2cc7d63f8fc7553302f3fa15002647959d268289e16f0423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b1b19162ef8a0d0defd11116609bbc180abc11b85b97db294185d930593370f
MD5 e4daa2ebaee727bf862c5cd0bd254eab
BLAKE2b-256 ee71c2871ec121ea4d5dd9ca4b680b8011ddb8c19cf1f9751fd5227a43932b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d82c7d97785646e879bcf5270197555b0c659687f8f41467b845751951a3e923
MD5 041d52eebe90dfbd0ce1da2c64229fc6
BLAKE2b-256 721e19e67dc80594db4330314ea35a46daee0d910c18f564618c44460725f03f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1be5edaef631aa9948fe036475639eed7a1ac516b803d78ff899497358c8b1b1
MD5 bd15e8637636fbae0e20e34e65c79bae
BLAKE2b-256 47caed68c77f2f9ecdd15a9fbf1ef4bbb73734cb787bf0159974b0d09586d08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a89f928b59ca432b067e1248f7a361ad586467048404cec45725c99f0169b7d
MD5 697e9afb0b6045356f6d5a6b33ea2ab7
BLAKE2b-256 345f5d4739c3a662a000a84f5ed083925bf137ab8ecc75a98928c36740b64cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f94c93a4eccad6c7d045111188db9e1bbcfa42ecb8b5f5be2f1f70b0799955b3
MD5 cd5653d0cd34b97d144a3bec0b703976
BLAKE2b-256 dae6cf8641e536197c68622f3f6a162d29332c85dc9cadcb78e833acf74215a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eda829b42a99942765fe8dae08b2036d850d47f8f65068799772ad85e3147920
MD5 78495401965c76f47afeefd12c5bd2b7
BLAKE2b-256 b4b924db0edb0c7ad29c29eb68568de0d28a48adce1ec55d2fbaa95635281066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2b13790ee53a8e80a4b64f9b63e4d1883f6a7a960a7faffefe8095bc402aa13
MD5 bc3936063a6a6cbfe25cc9b7536ffc94
BLAKE2b-256 9595d9ab39a0bb9a0f2acc30c45b9183814418e9e099f75ec9f0ccef1987ca57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c2e8d0bd3fa0bbb754d17a00a9a6c2be76c6d0b9cd6408f2ad744f1e9b8442ca
MD5 0bbe11433a7ecf7443bfcbaa5fe5560e
BLAKE2b-256 cab07c4dfcf9b97a50d49f7e0e2a692d7faf3b52b32b516450847757b173eca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94cb21111973bf9ee6f9a8f613de4a50bedf50a9bb9e0072dd9c510fff8a2fbd
MD5 6cdfaa7bfaca1537da01c99af7af7201
BLAKE2b-256 3b4835e9d794000b03a25c3e2a4ea304d7ecfaff5bfa42a9f17141dbcf49090e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b39ff750bb033544185f4c729a30ded534f3944320033b35534a0405542b1ec5
MD5 3d180ccc4c1b581b67f7d2eb444b53b4
BLAKE2b-256 250fe019c9cc99c0150b4ab3a27cfd64cc1be10ee6991a590156364b588420d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30d243e29a82c0e9c868934b6f10e76c6b7c6f795f60f26b574c7fd45d9fd1ff
MD5 59b1024e33e81e05e341679008bc6d59
BLAKE2b-256 47f816935e63339d1f61f9390de3d5986354f31f98505aa62c33be098137bc6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 405ad091172cdc591c8ad050da52627a4548389d7bd8b8c5d619d6659938696d
MD5 9cd961eb544865b88c5a25a4727399f1
BLAKE2b-256 2536a5c424b198a41d3689ef81b23c7f48f78fe3402bd3bf4f152ccadb895c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a8878b29b43418fd9eb4adedf9b135752e6caeb707fb5d14b8d88a244f19583
MD5 07ecce5be801614e30d55a3e7046d1a5
BLAKE2b-256 d9594a6a6b7e136b37a0b07470acaddb41a6a2a4a60870244cc97ef3b3cb4043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f2fa343bcb8a1e34b7246ec3a8aed9f8eafc60a69978ba15c85a1cb9f404d4e
MD5 e0284a1bc41e9fb4ce93154b26ade4d5
BLAKE2b-256 31d3443a6375d05acffa6cc55179647a3ee3920b91a0340366074e01b883d6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6638f1c000ff680287c3fbb823cffa4787086a256662dd139254d51c513eed37
MD5 6af12ce8524a4a940bb7541255a11b6c
BLAKE2b-256 eeaf6a6f9154bc6c98904a3c252a9a24dfa3e4e00fa9a414d5f9172cfbe96bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06d7fb1871e8057b4d2d4f94781f81afdd7fb19eb4b9abfc711e83226f46e070
MD5 128a3142958c1ce186cd99aaf42e8b43
BLAKE2b-256 da278ed3d2e30551f5e8886d4bc4b0523192280ee5548bd52938833e0c4fb732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88fe790c77abf4475ffb7a4116c1bdc61aeec599acecc56b2b0ae458256240c1
MD5 02ce59802008ca26225482858a4f44dd
BLAKE2b-256 69e5f25cd7ef95921a7cc866797dd839418055c0f47f3fd2f71235f37f2827bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c8effb7df60c089799eb88a6fba54bd327f0978f96de63090a0ef3ba45ba9af
MD5 9a8a92c2350abf4d8c5b21f057ed793d
BLAKE2b-256 9aac7205a84f21f6d75ac37a52d45a255aa91238b561d0f6148d7ec14cb4d059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae3501dedd82cdf0d5e4115584c80d0cbd91d8b99350a16415e1a236b153e834
MD5 e6359c6873cd367daefeed4ae1745c3c
BLAKE2b-256 f1f2442cdc9713414c4b15bec13dc479ffe1f2b00f586bc871ce5773ffa1fc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf80bff91d3dfbfffb0d8c33bb2612b23f066d24cdabb7a315b9354f251c0340
MD5 c11156be84ecfeea55e70834d0cb6ae7
BLAKE2b-256 60b93ef79bf62d7eeb4097b6fcfcbdf7d0cbfaeed416962d8f4e47144d12ca7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a60934eabdc07eb7c091571900a5906285f4357f529eecc8417338b2eebb7d8
MD5 8476ce05a8d642872180b8309af70342
BLAKE2b-256 392d0f9462ecff03d674386cdde23ec273c37fc8e7ebf640b34a93f9a5a4f117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c56a8383fa68881ce29377a09298b533c6eb31c1eb689643799b49058272ac7
MD5 e5c0807f903590bd383b67dfd99b83e7
BLAKE2b-256 e04ddacabc18e5936406c9da053e1d150ea1fbf4d692d8e4addb628a977ea4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0aeb2f8f7b1c62707e360e2662eb7a515566f94ab895e0391a5eebf95c84a6a
MD5 243a3c4df6f3bf9f027b67c00a276884
BLAKE2b-256 009554e8af682b1899d8f4e50e5ba2c8c2231391aebf2ca789da0a5874b1df31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e02e8711caa2466f38d2c89e962aea84c5fbd8d4c04efbc518f39f50fbb8119f
MD5 fc17fa487dce926b47ce79ce66a8aeb7
BLAKE2b-256 2d4b06b3011ee9e43801a31568d56b420e9bea4d885217bef4d1cfc21b468594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a622fbbe8ba24f694c9dd3dba6b9df437c2884a6457eadfc77bc01d86cb48192
MD5 c0f686750a2222ce471c11c0ea53c187
BLAKE2b-256 8fdb487fd356aa2eae7bf5692aaceda911afdc76110d4d2853b40472283bfde6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2be881903987b6a40222a4819a4e8e3e08311cb19eab8f7425c626e90bfa801d
MD5 e187f005e98613d38d69938f6fc8ec27
BLAKE2b-256 92321ae8fda67f5e051df7cb4dbd9b7b0d80fa6edfc3a4cb95d89d7ab401e9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bb5d4c49e1514788f7efa6ef2c53b36e4d509146a3e72f78a8cec46e8d2801d
MD5 908911854cc1560fb5743cf5fbbd96f1
BLAKE2b-256 93cb0cd7dbd7e86c83c5956c727a228029e6ecbfce3fedaa9a2a9dfedbe51e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7765ea5d1e7643e1a880afebd567d37786a64f70f7c2c0a4fc11e94be4fac0d
MD5 3905d85206f877c04cd31692bfe8a356
BLAKE2b-256 0ad302629f8dcf0da7ffd19ddce93d982cadcc3f405e8739bd241ac1784c9b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ad0c7a2b85814b1bdcca46719e3da5651a56b8c40aa6a7146b7add91e024674
MD5 9cbe0b50ac3dbea41bf21893fd6ea3ba
BLAKE2b-256 9060360866e00e88056778599c38289f981f471863d5b1260cbf5fea4999d05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e96a9b438b38cbe50b9f3baafc2042f979881d5e6f54628ad83580d213b3971
MD5 798a68cc98f9d760c0cb1438868bbf63
BLAKE2b-256 dea4d09e8a5d43b1c527bf61616b0272cfc51d9c6e9a047217152cb8733d3528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8677564b0f74bc03e745d50e1dcd09fdc7e2ace11a452ae9825d5d2a77e8a333
MD5 9e80101f2ce34374b0707906d47ee10d
BLAKE2b-256 7a95b6ddbdb946c9cb477a43a250ed3f7cf63c41464deb8e3a96bc64fb3ca570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4509868a470e9f5825816f201fa1142ad59b226d17108217951645e5e72f6df0
MD5 f60e62ebc1c83f36b699d668a5db1619
BLAKE2b-256 ef53a4598165691465c44c3a1bade330adfcd583bd2bf5620aff33e80467c1bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 15f4abc2d93df126049949cfacb5c622c8267c23a8d020eafa8a688106a0b359
MD5 749d0ed241835ccf6ef8da6307e1418d
BLAKE2b-256 ab7b2a8125da415d1ce88c742d486f3e7a5fef8efd8e014a399ef4c75a9eb39e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rusty_zip-0.1.0a1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 436.0 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.0a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e078aba5a23102e45cbfbf2f6cf5e5e947d69470ba95968cb31c60c239f74659
MD5 8583590a899fc45d78eedc09ecfe2f67
BLAKE2b-256 fac24cff28a41ee64991c4221187bf8e2553422dddfc387f479f1186a15d3094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c192fc339cc5faba2ef8a9e76622293f99e09e4b3553f827b1718a9b02ac3957
MD5 cdfe8c7eb59d19bba6757621f3b974c8
BLAKE2b-256 8f7b7dfc5db28ef36634da71e25e339a17e342770e5ed74f4cc224645cf76520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1250ee22aef6c18978211cbbe85f5a6866e606925e76f3a85ab3b7a7451de70
MD5 35d856e9effebdb1fa3b2d855e50843a
BLAKE2b-256 660599791b3ab858d2933bfb352b140ea89846bd34d556066520c42038705386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db9fd16875aad5b2250eaf73e168c79de9a7f20bd8b88819f71a043f4ae959ed
MD5 72dc90f06a57dde7fa063e290b51f11d
BLAKE2b-256 9b41f0c4b9bf3480255f37c689d40934c31f53458640d7dddd4f220b015bd260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9bb7adc0968207b63589f2d6cb4c1f0e009d0accabf97eb11fcefa3ec793e55
MD5 5e2ce39aef1c39c3d570f21286153a65
BLAKE2b-256 28ef4c0a30eed4dc25b24ca9bf2f30487f8751cd53a89e1d2be11edf65ef0863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 867f0fc234fb215375527fb45a1f87746baab87c8b196ce3321ffdb084ea53ae
MD5 993134cdcac8c63aa4fd862fe8f8ba63
BLAKE2b-256 f15e6b6f389dc4343202091b913a8175d495ebd74efd8edd38e8a89f8afc4345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79e14752a11e5401fcf10d1f440dcc20718c20474db110c58368d7cc9ebe6487
MD5 d0e4e8e88510d5980e9e265e6504e7af
BLAKE2b-256 c278f3e6648bd27bc0f0325cb967ec2842737365c9145095f24dcc2db22c0d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c184f13a469fe6be2ff4f03162028d167bdf55eaeb85beecd47705289fd97b3
MD5 268a6539ada68a339b0189e650b0e2d5
BLAKE2b-256 b09e2c38deecc0f25fd78b21eac9b4b75edf9a32ed08e9045929ac9d4f81b406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34cb0bef62725afad9ad18e4406ff22d55cb7fc77e23c3f1997a1692864b8da4
MD5 a53b0ea21e1254f93ab78a4f3f7b3413
BLAKE2b-256 ca4768467177f4efff7c2278fdd43134039b38a6dbaa06313ff95f817ceed937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dc187363bca63642fa2de2b4f166abae4c7e4245ad26aa324f9c22395884232
MD5 1a71af342ccb391820eadc067f25f152
BLAKE2b-256 b9ce7f80337929325fd10412c1865e8b39c27ae44947ea094017d698055ec404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rusty_zip-0.1.0a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 babe54eeceb7152af5cfb17e5c8370570ef1c4ea5b5b592fd1c6b0c024bbc8bf
MD5 c5792ceacc8dc9a4d65bf1ffc0537c44
BLAKE2b-256 4a00bca6e6ffc4fe7969685d17969e6d863c4271a5023e9e30cbc2a636b35811

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