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

from pybit7z import core

try:
    extractor = core.BitFileExtractor(core.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 core.BitException as e:
    ... # handle the exception

Work on a single archive:

from pybit7z import core

try:
    # Opening the archive
     archive = core.Bit7zArchiveReader("path/to/archive.gz", core.FormatGZip)

    # Testing the archive
    archive.test()

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

Compress Files into an Archive

from pybit7z import core

try:
    compressor = core.BitFileCompressor(core.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(core.UpdateMode.Append)
    compressor.compress_files(files, "existing_archive.zip")

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

Work on a single archive:

from pybit7z import core

try:
    archive = core.BitArchiveWriter(core.BitFormat::SevenZip)

    # 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 core.BitException as e:
    ... # handle the exception

Read Archive Metadata

from pybit7z import core

try:
    arc = core.BitArchiveReader("archive.7z", core.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 core.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.2.2.tar.gz (75.8 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.2.2-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.2.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.2.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.2.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.2.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.2.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.2.2-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.2.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.2.2.tar.gz.

File metadata

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

File hashes

Hashes for pybit7z-0.2.2.tar.gz
Algorithm Hash digest
SHA256 f5595bff6da2d6ad3654b1bc58f816859137a2e486460c228dd5d5a206b2eb21
MD5 c4629b4252784dae906b77017d55e328
BLAKE2b-256 4515f7a910b1539c53817a1a32b77a5c7f6e1a7747a951e6c4d005851a79bdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12e677a163807efd122d20f673be83ec114ba1a8940f6ab7281d49acdf4e8dfc
MD5 a2a5f6ef6cfe928acef0667dca6f3b08
BLAKE2b-256 e0975d37193d959397b87a6533b64088c578d703f8e02749cdb1a47562777a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 326ac1a70faf9c809fb609097a8e1752a7a1bd593c37b52bd069b7b9ae09e86b
MD5 dc6e90cd07338442d9bc3955cb2db87b
BLAKE2b-256 8de10b74fa6ef4c5515144c8ddf95bde0336d47646cbdbea80020d0bc4c520a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 279739df3993bcacee3cb618f652f2b55c35d5b121368f8b8841aed4b7087c92
MD5 5badf4f14a1f26438ff2bc889f78b0eb
BLAKE2b-256 36bb93d64f43e501f722067cf437f751833eb3bba363cc40ed4ffd07f589c2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17f268ba4f5d3abc27897acf2ac18c8196d972fd4b492bba7de8372bf2a049ab
MD5 1bc5cacf3c3b204422e995c6832fedc1
BLAKE2b-256 8dc0aaa73e68fafc61fb6758cce3fe86a60874b3a7a56cc437cd7069526d8d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3f2668ddc80aa82abf6103ee8656d0085bbf02b2c650c4eaa8efe0fa0b886c3
MD5 5c26f01b13a9f9c96b5bb9ed1295b899
BLAKE2b-256 a582230c945fffba8c51fb231bfef8d18d5261b0ab41469bfa288ff31e55ecc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1683d438d6abd4cf572ef9f922790303c45bbd3363e9c4f517aca737122887bc
MD5 bc92cfa60ea1ee903e1ee01ba2f3a958
BLAKE2b-256 8bcbac406ef5389efd18f2f15aa33d135883fcd2c7be25ba8446b7f365af6dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9bdfe9e682f6cc51270b5f25ebb4806c0ea5e597a55628e7630f116ff626797f
MD5 04ba66815aaca4e9ebe2390514d805d0
BLAKE2b-256 ff37ad4274e3308b4f2cbfadc06d4efaf12ffabe0392c1d4febef057e755ac43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf4520cd6c4dd868ece971e9c04cca20163679d4135aba459c6c503524306ae7
MD5 582b3142b33c981f19ec1d6043d40fff
BLAKE2b-256 c3c88f6e96b0eedbb58c9ae6f4bdbc32301441919c275b54caeb8be56ea01c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e05a4d8bfcf61d83f1bf3d48bf1b9d2940a94ec2d2989bc3ad3630152eeec03f
MD5 a20e290c0146dcf8d2c6d900be791f88
BLAKE2b-256 412700a95d60c04455226fd7b3b889133ffc8829fec94e43e6aa4350771afc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1edb8bd4db243b3c3a48d9785ed33931447e38677b6b79973f06c8cb0003ef5
MD5 3f102e394c5948e56ba15318ba23dfdd
BLAKE2b-256 10a2b46b87a4613f903c0adae3b204cecbcab3f00446e317de6b605f31bd7ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 248ce0454ec4361aa8427f9b56c65b8a1992bf145e5aeccac1d1467dea13c7e6
MD5 9fea31fd7318f83b6fbee0599b66331c
BLAKE2b-256 4851ab9fee9b8fb1c54aef20ddd71b3a37c97c9b83e45e468ff98293ae10cc40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5df8052112cc5d2221c735ca8212eaef45df0783198ec1b6e96bf3b878764304
MD5 09680d6dd755d977069bc8b496783ded
BLAKE2b-256 762ee76db7a3388059b19aa7e8c62fabb186a7c38fdde0a1838a73059cad23bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4732397e9042d73276ac86778b65bec47b80f765559dd372e7180941e1296009
MD5 1a68fd7c31dedb14393d26de90a59e94
BLAKE2b-256 1823753ac739e54ffc83d95dc23278efb248bd68d90beb079fc21cbca19f31fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 868efb14906f06ac25bfe9158d8d38a00fb26d3cc007a68d6c999b50aa99ea0c
MD5 17c91834e576168f956556afc003a47e
BLAKE2b-256 de9063f854e24bc32011303bb684febdc4d888a65db94135fee9611602da9662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e9939047a042ef712fcb72eddabeaf2894be34f8659edc7cff2509b40be1860
MD5 8a7007fe3013fba472008ed44586f307
BLAKE2b-256 dcdded32f1787a2ecdeca630d3f8e705d405b7638f66f8ef5dabd4fbf267819c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179c646bf4535259329a2da3cb4476625bb67d1371c265cc710484304418579c
MD5 db10e8c7dbf9f3e0a9545fee5ebcbe34
BLAKE2b-256 bb4a6acc6ce5f66ad10e62715d9398b6e38580c4052c2b618821879813df06e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29d93e9760f7cd15d1af0811202bb13222e97012fbbd9878e637fd76d46f152
MD5 e95d5ff42f5c36c5b18c07efa78127b6
BLAKE2b-256 db13aa6d0303f33ff6b3167b772b7321c8a23c518e3bfb5f26e35dd302942581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17a28552a1fc3ed09f5c3a39042a72c176035c53c7a09aac03004187016b38a1
MD5 6672073571dd0a51b8fd90f4cfd4a53f
BLAKE2b-256 ffeab40a08407246553cf78f873b3227a1adedc20ba409d1a7556b803d4e0658

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aba01ed6a67d2a9f5deb8742d1e4642e69b583bdc2db17389ddd561131c61753
MD5 a9be3cbc017d75dfe0b4cd8ebf2a5720
BLAKE2b-256 8760217d9ac031fd2ca165da20a667c7e29ac7350da2df9d39b2ed1c24c0fda5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5ac67b0730d6710f2be0345fb6d292a5805d63d54bc4807cceaccb40df3a4486
MD5 78ba7ac92151d94cea59656a254ec3f9
BLAKE2b-256 fceae8b661901050aac6868af2eac9ada717f857fb8b7215f5b97f49c597c6df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f4c97c0563ec10cf8e5ed853fd70a3976f7c409970ea28cff268d8b067df0892
MD5 a50403cfae14d4f255605cbdb223e2a2
BLAKE2b-256 692d229cd63355aee2cb5e865b0a0d5644d5e106ae075559dc5b314b0800cb66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 474c6a51f058ad26260e364e4bb2d17ff70afdd5cce6a43060be08cf7bf04206
MD5 7b129d9579b6437e9bf8729ad7821780
BLAKE2b-256 2e3ac3b8c60fbc8c2a49011f9cfb65a823d6fcaae2cdf8ea3b4de5b53eb9b910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5fce18db328e347f93d964f6e14b9e1a75612fa0bf468e407b92cd0368a4acde
MD5 bbe6ab3c29614673b18ba2aecb25fc9f
BLAKE2b-256 ca3aa54159acfb5f60549a4f6c5bb8aab996479273e5ab0e63f72b8ef05367eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 56ead8ed4fc167caa42f5fb60fb8ee17df343a6f4fa50c649889e1cf350df5c5
MD5 eb7f8ba92fb9c85d3784bbc6193673ce
BLAKE2b-256 0057ca9521f12255d937d65e441939c26fd5e71bebecdc193a807ffd8300696e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec1301726ddf6be7ab65cf8e89995b6675f67838bfadcbc91a211c0ac6e4b244
MD5 dc1efe597f69f5c16e9bcfc414357962
BLAKE2b-256 0c53558cacae6c5476b5e3b4b5ebdb0e3cbe4eed5e796f334270c810eb799f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6807c72e9ac0533c5e247b44e7db94b7e29600e1b083acf6339a5e71724b9e6c
MD5 a514e9f6b103260f06ec32284b27f13b
BLAKE2b-256 ec587e163b4adf23466bb06dedd1bd626a81dec9b3e0e5df4db6100e330d0cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f462b2704807b48bfbcf73546110498c5127bf42e2ca3cda8af9c45a38fdf19
MD5 387f7ea93d9a34d8a91971bf757f2a38
BLAKE2b-256 1a9dd55f3719850a16c43af4a4b83b2913eb13f0505245c217659d5d2ddbda70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03009bf3eec49e25b3b93f081fd50e7592806bb7fe075080fc6a120cff25bb91
MD5 ef3882de15b7aea0aa7118bd41db87ba
BLAKE2b-256 4c9c6126045dad0fc2d0c08aba6c70016eb1dc322829ea2d2625900a1d820bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abbdb5906ff11a0f83e92cef4928ac1429d01b08d65d572e9e2ec605b8c71009
MD5 126f83e3c591fa8b39fe40f9718c4f98
BLAKE2b-256 b974ae380b04609b8769f74a98df3623f6490231869294c932d3876af434eaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be88a3e22a7fbb14b2f41f9c0f85e9bae9ece57b2b2dc0b20692a6ffa14b0c66
MD5 ea70bd97b396a2edf49b00b0883a27ed
BLAKE2b-256 8d31d4b15f0b8f1d44ce78aabeaa05997ca63a7d0de4cd4234e69c0113120ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07b4e0d430679d42d135ffbd5a707a5f403b50c6bdfe7a100214073dce8c5f4b
MD5 c904b7f2283543a5ee7cb80b43e5a248
BLAKE2b-256 cbcdf62633a060508c0cac4d633695039eccce292c59c98416c5a450f98c194a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf9445721e008e7aba101ddca8a81afc29e65ed79f70157ed4e4dfef619b5191
MD5 ec2c095e451f25deb9b43b8010dee773
BLAKE2b-256 e21513956c0a667d64bd4fa24f4d0d8b76e388989dda84b62e7f6fe283ed09fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0b296e3d502af434aa87def3b80e80ad367373766b93f5a4cc58c7acf6f39e45
MD5 2ad9b3e208e5711ce774845f92602958
BLAKE2b-256 d12d1c8590335e12bfd671a76136ab9077997ddb884b473a897439fae6696430

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9e89f2c5d0f0571d3ca0b30757733aea828e0435905313572ed67c16f60fb031
MD5 dcef99c8c06edf2680f6204215549215
BLAKE2b-256 c1130f9054ee7d84a05eafa1cf459a5a8a27026f15c04e342216eb728104f0de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c165b6849d8219ee4b003d5cf3394bd719ff52496663fdc90e1c5cace8fed3ab
MD5 9df0cd2a1db2015c35b4fb5110ca23cc
BLAKE2b-256 3920bc39f591cd651bc7d02fed39cfe6bdc8632b40036379d96ade9521ad044f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f14fcfb805b86ae10d7592d67e541ccd240d5a7c4f59236ef2d9f74ceb5a9dec
MD5 47a457429fd84d773f6e65781c0d48a8
BLAKE2b-256 aefda696a7cf1aa1be13a1642c1c9a14ec7f77e666dd14ac8d3cdb34603699c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 155a7fd7a6da575e59d520c340b2c8bbc2aeaeb41e822a706abbea2523d6d0c8
MD5 681b81fa217cfd1230f41115c273dae8
BLAKE2b-256 338e9f7f5313fb80f2af10fa66ced49a0a2c15394ee5f0f81fd9e53ad863b0dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ce06d529c5ef0c417f94dd24b23c25ecd2a48f512b42dcd054bc5f24b044d930
MD5 5a38f66f3d6143c550c1dce91cc27697
BLAKE2b-256 39d30429df7c3416dc87218a50f81801bf634884512bbadd273d30b831f151a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 096cf4d525d794cf0bcca113a16bd7a39126f4b00d4f974473b5dfea87382101
MD5 443bd048b363eeee3cc47716edc2b12c
BLAKE2b-256 11d1b2e8b9dc29c0600b24c8e71818942df3b29a887101eea28b215451be9d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1eb5ee37e490467f336988174d61e451d037c58496adb85447b436e93bb94fcc
MD5 55b0a9f921dd92e639db1a1720b68938
BLAKE2b-256 cfbb402751fd32b285aeed81815efe8cfa6c8ac4e4949bd5857962255295ad52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 558f5fc4c0d6335ce8867ede93b3444a20fd85bd0feb0c1c8839598362cc8e2c
MD5 94fc18ac1cfe011e559c93d1cf277626
BLAKE2b-256 c16bfad48cd5620879804317766208978f150818513a33925f364e2e3fcf0ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06d7da0d3aa55b30649c39551fd8bb80f54c5f57f6cc2f4fd0ef1706fc220435
MD5 b94b900e6e3fdee4db022e284be3451a
BLAKE2b-256 aac47394da5104baaa30d74d98425d7102aca8a5fe7f0af3ac654b292c9e291e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f87eee6761fda5943706bbb7c7cef453dc54f420e834c36d7d2bfce71e9b288d
MD5 771eb927fbf91942ae6e4edd4c32e5a9
BLAKE2b-256 755a40aa2d181e752325c2b8524d33971d9df95d506399a6dc1f943244a56d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 967bf82756d118da2756fbb516173aee17cd65c6dd4fc3a4deb958def718f6e1
MD5 c8f3ece92b595c4dd45e6401142d13c2
BLAKE2b-256 efde10345e7a2295fcf367e16d8281852b0b18c98834b4b9ef6cb0328da62bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4472fa368f61f4d62fbefe327ed2031cfd6c9133ea5354de330d0e2c5b0aa4c8
MD5 7e6f461be724ee2a974ac5e3524effab
BLAKE2b-256 eafd1a2bf49336621d7fd65d06eeb7d752945ca401a35fe13ae4713a47bd2c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b38cac72fbaa1cdecf62ab9725778936214d6f6d1b131821091baccbd91b68de
MD5 966e6fc75cf49568bd10b5536f9adb79
BLAKE2b-256 ffc09281e322eaee758af8cf0147dc9f0a55d937607b922c48c5a9df4b8771ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db32679c3ec2f0d6801958fbfab60490bb41be42fa08de6fbdc25b1061a4a58
MD5 671a9e143a1c7911045930ff9541bca1
BLAKE2b-256 c003fb1161eb1b3ede9f27f566bc8454ef3860dee81d9fdc91973fecfa182747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e0295c22b72bfcdb2d1eac1e4cf350aa420dbcfe8a5f1bbad2dd192ffdff122a
MD5 a8ecfbd0f92bb2bb93903ecc23403a1b
BLAKE2b-256 03343583057a70bbcdedd43e662d0a1eade66e8dc7558d4cca0a7777b9779908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c9f54d57f8356112befa768505006e42d98beec18fea776b4a14f776287c5103
MD5 8cb3c6fb9a68bac862605083fe8eeb54
BLAKE2b-256 723e9f2704a1c6296a4810134166b17f2ab5136d5fe31969dc919eabd4824340

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2fdd7febae939f0449aa6d8d3a7c35655eb7cf38c3f537687c4c2dc43ac6121e
MD5 fb2478735ad357da6521f9a1235ef797
BLAKE2b-256 b0194052dc828261d87b1c2efb7e7f67dcf3ab7741fce01208b7b9e0b40e13bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d3b6d0b83bf5a92ba0dd1b73b9d54c8cd76debb8854b045261ec816b55b30231
MD5 b60e217cc6cd97fb9f5fdf7fd6ac3f56
BLAKE2b-256 7bcf7526f89a95308a5772c7ced8e4309aaf1ab406a30abf9b6458c20db42936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12c42246348a25d14401ca40da677409ad572842549a1d198c288f5cf2e18280
MD5 c271ff43e8332b7f4d7c6101e1ed202d
BLAKE2b-256 f25dae45977314fbed05c98dd4a0a713d86c6043172e8e68d7b2a2e6ecfc8855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a763d2440a56a62a71d160a0aa3c12e38212e99b50932748223c0187b0c13eea
MD5 a7e01163b9f1aeae3e05137acf1e774a
BLAKE2b-256 b34071105a3b101c84c96fc01f685a237717a0f8507d51e6138925b44d2906fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cf6311e3774adb9aa3d4eff4dca0b0c8539646155c5111327be0dde23a2a5dc0
MD5 d40e05fdcc4747c8d191636df7096a0b
BLAKE2b-256 f7516c8386a44bbc362e613afaba316a35257fc20d66c79ef429eba213900bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63d04f3826cc6381ab9b526968ceec299ae51dd875f19b100bbf4c13f9b1d8b6
MD5 d106a1996903d316caccdab77174ce90
BLAKE2b-256 cf11a23c91c9da2d625b958c8f953ff23f03cdcdabf841d6744cf901839f0e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 caaa660221994ade6511385d07072483c2add9791d906821bb7c1ae798b4e11e
MD5 daf2f14b4cc2030145d804b608d30328
BLAKE2b-256 470e4c4f87f9648c046b98a430716443666ee74759ff2aaf4f48fafdbe26ee76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7500a1fb2b3583bff5d82067d9a1b7cce5172622de3ed889adea22357efaa628
MD5 1c89ffdba246f380abea4a6748c63766
BLAKE2b-256 831f0a14fc21983faf93cab5bf8f98e0eab530f4266754d37ffd582f41ccab64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df54c8b03c310ba7dfdf707ab9d13c90a4d8579519b7d2dec8089b1926a19597
MD5 a13b487ea8faf90c50292e6a8c5e9ced
BLAKE2b-256 f27f62f7c8f36db550e679d3ee2f252fe76ce363a62e4a3f7cf1b92346f72a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27adc7615711da6fd75c1c3909c60546f3c27c29db82ef86e59655b8a7cf229c
MD5 cad97ea78e0c960036276f7a65759845
BLAKE2b-256 1d96efff5e097461e4aae0d56c8a10b8de52ae9c9c34ac17dfbd467755de435b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 857eb8b13bce944f4dbbbaa891cf2d07a78cfb95f63936429fcc6c86b05b7645
MD5 74772fbb52add2e48a14d1f58f5cf97c
BLAKE2b-256 82f8b4314e5988a9029b48520b8ec8b514bd762403820150692534761367df33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4d7e7ad23165cc001ce66ee4b3ee4e191652a1aa2985034b7cb5d2756b76a69
MD5 98adf9a4674a536d204f5a287f2860d4
BLAKE2b-256 c7a0b161bd1a05b7a880c50d3209c1fb31ec80d5c9ecb00ef667226951d68392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 037bd1a80dda0262b0dc57abaf803de2b11dbe5eca9230538468081cb68fa2a7
MD5 6a9a47cbd9b1d4ae03af728d1a64af69
BLAKE2b-256 f444eb7e10b5b8af04dd41773cfd49010543bde050c30539c3db89f105fe92de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2a3042c0cf9e9e9a7f0e67b44fcdb55d293f42878f69799bbefe37ea767661e8
MD5 cab439a79968d20fda71eff0c04c3bc9
BLAKE2b-256 5793b5a72023b92247e9efcb4cd62ab305ee3ac65b9bfde287828d05d451a0d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 66a0947191769132a5f544a3a34bff6355fd2e1e55140eca6791470856f806a3
MD5 42ebad754d1d869db9bc6280677d3dc1
BLAKE2b-256 5e661e54ad324884316e99798797f96e942bde5dec933da36499b4a083fc7363

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71b87963b54e7807f456c213c4c25bfced6eb0381bf90b5a3b8180e5653221f0
MD5 34e73b33db53dd540756d80b51009bc2
BLAKE2b-256 4018eddc13139b9295d285c31db94e4936020763344a99d583eb12ca5806df40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3ea788f811a0ebea853aed961d765c44d2a0ca06b1b82d456e0a0bbed0ef60e
MD5 849f72272cda3d55df60282b9caba858
BLAKE2b-256 66076ef4d5dab75cf3eb11e8e87b0a026cfd59c62f5a0232315f2e4e5737496b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b19f08ba0a4f82fd72ab42d434276db03f8718309165e15dccfc5480ef3be30
MD5 b6ab6de0aceef8c622fec1894646bffb
BLAKE2b-256 80ce6489d289d0285965e33f0992a167839d4cedce980121a2072f78bc53e976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2ae7f598c915e6881af510bebc1e8f3035179075e82b7a74ddd3de187d061735
MD5 d4aec7f10805b0e05d680d08aa0cb919
BLAKE2b-256 f2b56c1d53b02afb1144f3b9421a1a0273826e8a218c1972023e5e323fc40bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2c8b6218b1589edc79464e841682197647bb557b7dc6a6601ac03cef5b9757a1
MD5 4dce8be1792b0fce4ea25e4583479a10
BLAKE2b-256 576b7b6cf64b0b882d7ca1944f7d23424527770361c46c6e4bf2328225fcc94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1c6b283e7076456849b1e4d2b82339d250da6e1baac5160454003dfad903fef
MD5 f1c733edf5057d0eac9ec67d501504f1
BLAKE2b-256 810431b2f0cbe6146fd86c2a20f7b4c30d31cc97c21c4c105fbbaa449da4c270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3d62cf136a8e1225d65bed009d72f0cfdec599c2fd0cb58f39652cdb3923862
MD5 c99d2ec32e4035ebeee8d0fac0926f61
BLAKE2b-256 356d4ea920b8045cf99a3cea2350ce9e112d7e61279d6590b61c878de94e1d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d734baa0cf0a81c72e69b6d17e5fd651ba8b4422186371839eede200d09e7f
MD5 cc8725e2cbaab3ea3570ecd5968d1553
BLAKE2b-256 3973bc539c106e6f1d20eef7601d9cc23eda91e01ab5b5571f58fc13b2db79ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc44e805e999f6b147d63ed1dc730e635039b99c7626edd6d1b7a0a64d80a329
MD5 6a32e655735e9e478768f40dce83a4a0
BLAKE2b-256 74177c02db70959c131c6c903fa3de5ea828df8e0959034d881bbc883cf8b7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b0e4872fa48ba728dcfd493ded35c5bbce44a549ed69b267e5b43b26c858c51
MD5 eebbdbb4f9266f1ffde016a49ef0b5ca
BLAKE2b-256 f7d95208b4444518676e19d6bbd4607645cdb5fa3c28762a077ccf1078256a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5418674603e6e90667b2bb1343229b49f35b994f156f3284cc284f672421807a
MD5 5cfadc4f5310ff3f2cad96e2a0228206
BLAKE2b-256 23c16ace9f3f743c45937cd308ac7e09eb6b62ae4f4c1d344af843965164c77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5783761da8dbdfadb7e0b94530d86000f83a007e1f97cd68058ab8c2d7e4ad9
MD5 541ecaf6ac57814f4a7287e7a21413b4
BLAKE2b-256 02dfb498022411e97b32ba41ceeeb7c789dbf40603f403030a67041a9135026c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e01ccbbec8f7d3bb3bab13e333866e53db46f4c7d27e47972b5d0c551d691ecd
MD5 13197ac2d0cba627e22c8b83af83eab0
BLAKE2b-256 a9e240299c23e443658ac55b9d19e95840a2a7bb5b797c79a3ce1b7a7356e7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1da645d9f5b7fc1ce5d734a87ae4b36faa19a2dc76ecd2aefc3b0c3ba8685e91
MD5 8e5ea2224744eeca6b4970183ab87454
BLAKE2b-256 5bcbcb6668d0eb0561fee329dd5c9599413ca35ef6191a4c6b1731a299174f61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 50e588f3570af56ee861648871a20b2eb784896411951c7f652d4c7c741e6bfa
MD5 565ae79e88ccfce52557c9a9e4340273
BLAKE2b-256 862afde856cf886eb995be43dc985d85774c416810e127b9e2df64cb34166638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4d021790360629f279287d6172ca3ae56ac579ed1731294524dedb714c36c7f0
MD5 90883567628df768d1617c6f1d2e1563
BLAKE2b-256 c5a563a527748f30f700a13f76099aada24849fc2c8d673180a353cc3b9901e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb350dd393664c5433b21ff5022bd5dcdb89933baa3cb0a2cec702b7a1b965e6
MD5 2bf8e8acab1d0de1afd44e284ac28198
BLAKE2b-256 972d6e4a5b049bf824ca48d6620546040a7d9b6111a07f11b8dd180018d04967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 354d2a0a3f1fb7718cd401bb614f4c09da0ec4ec2a2d0a5c439d186586e11110
MD5 c5b410f12733cbe0d80fbfe8ee65bac5
BLAKE2b-256 7f386aa1dafc8486ad79477b0de27fc758e3bca2a85f01ab5ae61b10a8a7f757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 75778e7b70928392e01eaf3252686ec976043985c8ee58aa6844ba71589dc019
MD5 583ff99fe77e674a894f502d4ea497fb
BLAKE2b-256 4a3ccfd4dbc0b1c55c038b5717eabfcfed4c608dc8c195cf8da9299c3cd5051d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff63caf25493ef89c2591ac2c0151802cdd5f124c1a5e1dda47c13c19ebbb5dd
MD5 ac77aac595cc92f590783c9bddbe4c44
BLAKE2b-256 e1b7ceaa4af2ced3aae2713b64494b61f768ea3589e9dff16342fbf110a15984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7000da1956142aab86995f1199c6ccb35702fe342af538c34b0efaa6cd0f0655
MD5 03b43d5ed91c8246cb5a1e0cc18aa65c
BLAKE2b-256 0d1fb0e3158791a3047b725149ade218d468e7617f4fff3fb7e6e68b8521720a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cff92208f16213782223b1c082b6f24f9e02c61c2c7f87f7b5225a1aac836aac
MD5 cbc7d483a2881d7f67c0956c155e7ff6
BLAKE2b-256 48d210c25f867aa26c40346a76b05b45507be15878692cdae421b7841c87ce73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1903a0c33d91460621ec72a2356199aa6f1d78b50459bd6821f167b4554d6c3
MD5 1a6d612da6e7c0a8ecb1194ef467602a
BLAKE2b-256 d3c9830d36b3fd4ea83770305de823118860cd6ec76c245f6cf0004b2146c7a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0244ed617df3f19e4addef4493666d91f4b6ca8d78166debe51862526cc1b41
MD5 6220ef0e5ea5a16d498005e346ca8dc0
BLAKE2b-256 63255ec64e84f2414fe99a182e1debc91bed6e542e041c30e2e01efc982074b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6c8cc82d6487d0ccbf97a05efaf6b7b3ceff6a192786188a5e4ba6c90964643
MD5 d6367ee115c249ab122c1398a5f3c39d
BLAKE2b-256 0971b34db30e27b0e0494a1769dfa09df466db1fc9838ccf29c18c03a4dc4f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5da204d34c04705271b51ff597fdd8248f1d277aa69ae07959c715e88d5cb0b
MD5 ba96ee86a34dce8a979c68a9a92eb569
BLAKE2b-256 2aabfd878d88a738716d264843abeecb572fee8e8bb8aa062bd1d35613dd6f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab4c3058700f8a6524edd41cd307f411fed222dd2a6a29ea62ffe705b61f4ce9
MD5 0a7793c4621c3c0729c16eba64c142c0
BLAKE2b-256 b0da98fad382f984eb09f1649295aec7883869a7362b7fa62b7a95dd0393c9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c8a3924a8885acf2aff6cb9171ba58275db91135729ecf197444d92a2833cea
MD5 4b20092e51fca129e7eb9c93e0cd7c8c
BLAKE2b-256 3bed399068da7e6f30e4af0a4d5636cd561b438a74214723ba7d936a50da0b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1feb8ef5f52b744c18314220a1b50a4d550faffb1b453dfb16ce6a9919acae59
MD5 a07b1a1cdcf63108b76b069f9a858c8c
BLAKE2b-256 b900e96b651daa0ed615d4b673c407f4257608b71ac97b5401498e633c579fec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b41ad283f9a72c9c9929b1581000901f67a3631054cfa79cd72cbb0d9a4c023
MD5 ff99199d42ec920e67aaa575a7f08b1b
BLAKE2b-256 901ab767c456b6ed20e2cfd9225c471f5bc5fdf350783f38b3fcbc814fbdf240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.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.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bb01f13f51a0c5d883b757760874595f6635a43220298e6697d0a1258612cd40
MD5 f8f101e5747abebea604bce756d43c08
BLAKE2b-256 674feea3e9fd65380256a0bc5a206fefd5c9cbe133909e7b216ce24d0bc66d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6872cbfd0860d40fb08173f9bda4b0807ffdc9fcfc5c7b04d9c91254e7abfb4c
MD5 3ad7287061ca72ecd0f134ae3e58f90b
BLAKE2b-256 0b6c37081ed1e034395fab44690f3753d3dee81ecb7883388ec55506d1967575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 386f42523ce2ad00aaa9e5d4d84565685118b15ec5bffb8a4e0095ce9de449d1
MD5 c011ffd6cfb77e41e8e99e66f66d3ac9
BLAKE2b-256 34ee25da14a3cbf79f12618dc2ebcbdf99cbd074cff4be217f4728362f6ec282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2cfc8a8ec5fa85402f1b5e8a69afdd4c20ab01644cc7adcd28f611acc0ee589c
MD5 9a39c4ce0744d3c499496d20e86908eb
BLAKE2b-256 750d7b3d2ab441f24256caf27c808debe074a2cdf251a6567203eaa157e3a001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91be0ece9fa5a5cd32b64c1fe8c85cac3ddbf91f96fa3283bca4a6f7777b87c4
MD5 9526eae92f4b7b8445a11f52ccdde57c
BLAKE2b-256 d2482c43eba098d90306e7555cbd87d7192b8a8c9c8f044f4f43ba9c9a6d0c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bc3186762fb8fcf49c57f50e0817f2b93aa145a3646d7580477d3fa6a68448b
MD5 29e543d923e92f4f8ea155f3950f9ee5
BLAKE2b-256 baf89a249add1203be97102b756088841d29018c72fa3f77f67ac310273d1d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4ed99f2b93b1412416cdc144b17f7da66e23e49e7e21dfe02242f037fb24f37
MD5 5b1e46c0ab23bae2f523f5b905155ffc
BLAKE2b-256 21079917f13ee0008f187f4b041782a321046f0f0e8a3bbe267358adc8359ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fb66730f436656c235d768e2b803e33d489f9d19e9817f4e56afe42b839342a
MD5 30bde623bc1c08c523dd80bfc816969f
BLAKE2b-256 8d56dd9da692f9faea05ac524a0f986eaa3a9c9b9293deefda52beb1aadb306f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6c9388dd0a4a0e2c94e584ca440e24921fd3e11b01342fc9244d2ea396ff555
MD5 463a548cbb52d458d08011074476b4aa
BLAKE2b-256 f0cb842b89bab1b39f7612e624787f8ca500afbbc776b32f7f66844dbc39beaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4c45bd61f7b92f53211b4db7eb534eb251cd2461a9beb6356a871617443408c
MD5 c0f5f46150f28b84d378dd9bc56eded0
BLAKE2b-256 eb4c57129a081cdafdc47f1e8211d3189d0e08fa4e78c204acceef50809a668b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed480ece035c073adac73cb601d8fbac4dde399fc6041b32c5d240829b473147
MD5 e2cdf53bb97b2ca4db28055476ed81e0
BLAKE2b-256 26e5a4c09b30d5fc91212edc7fdae2045cc6b25262f60720359a50208cbf1b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c27ff006973e216086f24d0aecbe9abb42f1589604a44a59e17c02cc34adf17
MD5 827f1e3e4707c50601f3b94a4c1ea64b
BLAKE2b-256 4dacb4178e484c09abd8c44954f4ec110ce9dacadfda514da9ced718b1ab9b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7ffb1e9a3ccb00a566c22d593fa3dbaa5054c9021dd27e82d4b3972e59df099b
MD5 639170de15aba8541a88061aab80d1dd
BLAKE2b-256 95b07c874403993ae81d08d6712e248a9e6fbadd21c8e6c7b55944f264b40480

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