Skip to main content

A wrapper based on bit7z.

Project description

pybit7z

A wrapper based on bit7z.

Documentation License SS Badge

CI CD Renovate Semantic Release codecov

Release PyPI PyPI - Python Version

pre-commit clang-format cmake-format codespell markdownlint shellcheck

Installation

Package-built has uploaded to pypi and just install with the command:

pip install pybit7z

Example

Extract Files from an Archive

import pybit7z

try:
    with pybit7z.lib7zip_context() as lib:
        extractor = pybit7z.BitFileExtractor(lib, pybit7z.FormatSevenZip)
        extractor.extract("path/to/archive.7z", "out/dir/")

        # Extracting a specific file inside an archive
        extractor.extract_matching("path/to/archive.7z", "file.pdf", "out/dir/")

        # Extracting the first file of an archive to a buffer
        buffer: bytes = extractor.extract("path/to/archive.7z")

        # Extracting an encrypted archive
        extractor.set_password("password")
        extractor.extract("path/to/another/archive.7z", "out/dir/")
except pybit7z.BitException as e:
    ... # handle the exception

Work on a single archive:

import pybit7z

try:
    with pybit7z.lib7zip_context() as lib:
        # Opening the archive
        archive = pybit7z.BitArchiveReader(lib, "path/to/archive.gz", pybit7z.FormatGZip)

        # Testing the archive
        archive.test()

        # Extracting the archive
        archive.extract_to("out/dir/")
except pybit7z.BitException as e:
    ... # handle the exception

Compress Files into an Archive

import pybit7z

try:
    with pybit7z.lib7zip_context() as lib:
        compressor = pybit7z.BitFileCompressor(lib, pybit7z.FormatSevenZip)

        files = ["path/to/file1.jpg", "path/to/file2.pdf"]

        # Creating a simple zip archive
        compressor.compress(files, "output_archive.zip")

        # Creating a zip archive with a custom directory structure
        files_map: dict[str, str] = {
            "path/to/file1.jpg": "alias/path/file1.jpg",
            "path/to/file2.pdf": "alias/path/file2.pdf"
        }
        compressor.compress(files_map, "output_archive2.zip")

        # Compressing a directory
        compressor.compress_directory("dir/path/", "dir_archive.zip")

        # Creating an encrypted zip archive of two files
        compressor.set_password("password")
        compressor.compress_files(files, "protected_archive.zip")

        # Updating an existing zip archive
        compressor.set_update_mode(pybit7z.UpdateMode.Append)
        compressor.compress_files(files, "existing_archive.zip")

        # Compressing a single file into a buffer
        compressor2 = pybit7z.BitFileCompressor(lib, pybit7z.FormatBZip2)
        buffer: bytes = compressor2.compress_file(files[0])
except pybit7z.BitException as e:
    ... # handle the exception

Work on a single archive:

import pybit7z

try:
    with pybit7z.lib7zip_context() as lib:
        archive = pybit7z.BitArchiveWriter(lib, pybit7z.FormatSevenZip)

        # Adding the items to be compressed (no compression is performed here)
        archive.add_file("path/to/file.txt")
        archive.add_directory("path/to/dir/")

        # Compressing the added items to the output archive
        archive.compress_to("output.7z")
except pybit7z.BitException as e:
    ... # handle the exception

Read Archive Metadata

import pybit7z

try:
    with pybit7z.lib7zip_context() as lib:
        arc = pybit7z.BitArchiveReader(lib, "archive.7z", pybit7z.FormatSevenZip)

        # Printing archive metadata
        print("Archive properties:",
            "\n  Items count: "   , arc.items_count()
            "\n  Folders count: " , arc.folders_count()
            "\n  Files count: "   , arc.files_count()
            "\n  Size: "          , arc.size()
            "\n  Packed size: "   , arc.pack_size())

        # Printing the metadata of the archived items
        print("Archived items")
        for item in arc:
            print("    Item index: "    , item.index(),
                "\n    Name: "          , item.name(),
                "\n    Extension: "     , item.extension(),
                "\n    Path: "          , item.path(),
                "\n    IsDir: "         , item.is_dir(),
                "\n    Size: "          , item.size(),
                "\n    Packed size: "   , item.pack_size(),
                "\n    CRC: "           , item.crc())
except pybit7z.BitException as e:
    ... # handle the exception

A complete API reference is available in the documentation.

License

Apache Software License, for more details, see the LICENSE file.

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

pybit7z-0.3.2.tar.gz (77.6 kB view details)

Uploaded Source

Built Distributions

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

pybit7z-0.3.2-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybit7z-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybit7z-0.3.2-pp39-pypy39_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybit7z-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybit7z-0.3.2-pp38-pypy38_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybit7z-0.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybit7z-0.3.2-cp313-cp313-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows ARM64

pybit7z-0.3.2-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pybit7z-0.3.2-cp313-cp313-win32.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86

pybit7z-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybit7z-0.3.2-cp313-cp313-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

pybit7z-0.3.2-cp312-cp312-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows ARM64

pybit7z-0.3.2-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pybit7z-0.3.2-cp312-cp312-win32.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86

pybit7z-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybit7z-0.3.2-cp312-cp312-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

pybit7z-0.3.2-cp311-cp311-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows ARM64

pybit7z-0.3.2-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pybit7z-0.3.2-cp311-cp311-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

pybit7z-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybit7z-0.3.2-cp311-cp311-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pybit7z-0.3.2-cp310-cp310-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows ARM64

pybit7z-0.3.2-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pybit7z-0.3.2-cp310-cp310-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

pybit7z-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybit7z-0.3.2-cp310-cp310-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pybit7z-0.3.2-cp39-cp39-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows ARM64

pybit7z-0.3.2-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pybit7z-0.3.2-cp39-cp39-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

pybit7z-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybit7z-0.3.2-cp39-cp39-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pybit7z-0.3.2-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pybit7z-0.3.2-cp38-cp38-win32.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86

pybit7z-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pybit7z-0.3.2-cp38-cp38-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

pybit7z-0.3.2-cp38-cp38-musllinux_1_2_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

pybit7z-0.3.2-cp38-cp38-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pybit7z-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pybit7z-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pybit7z-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pybit7z-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pybit7z-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybit7z-0.3.2-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.3.2-cp38-cp38-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file pybit7z-0.3.2.tar.gz.

File metadata

  • Download URL: pybit7z-0.3.2.tar.gz
  • Upload date:
  • Size: 77.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2.tar.gz
Algorithm Hash digest
SHA256 b92071a501b47343b2382921b49c077da20609c56da3322f18bc1ce96e6797ad
MD5 aedff97b06b7c263987dfff1faea8af6
BLAKE2b-256 7e49df758693c066f59e642eaf17095d679be7fcbebb2708e1fa59a6229e7581

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7eaa5618afa1130afbafd063088875cafc68f08bbfbe86cc7533112863edda6
MD5 6f4cb244cb9954bcac1a80e0e7822bc6
BLAKE2b-256 f104112ae4b1e3182a8ab690aa39bfed2d122fc7e5fbfbe6bca6c1f8be7fdc97

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 628680784a7a9dba41d7f06a79261b0de894d600c8f5e41570739684023e6647
MD5 34aeda450c84fb2acc1de7e8d9bb35da
BLAKE2b-256 30f6ecf559cfaa175c2cd893e539c8c056024b7a5901561a329654e500a0ba63

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 411ee5731a0e6a2ef1a236e5b6bea3b41c13b43b814b4b9a95725163c3467c85
MD5 f9b207ed0c2dd5690d9d28dafc045802
BLAKE2b-256 db11e1a9ce4e0bd8027e05e2e919fe485775c3d465c3e3e679a954cae844af99

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eba8b5739774dbefc5a63beed2f672821e9571442364db6d7b77935de02b4cdb
MD5 f752e99c3edbc8194f2d8535a42df61a
BLAKE2b-256 b92b08973cfbc28504563edbe10f77394b0a06ea6f91d300ba0555976f8aa387

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5776ccd56f28de6ce9b88d6d0836ea971917ac712802977f97e2d6f7d479b0a7
MD5 fdb04794f711aa809aa94cb10e252f84
BLAKE2b-256 176f2166886b80c3d25221801269bfac920747a1db03af281fc6adf1ee3958bd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 371478d712167d49709bab71856f3b7ab036bad33fe2c6ffa554ad06c05d1b74
MD5 6f8cf01257e5a9021e28a43a81b25a61
BLAKE2b-256 318377a1727e80189d773f9efa4ef219b1560d1e58152a836d606cce0eeeee7e

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6f4ea672e684ff433ad3cb21c1590c1994f8afc154e7ee393d9d350f947261a3
MD5 d726410bb3c4c34276585712e7fa7cdb
BLAKE2b-256 e8cc923e06a707fb63e147606a5d3b59b19e884fa03a31a61ada41f3ca9a3b53

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39d84c828358d08abcb5985f02d6958ccead54e2dbee56a18f16dc04a895efd1
MD5 0de5da95b6a4f9467d76371ac6438802
BLAKE2b-256 152100941b03bf358812d8cf40b18e7c86f566ef8bc2f8a0cc3438c9042fcccd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 749cf2d4136606463da70375aadcc905deebf8b2d08075edf564baeec6e5ee32
MD5 a6655b90563841fd395bcc866bd9e9f8
BLAKE2b-256 6013b0578f4410c92dc2a9f29cfc03a15dcaaf18a708decda8d4681f49286682

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d1ca834ca797bf801d84d50d1e7e5bd05420c09da4128af4a620733c5bd4fe
MD5 9b3d4c44de48d217c803c80a34ae4a1b
BLAKE2b-256 bc7add61bb5ff4a3d38aed5b6a740bae3950d63e96541b241fa857dc6235d1a3

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcce5d8288d65b67bb30d17b28e899171b17a6d03b94ea2ae943c96fcf2f8b0e
MD5 6e3bb11264a51419063a029f8fab875f
BLAKE2b-256 ea8dcdfff8d2db2075f827d5dedaedbaffcff8c04610f14cff4f19be97f40305

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 05fa19e7767f6d6ded766829d9a7f2b33eca045700d5b2923b346a4ca96e18ec
MD5 bea001fe51c992a250f5007cbf9a5288
BLAKE2b-256 c270564f8c9905f980903d3c31ea1efab503a484a7f55a1a74bb5feb3b08a225

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fff85e753e91c87bdf3ded9b26ef0f89b718961d9976f08bb0b95b061cb4b5be
MD5 1e2b085b4e9ba6cf418c0bd836a550fb
BLAKE2b-256 c936f411b44aec2a8f385bbe5bff9cba263da79fbc8290df07f3b6959ea26a93

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 710a22739d6e6553bc90b89dca3a56372336cb2e066996d57963582a2fc4a025
MD5 6380d364a3b6b731b3af91f31b76df59
BLAKE2b-256 57896293482378001cbc780992fdbb51fa8eda2833ef88722e212ad2ebd8cc84

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38400f8670e9e2ded070ed3d563474972859ce693b4cf073de638f653362e21e
MD5 d59ada6121b835ef8374adf6ec8dc788
BLAKE2b-256 604e4922ded72c8d1882ff2851e4c16e1262d3f58350e6a0c02e6ab3ea68a0d7

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ebe2fd1410e4014b64adbbd02f62ab5f47927c0b91a9de85531933518755f03
MD5 179b0c56fe2f3cd391a487544943c31b
BLAKE2b-256 72b4b62b4bfe1af2e4e891ad3183d86582e7ece5dbb9c40481bcb99c8ecab716

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b6ed63cc06f6cae93e2a4d2d5141599876755b9bbd4228e3e86780f2b0e9d5e
MD5 3e59428d7a8bada0c3e3a6b4b4aabe99
BLAKE2b-256 2ef528c24d6f5696dae87571972210fd1536448c5d70ade417026d346f374cb2

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c3e1fc8f5251e1af31f218a53064168ccddd5e5dba9d732f334aa579811fddd0
MD5 543a074ebc32f7be98e3bb28b337e870
BLAKE2b-256 15d9e4204a918f3b22970829e90d2b23fdbb3bb3d5ac86afc804af9e757df7e6

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b3bc7020afb02e05986c0f73bc4a35b2c2fa0bad934fa770db3be4d0d22f4f19
MD5 601de98a4b5fd7e5842de571e27cd0e9
BLAKE2b-256 ef5a4bbfe993e875c07547c02821730f36c579e03b0ae894287972f52ac0601d

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2f9948bebdbb9cb2ed0bc48fabb51debcbe37e71f60904a7d0d3951e1b17719
MD5 1ca4ff12dd62e64c54cb4c7d491d9302
BLAKE2b-256 9bba75a4349dcda130039560198c318ce8c00d241c8ef46481cf446032007f02

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f6beb0b01e795b4b97d9a8f58ef3e91250a843add14df54cea82279b82ced9c0
MD5 e89a079e9f2eee82726acd3fb6a8a782
BLAKE2b-256 71a6ce8e697aa17db89f1da84d39c6a1b4f1059d31788ea22ba79a62ece99bc6

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbf8620054bad43ec5ef5c0e3a7b070bf9876baf208425db4aa5fc61c9eaa17d
MD5 d1c360db905aab5580296ad0fbf0cf42
BLAKE2b-256 05c4e8b16c5574f52c3eaeca57c3b33543cdd8feb336abd41e0ff4d48ea72c15

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c787ca68fd3a950fb072180384cdeede6d92336302f36562223ef9e8378f65e7
MD5 f20feadb5bb54598a375d070b45b3fbf
BLAKE2b-256 854b695dfbbbd72b1fe431e68214e6c98df6bfaea5f9cfabac466d6f19fda48a

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ed966b97a82b743016a0fdd8d09936f9b8867cfb641f29bad1d07f0e8be15ee6
MD5 bf855cf5070f1a55b7e7f1959cc68b9a
BLAKE2b-256 e6c224b3822481ec64f75f44f09e2fa827bb469d11e84ef987f5d6dd0a7a94d2

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b8a9f19bbad0bdad19fb67da596115f527020ad32f7cc4844bca8e847170355
MD5 6a4c20092f44a4d6481c2738e691efd4
BLAKE2b-256 7b9e8a4864201dec9131c7f042fe6ad27433cf93d149e8cbc0705d7352690c1b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d978efbaa461308ad913a95f6ef02179fd43b03683f0740bb603c57f3cb36aac
MD5 99f386b475e4be01d38d5e1c7faa9a91
BLAKE2b-256 647d72fe7dd51d353215047bc58e7006d6b3604d81b2787941613ec31f82b5e3

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d370c3aa2b002b2d6ca0b250e57fbff611db16676fa4c9e6157024ddb60c95e
MD5 e6abd14eaa1375d56d5913a9a7a471b6
BLAKE2b-256 90b324c0e87ed090eaa90192f3cbec7f9191f9365b7b6f85caa0ee79f52e3048

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22a07bcf916ba896428a468016cdeef12243281285f46e4c33c920b4c200837c
MD5 755da702d3ee0cc880b9bd5717c27f6f
BLAKE2b-256 4c24c61e1ee5929b2e9d166eea3a129909e3ee266936170ddb83a951774d9c59

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6fc915e8f45b384dc8a90fbd85122a82f94bd39e8ee5593275704878f628f7e
MD5 ae5c7f732e9553514c176a940c6de083
BLAKE2b-256 ea10b0a55df2a0b9338c0829762c19048e98e3f1f0c7b6e6e09a9c7d9e9d281e

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f952ef3ece66290f00c251cd805162e80b00c9b6351e7e46a3329768ff96687
MD5 daf3648eddebe24f429461807f872cd7
BLAKE2b-256 59181b58b68c6b3cb66baabbf2aee58e8f33299c3b4b5774f7113b3099f32003

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a42f685e53bdd4b050d0233834bb1451538201e9e838f48b444e3b58cac0715
MD5 661c9cba726b5e57a9aecd493a023a29
BLAKE2b-256 038eddc43555e2d0c721848ac0460341944a2ccfc1f02ea8cdfe4d816fbe3848

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bec83e436c18742ba7579a65da0b00bcc6d9e51de14156f7aa9f8dff40ab9e4
MD5 804690faa998438e232c2dfdd7794624
BLAKE2b-256 7e3865eefd31dd4de05a7b4ca078e2d731559965dbeaf947164a4678413e3ca7

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d3e7a02b82bbf2aff876c5e29c6cf71e975037e99bd69b7d1dd6c89b594adf7
MD5 f2699003fd2487e163d92c6aaf62ce18
BLAKE2b-256 b2efe7bf20c22974d9baaf88a2827a76b1f7e788a76cb1edd52c3544b758ac00

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f628e7e10a2daa2123ea02b414499c0d3d5f5affe5d7477323a6eaa0373beea5
MD5 e85b275822a377030542df42323d49dc
BLAKE2b-256 3e45591f39f7275fdbd3c56a9af66f46e94ccf1b59482ab8296f7ad9d5df226c

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 81d7044b9dc92741c4a03c662cec745d12e26197c148062d4650cb4e3ca3674e
MD5 8146d0d24fce4fa3035b1484dcfc8d96
BLAKE2b-256 6d0821ef7160c9d2dd96020986eb7a7b866a516ec23f23fbe20f554149e072a1

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3b82276afdde2f528e86aa16dab3b3e80bbc97d34b32e260d8184584801034a9
MD5 1ecdff68217c6f6dbdaa274b79a2a33a
BLAKE2b-256 2ae7640303148083ced0fd177461b321addef75af99a8ec19818247f932f56a6

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4868b105961ccebf1f08f6709f26013e1f60c445e905947f5ae2f2d851859763
MD5 6d0877ded1ac4f124692cdc4a9495aa2
BLAKE2b-256 f58196eb9b3f7e86c8cbd063a90e83aa912572a897b1e45f4b360313fc60c6f9

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b0b23bfe77e7d01badfacafe07086b6a463704dd85bc66a2dc991428a0f19df0
MD5 b101302fe382c43c1d053376f849da07
BLAKE2b-256 b1ddd09b30cb4ba4a3776e86e50985329c2c2bad6c815df0085c5ee86fec1187

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3e515a47e782f1d6fdfe74974d19036c2badbf435604a7d1684a1028b96e5616
MD5 7fdccdfef8f89bf4bd862074e6ce82ab
BLAKE2b-256 a6941f948c67239cbddf553e5e5a5ac2844604504ffe4faeb2f6f2d64dad39cf

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63c2596fe9e9cf5ea77648e9125975e084e250e2ea392f93d32521f60fca84b0
MD5 13dea332afd993b10290c33bbee9114c
BLAKE2b-256 0d104e6b37a3491b4e60de2fb35cf27c9f71c19cd6a7111e5bf5f0b593903dff

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be5f3f7ee0919dccfcd7658c15fc18076df90c73a7bf1af0cf2814819e7869cf
MD5 ed4e02c18deb83fbe5cf61a0a4bb7dce
BLAKE2b-256 d3e42f8fc943b6f62462fe64f47c383050b56708ca196f95de9f75b1c98865ef

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75aee5b31d5b95ed5abf9e0ac47a49e3e098abcf814da78a6ca9eccb4eec7dd6
MD5 b0caebc928a6149a3b460c4971f98ac3
BLAKE2b-256 29685212e08903fd82452e3f6e227db3370458fecf7905126f24856e49eb6142

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c33a829288001150beb5c5ccfbbd685056b0115345da13fc9ef57c5973b12b1a
MD5 a11ea601a2defb9e45498d22771d4788
BLAKE2b-256 6e5bb7de5a01d8215cf80b128dfd3a06dab43c6620d19402607cd263acfaefdd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 058ee360ab7c0e17ca639b0f4778a73ccafb53838bfde56b75779f1ccad1c654
MD5 3caf7be60d963c666c4217bc30f4bfcc
BLAKE2b-256 c0178d0d575597e74f7ebc89b4b0a9417b773087bda35e882fcc9ab9f15549cc

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f92f2a5aca5494cec51a306d83bf4f22f103123a4a0ff82ef0c0540bf0193ed3
MD5 458459442af9dd5f58cf8c793eebccf0
BLAKE2b-256 8a68983690a01cb0eee9bd6d7a5a21f3c9672b9253f8a8f5f493971d13cd50c5

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa098ec685996cb98c7d3e48822a233e2be6a61cfdeb69e5de49f9896d65841d
MD5 ac1bd149125c17f4549a34e4406418c7
BLAKE2b-256 91e30332ed429654553ec876a6838ef65f687cb86fc94501a0f6e0b8671619ff

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78e45b63782946c9ab2ba8d4bb0960b6881698d75a7c4ce8cd2519f35a55a954
MD5 dc5a297c948ca909dc38f137e3045266
BLAKE2b-256 b251b71dddf086a23ccf4a9baab4f38d774318f7b62115ea089e3e2dc4690fb5

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 caeae192b75564d7ce990544be778bcf777d0a8bb18ce074d319f1b561afc124
MD5 0af0d3d3965f9d61e61fffb396536e35
BLAKE2b-256 45fb4bbf3ad6e0d3662053e214c51591fa335c3962a57eb5b0826b925b87b115

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c3b86f66c164378ac7a068ff69054f24f3e514ebb8678e6b6e742560bb629940
MD5 582c6ddd9054a4d2b65c004a6f8b85c9
BLAKE2b-256 98c80d4b34ae915727bc0d379a99f18afe0acfcdc062749458a868735b9728d9

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e658a5dbdb11cb39a02d7742afe240b525720952390975d330fa0d000300d0db
MD5 d01025f33d7f7d3df3d8d62da9a7f414
BLAKE2b-256 b49c707cbfcb83698121b52b8395c26ffe697d2da4a64b131c3d9a2b4a69aff1

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cc1012ebea0b73af90ca3fb87d847aaf68c1b758b628c658858815e74233d394
MD5 0a2d4a9d42e8cfb31477dd085b1bd118
BLAKE2b-256 55e306c3e1b5d1b3fc63e74448dbd7c54e3e5ef50a9f839e258627f1441920b7

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f320234773d5340926b6d79098ce808bfc927de4ef43e17d9aed0d6fe6ab6e18
MD5 4ae57b9ee1672ae10f911e1a38bf13bc
BLAKE2b-256 54ccd997f75d7cd014d6d7ac74869606ef52cbb5cc27013469a6990251384720

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6b00260cdd42302997bd766ba120326d37741ea14d22d9a8910c95afa8631e05
MD5 914f51d3978a83842d3ab2a4c2a90bc7
BLAKE2b-256 8d922f74b99e8839eb760abf71c67d350530a97096d49de5179baaa6cc234956

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6a66f6d290facd41d35e681836ada1d78c7a611c3ea281fb27de3224a98e85fe
MD5 a1bb81a516d5f7bf67f9677436ba4f0c
BLAKE2b-256 3450b056ff1771a6a242cd777c4c36e3ed95b7add4a49edbf200f4c9e5404bbd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18c233cfa7fc6f6971cd22f0dfd2baac627f121cd3ef8340a5d354f08249d22e
MD5 0b7ac735c17d7166986c124d7bc0c757
BLAKE2b-256 fb400bf0b674037b5338983c007d6a20a671722ab53e55d13ce7f551b0ca1c37

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7d54f2d17202ac98f9a8009dd7c398e10e4c529277baf16962e2586358b4307
MD5 e1d9db233e25297b10438dfc6a7ee735
BLAKE2b-256 5fd8a55cca144c3c03fc39ae6927e9ab80e7ef9cb8fca918c68b130ba0e8a474

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab35330e1e91b42c3f3998a400b79b7d0a83d4710ce049b3ff8a05b07e3339ea
MD5 932e3a0431944540e0c2af383d6752c5
BLAKE2b-256 5bfd7ea38356653055756dc5993fcb0d360eb3e8fa86299e2be8fd6960c0a635

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b05d793ee426c38359a001d714b32306a1ff64e9d550dc04b7556f8b47ff5ac3
MD5 f24625fed155fc6c1150c19bbd2ca902
BLAKE2b-256 3b461480d48d7b9c7b09dc29e4d2ae5a25790a1172f7cb9978b31db595e9e1cd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5a2cb3a103719af7dd7295687eb1d9a96fde0dee37d02cde0860cbf9d80fbb2
MD5 32df15f99fac3646d5d209ff092d3aa2
BLAKE2b-256 5baa3d1ab40d80b62006c83e08e090e486c2c84e26506446bbe8a5a084705e63

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69ce559036f7a7b8d8505e477578b4ca0a52e0f2d6e533ebc7c5c784b2f3583e
MD5 ee2a3aef11d2ce1a0c2a7ce13ed38303
BLAKE2b-256 7d69b225ffd781c8214a8129762f6f6e32d24f6dd049115a89063d6f02504eac

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c5ced14cd5db518ed41638f88b4bccd367d825503c98374b31e0662c3464ac3
MD5 7b83e717a5d7e0ed2a8ddb9f589fdd14
BLAKE2b-256 2d706cac320cec2afc9e26c7b55336f94971b04688db14b047b1b2a568c1d901

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f65f147d81cab7541e07c5c57e5d4c91bbdcb487a8b34e21c83a40226701cd0a
MD5 dd84b6a17d0ebde150575fb63cd8707c
BLAKE2b-256 a6e5466287f3f212107ae088d5211a6ffad1fbf1160278ca23a4bb8ac95efff2

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff82af957ba79e9bda6cbe5b9485f8f011c7ce265f90d4e01510fb151abc6c2c
MD5 117cb4a68df145e11a437bcbd1f7d7b9
BLAKE2b-256 51fcb1b69e93df3ed08b7a1cddf38b7cc5709e15079ef0699e4131f98d5660b5

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 62c64badca99c18a428a70f88f0566c94f108d5578cd7e6e16aeb8d047c01eb4
MD5 c2ce4703fa1db6c628a6926767f8c68f
BLAKE2b-256 6061cd10463357a0fb95f0e3961325a418fa75e3d25f15f20be1df29b9e9ee0e

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddb27c7db963c7b202154c5f833e3ffd7de435f1262c565eb9c4fac0a39f07e8
MD5 1a3357d5ffeadeff3f6d5589245a2322
BLAKE2b-256 81dac2d575460c62a8a96855870556570b59adfd82e76b9c3e3c69212d8d326b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b01c5e6c41b665385e047e3676e9260c780af0333f76bf6283cc7bd3c38ca0d0
MD5 0a778a6d408c3d9a3630194379052ace
BLAKE2b-256 e392dcf69483819467157fb4027e6288d14a7e160636277f9e7cb1435b9d5810

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9491aa3928737fbb5a0e8eb0cac1f10c8a061a4ce5fb64d384ab5c65e49e0d0
MD5 1ae9609f0d045b0b4df9d5ed876a7b39
BLAKE2b-256 6e2714c61e157f18f11420371084a02296bc3407a602c5c36cb76d19fa811a31

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f87e1722c074d51061d6e4f710255e435c4f482365f61ced10f7517b9a78a39a
MD5 c9a26f1065573fe4c3576baa2c22905e
BLAKE2b-256 8fc60b81333c1abc543940196256a26e436972cc4d2872b0543c9c8b36aa4a55

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 02669b0f3f0447025644efc6b23a05852f4a28f75a5e084742f44ac7cf5aeae4
MD5 fad1244cbc21b9256d1f415c32f0e4c0
BLAKE2b-256 d04bda4bd6b150a8dbfab58ae648695dd069d93c3152b673eac0e39b778c94ec

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2bdd02f6b8df5496182793084121933ca2410ae81f0efef6006aef418fb9fa2
MD5 69ab8269a04fb3f27372d4f2f9ab06fd
BLAKE2b-256 cd34e27665d96e09dbcbce515e37e74b92d8e2b8e343106ffe67e5e222de109b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f38c2ef216e601dd3eda98096eead5d8f032ba7873b4b6a2b0b4fb2d00ba1332
MD5 4a069c2535625fe7cb4559f8d1192502
BLAKE2b-256 55099e566aab9bbb06b6b18cfc9ad5e1abd1e8c64eed3df74c960c672b227e2b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a741b432eaf4c87fd61883d2f17097401a38d9e5ba7db2f24385552db16b2152
MD5 bfef09c7157c93cfba14676d000a42f4
BLAKE2b-256 d18aa222aad81a793c388c1500e0692c0f3d6d9c09492f6c794094c63fad774f

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8979e020c360febc93f2f56db0567f3a31161d4b68d6d749bb2558a855abcd1
MD5 7c8c75063597670631bb9c63e6eab6ca
BLAKE2b-256 1a3d94678589ee95a39849a4d0c1797ad648321567dd8fbfe3422f3da3f55ebf

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afd171bfb629d55919b3513d6ffeee8c1dec0e6d9740e778ffee63b6b7f70d31
MD5 96c09dc21161c06f6e754e482866c782
BLAKE2b-256 9af5d36d12f2b1738b7405731dd4f03449d08d297de10fb6347122fa58ed3049

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1c0a688028ef30c4eba606874b0f47dcfd530d59bbda10c337bad7c96c7eb28
MD5 58da5b5731b4c63d3af4e50c75df8eb3
BLAKE2b-256 8f446cca0f394e0bc9d37cf5ccee93c5fb62d5423e749161ecea188a775aeb79

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0f9dc4895d732ed64fcd0676dfc282b62ee5085345086e71a4b8b1f632265b9
MD5 fbd185b0a271cc7b92806c9a6fa866b3
BLAKE2b-256 03f276904ee73de211b81c086488b9aefc271f32a3229b437be2d3ca3fa9078c

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91aa5007781de5b8e4395b4086abc018b37b7cdf85bb437cccdc4c1fa7db9fc4
MD5 42b7b2ff493357bbefc0be1da9b418fd
BLAKE2b-256 8de4da250c448b473e5b475d1863dcc297648e3ddfaa563c57c80d4bb66e898b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e47b2e7959c39ecc5f7bba9634b2995a67ce2f860699eae9060724929cf6fbae
MD5 37907ecfcac42ce9a4c8894eaa099bc6
BLAKE2b-256 7cab11ae47126f1ddbebe6f0a3f4cdf9b3ae7f0adb8d5bbfe856d52ae2e0e323

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c1e7887611283814a0d566538fbd4ce886f8dfb66e37e423f51b3d204e00ab2e
MD5 2d461d5f5c1b127a4c940a707bde7b74
BLAKE2b-256 ed1803135a9cab30b3cfaa0dc92a6d01e9df0fa8beeec38d79f13b6420f043f8

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7c8aaa999713bfd7393c4144e3305a60725ababdcd64c093741e810ef8b4e7b
MD5 7e2ed3b1ec1260629e50eba5c87cc79c
BLAKE2b-256 28c91adbf9c050354defe128e03b00c6abf07355575286235f6a3e0b44aa4478

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 35c40f7519582159cd180ee81df7d66b2f8e1e3b9ee5e774177cdad9e874f50d
MD5 714611241eac4798769fca3a463ab643
BLAKE2b-256 af25bd546d7707777f0bc418a720305d7410c5e903e4dbae63b561ff4e06d70d

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7883ad512ba5302b5b71718ea33878da86aac026b277ca0a28a5209a2751261
MD5 6ec509a3c98c2c788237735f8d941c57
BLAKE2b-256 2e0890620a46bf7f379d7c51174154016bdcbf8bbfdfcf675a53c633cfdf1b42

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4b27c232692c01d173d29c1a536aaf05984a83a39a16f2feb6c3f41faee7685f
MD5 54f77135387cddfb11bc2ca3fbf9d2eb
BLAKE2b-256 e1f3ba05f28b082a52fe67a5d0755cc66c85fccba6fb799724b5511945d7c967

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7b0656801557980036e352f05b2ed05b685757c642adef18954a285f5507bf92
MD5 fd3269e7492afb746a392828c9787d8b
BLAKE2b-256 7af2ae67e9b620634654374320a7e370077393d4ab3117d15ae5ec68ce976f10

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e86cf2da44fc7cd1579783d2cfeb1d1e47f1607cdf5afb80b20e16181c1fbe4
MD5 dfbbaeac720d202aa3e93bd57c2b23a2
BLAKE2b-256 7e98e14385b76dcaab38f8f97146d5026b01fec7ff9daf4a5d18ba320480320b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 445971629b01cfc187c9c2d31f4592059ef9d3eaf75e493897a3def15f93df62
MD5 bac206592b23c782a1cff2b27c61a27c
BLAKE2b-256 3ef4f08c17fd5a47f76c8703213120587c986f100991400f089dab429a9e1c4e

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06829ffc1c603181b169418613a59621f5ba8b464227daf304db9925299147e6
MD5 b8875e04c69a1002698f10cb49bce406
BLAKE2b-256 8b91d63728cbf19d1bbb9982d88f7ba6de0e742e5f236953f4d3ab6ba27e406d

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3349e892a8cf4584efaea3bce7e67b50bf80811aaa8689d1349601f43a8bdf30
MD5 ba6c674d5941ed57cdab522f6159bf85
BLAKE2b-256 279b29e0b7eb9e8d7db49d23b6209f8d4033f78e1d1b8026656659cb4dee6e21

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a1f35cb5150f666841ead609062407c5f26e97c03a539e205a36a68c3b89683
MD5 daec74572ab9b8faa85dd07c57c217da
BLAKE2b-256 c5fa7c2b15ceef1d39c358632bcc41ab67eb40444b0aa0f7c6a715ab1bd92b48

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6f8cdc7240805c3eafb86deda097ff2a8d99e4d3110fd0242e6eae672a439ad
MD5 2517769644bd4e6c10335858ca970881
BLAKE2b-256 27dbf75311ff9e272f99e4ff1ace7028aedc64ff68db608062f684344e5f8f97

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4acbfa27cb696793f6b9d59063a9c9a1e4294f07aace50b6c916d0c1caef17e
MD5 a5b96ca96f214574ccb4b756a96ec9f9
BLAKE2b-256 37c483db991643f8e4773f46bbb212774b40bb27d9dff69800a4b168e85c3195

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 202ed0a074cf4c14f96e0a60b37b064cddeac5c30fc53f6827609fd6816c29a0
MD5 c1f79aca89c499b8a08d17af6be6cae4
BLAKE2b-256 3b1c74d7388ec9588fb64e5cdc73bf06a7c537c9070bd949b7d7bb907ecc8e08

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0291dbd41753442bc2ffbbde82442a6f929f15c9aaa3d6689230282726168ee4
MD5 a785427336b7e80635fa02b667f4b0d3
BLAKE2b-256 99922ad30689fbf413d9dc1202cdfe63eeff8fa1e94f114d23f421796a6e9f3b

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 950b3cb91509e3772b915aaf62653401cd6fe59588788e7f8964b83af70469e2
MD5 5791c620e8a59e7f0aa62cc4b31c5fef
BLAKE2b-256 df38423fe3f9c892ca2d2f663ee2bd58828b03e57b24bd4fe2ec497e4f31ac93

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybit7z-0.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9ab369e5fafecab607f5acc3c36c1d815d3296486770110f769d1ce375793664
MD5 ef48c1abd8ec89907b13ba55c4a53187
BLAKE2b-256 47aa41f20241ba0a992665db47197810730366bdbc42de7ac901aa8bf03b9130

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2737d2728278ff57139693487b37458fa6678e580b69dd63ff02d5ee30703b7f
MD5 040e7d4d4197098a6baed968d6de1b6b
BLAKE2b-256 7046b023e27709c492a794d5443e7b5c3e189a2c211159c974c95167b21517cd

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cdb6d3db195e2161f3a28647e5682f54f560c2dbbb871d7767601fc3ba5192e8
MD5 a9ebf12163ac5aa35640d1a54a3cfac4
BLAKE2b-256 d50bab5ee6993f1c5cead673edd99074b85428635a752dce6780df7da6c8371a

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc38996f654abce9137a1954178831b79004b3c0209a51068dbebac39edc7c33
MD5 e825fb7f55e23a6ac7011f08fd349528
BLAKE2b-256 c9eecccb41bd703f39e6ef7aee6342f2d45435f3fce3c76c3232ca87ca89409f

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2cec78d743184688c2456fd80484ecacd482ac3efb677382c59bc81c961e33d2
MD5 55cfcbac73c9e2f220ca0937120c17bd
BLAKE2b-256 4c4164202102551e593d347ef539e56d508e3edda08560da231c8af08d2f29c1

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca78099e8cae874705f0a5c5ccfda499a4011aead361c0769da60f0f3bf49cdf
MD5 f35f3199dcc32918a534e8da20279e7f
BLAKE2b-256 6f69b91420f8b952e938a244cf1d3853992efe7bafdc562e0d0c9191ba82c933

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a758129f0f4935a27c0896b7ea8bd272fa7374779830add08952d7bf9e1800b8
MD5 a0fc7a05aaa3b7e37cfe0d3acc7d9482
BLAKE2b-256 a09563540ea9a474e1320ce9da77ca4eb4eece9df2c929db37600b24ea6529f6

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43bc155381d45640c4565764704c7f3fe3d44b9c0758b85c5d1638a1c641086f
MD5 c3b586d8454d7b63d17f896687f050de
BLAKE2b-256 b37210c04ac598b48b40e211ef656a417dd64b669d320635ca0373151f0de065

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 063ddc48fba82a71ab3ae9e331527bf3e727d72e2f36905670bfa12ef8f657e9
MD5 b9a106744ec7d3397b205fc4c027458b
BLAKE2b-256 92bed219201b90ebef59ef9721bf69b985574f850cc507f03203ad94664aa7a2

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82badf5e9b5415265a27a1303129f1f77951016db03d8b860559a3da6e64af5e
MD5 a28387e93b35e746333fd03f73a7d3a1
BLAKE2b-256 825f41774ebf8627a2a9526bea7f8acfd114ed76fe92370643ffb976d6f7686c

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dfc7001e055c00788fd774024b1900932bea2b08c03e025f6a6d6b980a7e97e
MD5 971b7a5c39eb49fb84af0709b7974d33
BLAKE2b-256 a9675082661b967105e073ef5a1633cbf99a0eec97b6032a8d5293be299c8df5

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b7be8594602af82ddd337124590ad9fdf96c38fee4013cb0a82b7d0b31205a6
MD5 78f94376f313ec0e0dcd09763c43fabd
BLAKE2b-256 b1c64c7c95bf694ab7fb8ccaf8f7e656b254c7043aa447e7a0d257a5226dfeb5

See more details on using hashes here.

File details

Details for the file pybit7z-0.3.2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybit7z-0.3.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d343605c2ad7bfe3f8416196611c38915da0aa49b3bb963f26c79d57c122b437
MD5 9db46d96d88f8c8285a381e215002b76
BLAKE2b-256 232bb345298ab1bd625409c05157f0e9596437eb39ceb591521887d11e7557e0

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