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.4.tar.gz (76.2 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.4-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

pybit7z-0.3.4-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.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pybit7z-0.3.4-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.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pybit7z-0.3.4-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.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pybit7z-0.3.4-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.4-cp313-cp313-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pybit7z-0.3.4-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.4-cp312-cp312-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pybit7z-0.3.4-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.4-cp311-cp311-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pybit7z-0.3.4-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.4-cp310-cp310-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pybit7z-0.3.4-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.4-cp39-cp39-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pybit7z-0.3.4-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.4-cp38-cp38-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.3.4-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.4-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.4-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.4-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.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.3.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for pybit7z-0.3.4.tar.gz
Algorithm Hash digest
SHA256 385b595f229440943826e92bfc81527409273c2ad5c3661785280c72b0b2aaf0
MD5 aa091c9f81e79e942ad70a67b4679957
BLAKE2b-256 3e72e49f3d7009753f24f74eb912a887cf1f3ace18e8eabe6e3f62352eb17a94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7974c069912ff8a1bde917e9fef9a2bbe17b278f72d7a653ff3bbbe739b5a58e
MD5 bf77f682bfc4b91af240d6bfc2332420
BLAKE2b-256 7e70e949252e5a8149a9f4672a39e487aaaec28a9eea2466a638f8a65e0ba18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d37083bd9ae4fbc52ac3248d688ef3795069787c206e7ed48cbe05c0145093
MD5 a7823dd778351e33a7ea84349a844a4f
BLAKE2b-256 06192b39352e54cf566bb2d8856caac19bdba1e9aac73067caecf267b54e985b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 443e636d6b2ea7a0919a7b6152887d2161c0576af4c27a5bcbdede4ef0eabe35
MD5 a0332b4a9788768f94cd5fd8cd3d9a88
BLAKE2b-256 a9530a9bf4a34fa51ddb699103062c22f00349e1e9f4510b1ede9c37b923bf79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b71ed28cacb2d8345538de892addb2f90bc66bc637bcde479f8c09bf57576d7
MD5 d5b711fe5b35f6cfe8eb99863b758296
BLAKE2b-256 0bbbd5618f84606462cbdec4267cb7c9e90c775cebd4fc0fc52f96c9ff2c2a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf4817c7ecea357e19fcdb1d37705922c0ca0abe55b7a46257bf74b891748371
MD5 aecc46bf6df2a0ebc9cc9a7b4ae5b9af
BLAKE2b-256 60b170a3fa58a3a23b3f5f91cbd7b01316b7dcf8c0ce234dfe898af3dda56d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc8753e4659a32d0865775e945977099c41229fc6019175ea36618464e4ddb6e
MD5 e6b44fc2efa3c3f9bab01adce4bdce06
BLAKE2b-256 ba5f2ce97f226f7bfa834b430daec157e6199b75c17ba1ecf51cb8b8a23f0c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6b77b067b728f996de4b34b805a5ed04416d4b3fa3451dc5f2728989a51eafc5
MD5 b1973d69ddc361f3357eec1f823a6597
BLAKE2b-256 c53ded40a2ae52e47c38e6a1e89b2d607b1b558366e7b08a6f388d4173d76aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b32c7921d72c131b703fc1bd413bc26ec1be84e56dd3de2da22038ebee619f9f
MD5 bc4f1ce2ce651f4cc97b612d72732183
BLAKE2b-256 559422648fc42a8151bdc49eac3a5d7781cfbaef8cbd237e2687b352511fba8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 215ae3bede497d5da9040d1ff3fda0e8bd37b46d4a81aa3d8221d9ef7dc6c9f1
MD5 1c68ab3eb5a5dc6fb27e2d6c516f4d2f
BLAKE2b-256 4176babd82d5a8dd9306f76a02fa39e02847a1aa65de041d696bee5c38fe5619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51e0ee20b1bd8f44cd4e0d69cd21f72d54bf199a1727f5aca8ee3f789236f66a
MD5 03723bc0db7b4bbe2dbd474baae0b1e2
BLAKE2b-256 51e89915690dd56f2eb11088eca862f67367a7cc0837fa25634eaa8deecd45d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ce381df602684c63b1ea478437a2ffc8c4f4eb9cd48640d70303c72849bb41
MD5 b675d0e72a5cf8f26352d406796d6985
BLAKE2b-256 6c42ac3904a7c08ab1bffd6327073a6326c7627219b8193d3121e561eab9ea95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 394dbb501844cb8d94fa8d29d3f98e9e793be29e534ff5aed5e07b998923aabe
MD5 07ac5c4a80e4cf1f4b0245485f4cded8
BLAKE2b-256 dea7b7fcaf8a2d1e3c611c854938d947304a4f1f7a53110a65f4dffab98bd577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c24ee4eba93d497a8dfd8a9118987f03262cb408f2687226ac24e559e5796523
MD5 29e2d31ad95881782e3bbe76bbdf5fa1
BLAKE2b-256 3cb98b79c9817183aa9abdf73b18621dc93ebe888faad895a562b9ac1e6a0550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fed79835691236f033169a2fccf950d6b18b3e08f6e21b824bce63512acea286
MD5 3fd374484e88fa05ac29699b22a5815f
BLAKE2b-256 ec49a9c75d0c478b9c9ce866e41e418df4a264480272d85e01a0e8e8cc87e6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49ddff1a9202835c89171f0bab93a20a165fa41d70816a7abf0b60585612aff1
MD5 95eab0e5726f1c28cf6ecbf6bc81c688
BLAKE2b-256 2e06342f8e6e40587cdd365729d0f7252851ef955e369abd5204ea1c07183dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8578d3d4fa5d1bcb854c1faa463320055e794a88051b51992f68b9d68061cceb
MD5 3249fbb2463f4175550b01d02fef3a55
BLAKE2b-256 f64119e827486fa1b23e88cf84aff6e4fbcd34140faa10c8f3870a2d8b8edb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c6e8aa2284f437d9c5cd749dfe0a2d4b1d6391b2d07a226f3430eddc6ce88bc
MD5 03bc1f0d8de15eb2d49f7c4cc455a14d
BLAKE2b-256 ec02a7cce62c6383edc04bdb0cb418919b0ce314c06a05e947128316c5cd48dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b92acbbdbfd78cf9d16a246a3b87debf79976560bf05793fd52cd10c2b1124b7
MD5 c7bd20e8d7a5bdf221c8d56e81f33790
BLAKE2b-256 2fb69ce6126c5920a57a116df772797144a163ee8a5256bd74f01af0eea91f8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f56d9ba2cc11d980fa7128a977b5680ce96c4376cc545a33abde830cc105c7fc
MD5 f4225c3ef4c7c1c8540e71e7abac8437
BLAKE2b-256 1bbc24f95a1ceb0519730d4dd644b4e06827777661f80a945ad7ffa3b49edd2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c1b687182d6ba765b6edeb39c2a2fc1fb8af8af9d4fdc422fb70794431c2a217
MD5 d959ad0b28eed5089224c8d150d60b72
BLAKE2b-256 642687c04c63eb1e5ae496af5b828bbe276eabde5bbaa3fbe5614f4fc1b8c638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2790ce396c61f3a3b044a1efbea7cf0f988462d8c47ce97b08b3c5953f90eb60
MD5 c8c644cc8dbae54a179d93985f5bf3b4
BLAKE2b-256 d2968f36ab79edef7a84ada1b775967ccc365bde1611a512880e6a6d6ecfc6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa4df077d69302f744ce53bbc2e126f9339da0539bd978d6cba4df9e5d5cd081
MD5 315039a532cb414012f0d1e1745dd728
BLAKE2b-256 d889b05b14eece6cfa4af7e60a1601fe9dc09596605f22601e419e2e7a83d26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 68b51093c6fcba7294fc6848ef491ac6b924b1196e09643b796a09810fd59f31
MD5 3a8188409f074871f1654193abc89e00
BLAKE2b-256 e681943ad3867089070768db424724e5e34051d7822d13f21f6a61f6cd1ca514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e30e7c080d44ec5e37d72a53c7395f90b15b223b06eb3a66b400a438e8c18584
MD5 f7b134327d3f92b69fcdf6083ef97cca
BLAKE2b-256 992adef0cdae91fe3a618e4b049f19a93b9a3c24bcbe73a913037f94ec721524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1f98c6ea9d5a64dc1acc55d401870e911dab5bc98af899f6fecb6a1414f969a
MD5 61751708df0d2b911e9abb05eb9313ff
BLAKE2b-256 35eee9ff48970b0fa4f4e379dc5af232cd27b882e98ac4c9ac1c17b82659ddf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bb5f63ae6a2d1eb55b2b1c13778d772a99786729b0b6244a1444cd8d5f62936
MD5 41d1d1c0e61564b61cfc81062f84e550
BLAKE2b-256 8c449e3320732ef4aa6f6b5ce213e552afc32f8da04835dcccb30602447f5ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a77ebeff50ebc68d33dd094292f792b356c1f1d358831beba36c26588206efd
MD5 a9fd96eac66cf8a557c338ef224c3d9f
BLAKE2b-256 7e577ea5dc1ed73c367bf8bd1d56b99d9b1ae14d48905f5dea7e4f22048e882d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aceca04f9b51f8218c1ecc42e1dcbeb088886c812c7c5412583074e7888cabfb
MD5 65bcbcc801b578f13060211ebce4508c
BLAKE2b-256 576bf7ff6d81062a36f8406dbce00373c78463f72407781edf516fdac0f1e9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d995f7ec8e117d3b0d8ce9d64e56632642e079a6d4a84b268d7266661d4c476
MD5 0263789e31954a760f54535ef392f812
BLAKE2b-256 29c0e670b912d15b9b4382bed0a31f882f29e3d218fad5152033903a7112e793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40f0c7678501392919fd8dbdcdf22ec7a3391a6c3374351010b89acc3ae3ecc3
MD5 49497549481ac3887b200494734f300d
BLAKE2b-256 7d92ac8cebc2c4d0863175bdaf99b276246a12911ab8efdc062c149d223eb06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96e6a7e75f282afcef08d35a5d3f68f75c694e997dc1d94f3bacb2b8a42fff1a
MD5 9772760311d3eba9bfd23fc09162dcac
BLAKE2b-256 923d15d8dcabf14e20adc0d057394901faa33400908a525c1b1be31448a2524d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce1771315b6f7a89075303d2de2afc4fb6959a7472ea46cbebadc48e24bf705f
MD5 e56642a9ba3e8ba6bc33d3618c283f42
BLAKE2b-256 424b1f9f141feb9a5c6e9f4cb50351f1ab9853c1830fa046d9440c4a99a588f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e23ff8d72c705a0db967e7e66d8c7f5f0dedb52e1050f09179198e0a7ea7f0c7
MD5 9bb1699528b6b28ed43a02c5b6e1cecf
BLAKE2b-256 5a00a07c0f958f02cead0c1b52487abde33434712f5dd41aff88ba647faac613

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0b5e4959a90b7ff5d6d96a25b7fb40e721a739fd1cc78d3800a537c8e103a0b8
MD5 841268295188f044f4a7e9d72e5197a7
BLAKE2b-256 d6a0e36ed306d5693ef8ead92264ae407ea5896152d51a0d17c02ef04d2b7e71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aede4fb424c1e2e62ea8e458cfb4ffad8583f4123e8efbf5b1484b6c6e6f0179
MD5 4d9fba8e751b2650021e07580f9b56c8
BLAKE2b-256 16585f6d81ac4efff0c2654242fb5c23190bdd3559ba01829d5fd683c96fa467

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 eac4d0456483f55aadadce6b452282e3c1fe5c959f84eb4e4520ad78c9c01493
MD5 320e4478e0f9831f2a72c71706c4a52b
BLAKE2b-256 2473663827b08999ce1e4540c5f454945c3b5fb72e43ab5f8c9c822bf7d504cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc13f2273e7603090e71c196ea1a1bfbd8490dbce0592d4311a43f599905deee
MD5 c0ebe6fe943f88ea280c58e567ac1359
BLAKE2b-256 b7035db45505af68e1dc2e7b7ff76a7006d2480c27672692a88117821cb1e11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7e17ead732662ba81c1d53400b729c3cf8dd12f2a0166911f7542b1758878dc3
MD5 c7acc81934013928d15182c96b685b07
BLAKE2b-256 c43d50525b39469b1044766a6e5a5f528489fe2777db578224465c368f5269df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 72c05b2d6afcf35909edd1d068695d61010104954097820b26815cc1e6222754
MD5 2af0ca26105f8347098bd24e2d9c48b9
BLAKE2b-256 46193f761fb54f9e273525976ac633503ebda0f5df9c37f295381ae53e6425a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3560d1c52df1e5045a8cdb890c7c6e1a2059129c814b4f236074d8c44de0d8c
MD5 e2949517b3331d1440aa1ad753dd74b2
BLAKE2b-256 3ede4ed868b8fdf96f49b63186d3305788d50c1df6da554f28caf368b2061283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e39f3797c793e6dc892f1d25fcd2c523009322b5b01c0a913b60a4cc3894fd0
MD5 e0a12f8ea42be3c59522264f41f491b2
BLAKE2b-256 4caac0484223312461cf180a35e227f5b5f29af080021f5e59d034447a2f176c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50b311bdba264cce2f0cf4aff0d7467777a9a82af72362cb521e8b5d77f3da09
MD5 97cb3ba226f294f4bc942b63ca1aa116
BLAKE2b-256 6a6cbb03c6af596a5565904d5391e53192548add8cab033c279414cfbcbbd0bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3d729ecbcec7bef310fc9f67e2d0424c003a9da1df7a7e839ae32ca61c11a5a
MD5 b643dc62e1842983bbd3731f97c1fbed
BLAKE2b-256 528b514cd479e543e7fbb04ea629159b4f36147e3ad2853ff35fcb5d3f68f7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cb4adda700ea756cd9a9ddfb06dba0628615cf65157020dfb5bd86788d602fe
MD5 156c566212936b4f6564ac2f354b604f
BLAKE2b-256 6db5d747113076ab52c74ae1828edea1b35e071ff3714aeb07420c89a74c3228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89184d1bc777e766a2ea841d912aec0fd4eead8155a80b41e442d68c382b5910
MD5 3aeb77e19c179599f26227e1b8116c38
BLAKE2b-256 99b45a2f5c65e11c7f58d0078c8b7cb0d72aaaafe1ea940b034b90eb8ce8346c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11c4859a044604c5abc72e309f68e8512ab1066f469ccd8b4e82f44e74f9c6f1
MD5 113021f6e6518678c8a6a45073a6a6d8
BLAKE2b-256 8666d003a621abc572eaa6e0c60a15e2544a414e6fb4a6f1733931fce987ff7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aa8322925147268c3981afc334b82be9e3c395852245091669950237eb8979d
MD5 3914df40b3baac844bae255dbfb2ba6e
BLAKE2b-256 0a7489a9d7d30aea9666693925552f28c08eae16e09d6d24b2df7cb01be4223c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a03a3ea00b406a34323249aa0dd3cf627b0f30d5c3a7848fb23c4e0bda838c8
MD5 cfb04da55a5d1dd6f361ad5f0aa2984e
BLAKE2b-256 f7b73dfc69368b41187344155c7c711d9b69843f07cc29a7090058eecbf0221c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 193892366807fe7a175d1cf6897e6461992bfc2c96492fd89e8271b0c1ab93ff
MD5 0c4271df07bb1e802aebd5e69b0f93f5
BLAKE2b-256 aa17a866e610f8d2931cd0f5870f5a9aee7411aec7913381d44f3f50a0965c2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 314cf04f0610bd8d8150144c5e2fedd78baa759ecdabdc4b878aa2da2156f751
MD5 e07a7fdffc950d6f6b8a50b02e7a8f38
BLAKE2b-256 1b95ac00f75ab3d11675964cdf145e2a94d6ce3754db9dea7f376a4b4f026973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d033666fd214867f03dce28cb4fcf750e1054b67b852b5cc0b30a45013922d2c
MD5 9ad5896caa8275cc1cef6080fe770e99
BLAKE2b-256 4c5c6c1d3f5978768b8ac152a14555036a31ba31eb7f2bb27161d9b6e40e9f18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa0d963e72f72191c49239ba4f038088bae4318f6d8d6e98a7e08a1b6b49f138
MD5 2384ecb907f2ec0806e5ff22366cbd61
BLAKE2b-256 06432242b221db15d8c47b72e3f6bfb794f75dca9834b71fdaea104efe279b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5009440b2d5d4125aa23e50f125e6e2ab91c48a8a36a3ea50444d44c7237ffa4
MD5 fc57268b40f64b8a1758e479796ca0b2
BLAKE2b-256 8411a9df92e7bfd199753f4c4688f0de16a100a7cb9cdbc6df75908e378cddd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0526479e87da6fb492b2e95b5e875cbbc4c2b31690774f4cab1d46419e94ecda
MD5 508b169a5765a471af046f09b1dd7b36
BLAKE2b-256 fd8303a5a4ba0bdc84b3d90df2fe8872d290f4ae14dfb66f0c389a3c8cb907cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c662de4f8cb880d3ba4ba2830e3175392d110c4cddfe493d7aa751e794da6d1c
MD5 5fe32c31cf95c9d10fd71d0962a8ccd1
BLAKE2b-256 174e31b9f09d258d0cc748702de4d53600a1f32c73104d6ac14d277cdc8ba61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bb63c920c6ce3ebfedd1eb594d73cdb53b6b8275172cf22f04a005e43326fa0
MD5 16e279669c593097edf3206b27af3e68
BLAKE2b-256 8e5f552a0de67efd39b96ea36e77ece9d64a864a65cd2bf7ae4353411f8bae1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c9a59584fbb6f93c3b4cc15123405c7641976591c165da0a14a733e67c356d2
MD5 69e82e149062fa8c0b1acc1c18db11a9
BLAKE2b-256 11203a7e47b7be6006ff13e3bf9f67f1f26797510d9494a2d94a6336dee47a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8a07d96eeb0eefd874ef7e8cb5cdd277473943c251b0253d64241f1783163ec
MD5 8d0790d2095d9d90e1c8141cb2733488
BLAKE2b-256 72ca60dbc46603cafb9bffb8f2dd00a5990a1c36451fa8d21c65ec432302d6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7936e77d64626ac2069ed4472abbe905c0ec8a52ac08aa87ded5a8cb67e01fa
MD5 81faf3a055192fb41bffc7111340f8d4
BLAKE2b-256 5009313948e1c40bf81220ba6837da22342a712558a6cb8c8db2490901eb1b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5e9953bc0d5f49ec139ae298fd9ffcb23e50129114e99b6d40612f4defb6d90
MD5 8fb161e269c256cd6f930fe3d331d03f
BLAKE2b-256 fc6602c524a9fcc90a6279685b5bd7e78d7e034a95f0abbf6a85578056068f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adc71f5c8342520c2f8ac1bca271ade439defb70f5a89296d8d5f92f0758066e
MD5 cc0c74a8591e618b193de6d18375dc9b
BLAKE2b-256 8f486faf79d3c354306c0b6c872fbe2318dc1dd7900897e678fc0d2ae29e2fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 181819c5b5902cadd33e5e52324cd64e96c0ff706f3c03f9f665fcfa2f520483
MD5 b5a6b17da632ac0034e4b04f4cfc0e90
BLAKE2b-256 2bab599c4ed4ceb0ff074609fd7c03b364050d83e0de0e65c8d45e273c22ebb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82842b7ef3417f35f31356ab5eed8e05efa1bff6e9c254f8fdbe9a8398064c30
MD5 11f0c4c9c9e8cae17d0a55482e082be2
BLAKE2b-256 be6fa64500dd70bf7ea0d0bb297b262fa4182f05d5fac9d1109fd50fa59dd2a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ef38cf23a79327985268ce08ed43757151489143802f6e6e707b77f2fdb0a6e4
MD5 6f08bde0efef3cb5c6420e45c07dad3f
BLAKE2b-256 f173e812f5fd3f6dc5e4794ecf3827bdf90a3a08587b5670f45246a15c5abf6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4993a49cf29fdd81d3b6be4fa398e578cb9aa023ac3986168222e1b92b495f0b
MD5 167581d1d42b3694d6227bc10e353fb3
BLAKE2b-256 ffe2690f4fdbc4a11bd87af4abd9aae4f01d6f42718a877147bc08fe78f5fad1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d151dfce4c3e445c803866d6274b324570a392fee8a5ea567693658c5339a8dd
MD5 aadaae6104ea508b081a764afd3d94d6
BLAKE2b-256 5123efbbc19fcd0606ca05727d36ae4b2333323e36d31a82b30473ec90b76a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d379fc4736b592cd4c535d893449a9f0300768f06dc32067b002bd19cf6dd873
MD5 86579d3ccc84a7c64b9946c9c9694f72
BLAKE2b-256 66cbf4bcd60f93ec75abcdeef1b60150ba8c04a32cfde7de12033695d4fda5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 59376ea21c54935f6698823c8959d1fbabd155ae31c91a5f0a812e6b48446591
MD5 f4de4602dc6a5c43cf64bf7e23458aee
BLAKE2b-256 eb9da7ade8bf08f59a89fa14dba198452d6c474642deded3f4773c54b82c3ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6e7dd62f03ca07ff9ae74b03f93bca797b94b6c44123d4c7b1e9d2ae1ed16c89
MD5 544865beb6672bab4510f9202d8f4c3d
BLAKE2b-256 ea7149b2c1ad5a460656e0bc1a20fa14f8d0652c8cf842ff44dffafb0e0d46fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26ba5c3f10379734c8dc98e19f58cda45dede239d007d92340dbe09a4c29b2bb
MD5 460159a35f603b196f27bd39d0365e2a
BLAKE2b-256 9e1241851eb107d6409af953970cbdec8d052ff19a273d0df88f8c64c9e56329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a029d33382cc955eec45b150aa993e5989cc22e1d1811f434707cc2c021090
MD5 485bea620cf7811fa42ad6ffcf8432b8
BLAKE2b-256 985872b66ad6ac190ced2306d8d8be7a4ef4fe218cd4a7599764f290df9a74a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7df7ab7c9a2cd9ef7dc275c9f3fd5cdaf0a0c4d597781de9b34a3c76486065cf
MD5 0c82d92f62a472ead94db297e57374c3
BLAKE2b-256 fde062bc162678ee2dd2662bf6785e5809d6b21615c508f3435e688f2eca20b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad465904b6807b1ed30616582a2319892ff2da99adb3c89c248110f6926d7f6d
MD5 cc4aed377612597c4d3d2258a860fe54
BLAKE2b-256 03fc1edfce3d76d8f53fbe9a4765478b9c3541160dffabff964eda9651ccb3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a4a2d035453b77f444ee61becc2e2c18361b42b26a0e6b1cf3f8e4b7720eed3
MD5 14d01c6096d9901b1fe60e1e4492a812
BLAKE2b-256 e07b0e41117a0214e62d2e8050caa1f63c52aca381cadac6adf5a827db20ea2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15fa5acc3b277e3c60bfb29b1fa57f17209748344dc95a8a0b214c6e236491bf
MD5 d8388278d1e4c93b5dee4c8901d9a1f0
BLAKE2b-256 f1a7331ee9f66be93b9d8def04416aad710845d8af55828beef9fb5fb6439e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3da988b28f2fddd50621c0b8ee7287294dd1d00df56d9cc924d4217d48de9fbf
MD5 6835c41ade166257bda682936651c0cd
BLAKE2b-256 e7da9c9d774de98eaf2946bb7b7b39f9b7bbec8506f278426f4d6ce208d1021d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09a49f5d61e35faffabf4a1c33bbd8ab858fb38e030085fa8782608beabe6d7a
MD5 0375fbf121e85c6906cddd3bde54928e
BLAKE2b-256 004838564fac7cd6d83700ec100f77b73afc055b5e81819dd7efc63ef70b7505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b15b2375283d02889838f944d5d6ffb7632cd5fabdd1ca97de551b4d14e6e5c8
MD5 12e3b02b2476efdc1a3483cc7300b9b8
BLAKE2b-256 dffb3fb1521fd88ada7d8a4b759d2774df3a1c6c2020d06707183af3e73ae832

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fee7ea734efc2af5be87a4d64330e24d9567a9624ac0658cbc219c9f18d39c90
MD5 ccd6b348e9ef558714ca36bacf0fc1d9
BLAKE2b-256 53016cfb30413d9e3b53c5491231845df8d81f20bcd07c2d61bc0a1538dd8c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4d1657e441cfe08132ddccddf2a335aa9d1710091aba1d149444e5323d6d084a
MD5 82cb6b752c974cd3ffb233f4d86c856c
BLAKE2b-256 89ab6cf300788fd92b21ec991b5166ada5b736937dffe9be42cc3aee680d0b91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be4bd5b70a7f3e265ef4cb6f2e606e574ea9745f4cd8e4512ad38c47329cb1d9
MD5 fbf57fb0e7368152e120bc77c137da10
BLAKE2b-256 b83db2ad1608435f4bbaf6482dfa4b5fe8ae4bbcaa03ee2c253de50fb5815414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2426307f8c314626e0a9e757845fce71f405a3849ddef31cf8d01140635fc19
MD5 ed5c153e80e5ef9da0a54312ab35d559
BLAKE2b-256 8c14c7d05bc1397337d7d37ce5548a7f55c55ae9e1b94c11201548731a7df091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1abcbadebd9e5f1989735bd431d3c4b9e63c8c7a416b05858b1b33b4cb4de895
MD5 0eb4ce14ba257b317ec6c7999f5bd698
BLAKE2b-256 93869811c43315aa03589fdabaefd375f3c16d1788da277ed2130a3d59dbecdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e0632e932b81569d4fb6a3386912070a8de580518b6f8b6fb4806b2c0841b370
MD5 e462d042fd285577104f5a6bf59d6c61
BLAKE2b-256 70463ebe86b17a3128948a55b8b347bd89fc5e2cdb4ce104ef41b741b09a4e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 608f34ebd8b15923fd2934f1ebc0ef2e80bd61cc670f67b59bf25c6b9831fc10
MD5 5588d05e3b99517e0a5e89f0cd1cf222
BLAKE2b-256 3ee79dffa7eb01dc1d56a5cf9d31b7ed0e92e64bba44f0d9cad835d0801f5d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2c51171dd332da5b4c56916546d54a6910ed309691f68888dd5b0e73c1abef1
MD5 b16601b0085b4e3dd66d9b0684ece0af
BLAKE2b-256 1cc6436ce9a807ade799a0ca74f6e94f6d4d53e517fb40f2dc2dcad2007439f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29ce2ce6aa2b3f277b3c697bcc30426360c7866c7f4c2468b5d447ee2c3578ee
MD5 492a4faf5c6d117d1bcd1989c01913e6
BLAKE2b-256 a25bc25744744794a3c362cf47674f6aba061cd128e6744960227e5f0a5f8c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d7b089846372f1e9da10938a98c60bf392f33c6c35102961f7e16666ec74517
MD5 a929a5a873c0aa4c9144e79683025253
BLAKE2b-256 2ff73cbc68bac96c741e060f8c5e3c7527bcd330983cd94dc4a0d7fc65c9c369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12ceeb7b5b2c5c5672ff1a1fe370db3d47d2b81cd461674a29caa364067b86c3
MD5 b39b9fdba7fdabeedc85067c39c48302
BLAKE2b-256 06e57d94499c09f3d2468414b7a04bb91a1f1bfcb51c9ab280b1f5afa5442956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d657e09f89abe81ca72e729a1ca2f13542eae91ed34d2a6c5aef48e4935b82f
MD5 3db9cd3c5ec038d03b72396415dfc890
BLAKE2b-256 0e023f58475d44b0b5c58d3f2304811ad8b1542b6bddd4fa25245f2bac69a497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf6d658805e77dde0d3fd2584f7ecda5edf9ce8ba46bba0d3945dff933bef8d2
MD5 a8d0b5fec809e7c04cea4b462462fd9a
BLAKE2b-256 f89f37de430c0457eac28f51430cb335a9e00bbd8114a51ab4fffc1d02e329ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d99e143b735ae1f1a06922c5399b69750023adb8199f5906567590c22a44dee3
MD5 7087782e76ef396d479f68f4beca706d
BLAKE2b-256 d8ed4396f2e9e47a56b5df7314fe33dbd5439bfbeba6d765432bbbfe377cb836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cf854b1576f5e57b4f53099fa4adb412a647f4ff5e79f5bc2196c64ea0b5d7e
MD5 bc7541cd0f2b184c4534f732549ee200
BLAKE2b-256 c3bc89098a3b7e765ec0b5966a0c2199411a97ee4ce33d85579a47950f5197df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cd287ff1dd359aa3a5c6686a3e84521eac4776d8cffa73f07d4b081758c9b280
MD5 9909070de0297de2e00192b8b85e5c7d
BLAKE2b-256 28458809924354c4be00581217401f04a4b9a36e21e30193d3d986be095a554b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.4-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.1.0 CPython/3.12.8

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 861b43be4cfecbe745a7b132d44f6774dfcd9461179a86ca20ccb280037b8720
MD5 f7a9a13e5e5e921ced635fa2496a0a93
BLAKE2b-256 c1466d167f4cf06ed86fcb9bc9d811a14d09e6fb473651846cf4f92225ab2463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbcfe782d193c086cfd07f239e9da3193aceb88dd48261db3811d5a6be66451f
MD5 aac3b8d11e6213ecd7f0579d7efcd245
BLAKE2b-256 fd7ef0b40fee1caa9322cee92196757a3c93b84047a69840aec4bfb578f36787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2207fe00c101ee43966a659bac231c1e4d7b857490b894b1a620d2a64cb01f9e
MD5 48e3b60a9d47c42e27785e6874ce1a95
BLAKE2b-256 0e5258d4228a3690dbb8e865b3a36d95e016349917cb9ffe29eaece7efe7afcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c6976c80a6709c2a36aa51f489bf2f5931fbab964d6047b43dfd79102585cdc4
MD5 c72a8190e595810218d2f1db7c78d6cd
BLAKE2b-256 1dcaa1eac8e32cce056d96da0ab283b9a6b338c6a7f8a7acf180dcf0328601e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9eb28b3578f25eebe159899c9678d601e6e43c8c5eaaf59dd12aede77bcdf72
MD5 9a683d73037b3d2db1898aace899c612
BLAKE2b-256 2c8384f1ca34d9f28e7f16477faa412d82199fb5f5b790b9e723e4619ec89c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b66c984904b4eef5c6fa700876cbedd068e1b973f97399ac5b557193f902e63f
MD5 b892e26d8c82e705d460bd71ff6022b0
BLAKE2b-256 f5310c41b43a1c88847b2e9e3b7e65659b52c1c57ebde96ffec6b17d151a1a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a565a738b590147f22eba7652e756319a85c00e2ec9a4f5f16719c5717c9cdf0
MD5 6afd5bf89a19786a38829e46af71bb34
BLAKE2b-256 b532b8a5b1e6d9006505653b966434627e553876f4639b4a6762518729bb5c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 513be29af1925af6b0326bfa7b3f95385de3eb37509117b79c2fc48293c7d2c3
MD5 8526a54e35e01493de1173f1fe997784
BLAKE2b-256 4db8958ec15c829ed9bdc2efb5d8d37683baba58013361aa9244f42474cb7157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c708e0e6eaf392b25c5517869023e163e74b9245e43703b8b02aecf27cff968f
MD5 7550fab25c676cf65f9aea76ccbc58a1
BLAKE2b-256 67a24fa9d3a846e31e898b3872635c88f50bc3744e35a820e226e6a070e95f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42dc91c960dbf4c81429904ce4cfd77f5896496ab2988215471db3f91b24e455
MD5 a367463f96fc308352bf463a60914dcc
BLAKE2b-256 e187b790a0fcee1345612024a6914e9c2519d1d37a58eb720594142b91820a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d68884d3af32df5f00594747a69d4392a22ab595a9360d28d1caf31a826fc22e
MD5 77e1a6eb2bb2c39208899a2c4d56f73d
BLAKE2b-256 f4c0d3e25fef208776cd443e84217240b3e3d1a0338e0c37727a908b89090179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24366d8a206532f10c6930534ac1836ee80274e3919a855c2434de0b39fb556c
MD5 8523ef9e31f6eb5ca593a8c61f040d56
BLAKE2b-256 6a367ee41f9009984d4201342a8807cb909304997c6e54bf727ee94f6fec58be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31dd83832554a78806bc342b598d5073f1b9f89c256b8663ffae88aa2c131426
MD5 f1bcf10c2140ef30b3e68cd25622da44
BLAKE2b-256 b203c8bcf7404c4e29778c217117b6438d68c13e5e0944b71501ca72bec83c02

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