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.0.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.0-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.2.0-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.0.tar.gz.

File metadata

  • Download URL: pybit7z-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 b286c207d5cf8827e6c066ee5a30325183c98ff9027d9019003b2cba06ed1c34
MD5 5a38d11de534bd00b8fa7b4d8594fd56
BLAKE2b-256 6ddaa2025f858bfca69146e1d6c6648d5cae3e9e282d7e03db17dcd5a4f3eae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4da15c4f6a838a490e12c38eb5876e4d1e3763043e24649e3f61653096b5a587
MD5 47e13f0058de783d702394e7a6b93a00
BLAKE2b-256 7c8da4c7ff8ec498446080aedbeacf2b284de9e35c1379d879bb88fe3f56931e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 358dde46bb1793923aea3e3618314c1f2d2a8f3fdeb97aafa2e73559c644e243
MD5 1786b8bd65b19d705b4bb8e14a32a281
BLAKE2b-256 273bbc87fcca4d573dd4854b802156c48c7d9996b8fb69181fa55af34c064a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3a05a470d617b867faa4b5e563a4f95aab27d8a127e4b285e2bc962d2a7103a
MD5 03b1ca7dc3b14a5ec88fd26e596be713
BLAKE2b-256 76cfdadfa6af32b62455e1315425bd576cb8f8bf945d79355883e1eeed563c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c3810331624071a3c0fd06cde8d0a215a293844d2c3fddd7d07344682abd888
MD5 aa5823597bc0da7abe2f0a2e2e532292
BLAKE2b-256 74260499b53be98c97d56a76a824f8bf40b1709667cb0b70f85d6b077cd649b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70cea27aad2ca7c29a28b2ae05be70a2e8f6c41a7c8e6d52365b08adf0d5f434
MD5 98ef4d0fd87c1eb3c9875c5512ce0c38
BLAKE2b-256 56c8739e2c68fc4aecb7eeb68503d57041608bf2f941e3b2df875b30b65a2a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0763423e2cba0075751c478cf8e0a44b9dce86c97d6b770be490a2865ed01e4b
MD5 23053068f30f20537977d935fd257ac5
BLAKE2b-256 2a0c2995edc0d23584d42416f5a313727a215bcb76abb36037cc4b8c0b0035dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4202b276463d107addfc190f040a7c9a309d6cc0026ebf27346bb32dd381671a
MD5 2efda6f035afa9a9b7b02f31c17a9570
BLAKE2b-256 4c013025bb5b6a200666b9b5ddfde2178628efce75b72cad2f6e56cf777d4662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc219aa808d597cca0c249bdc1fd22477758e8ddaacfb765b06a1ba5d849c88
MD5 954960e067547c1f20bba44af60c4194
BLAKE2b-256 3d9a6dca1e3c71208ddd1d40787049958b4728bc2cd94ad70a952ce69f0ffa57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 393a0757cbd716a6d7249bc0805643b90de806b249b470f66879285df2681192
MD5 a4895958825c47c1a5a967cfd2ab74d6
BLAKE2b-256 f6a4257ff991950bd8bbc1543122c1b7d514fcc306a29ebbb8cab86e8f77772f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a04eb48eea4ef85c186abca2f99f3864f056fd977a27e8ed17b19d203ff27aa
MD5 8cb9705ce1fc4d45f75003ddb7b4c43f
BLAKE2b-256 342742be2619a19c3f7cd1ce72fda542caa84342d7924d02b60cfdf1e3bd7087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0054211278dd99edba704f77efd89a2a26e1c3c39a8abc6a8cd9b5f45fccdb29
MD5 cb4ccf95b568ed89047e910e023f300a
BLAKE2b-256 e3f9b8bff003df3163709a67db5ed697ebf222154f5ccf518a722769f18be49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 475b4be3f0a7130215153804897ba370def7f94b8f0db3bd06b37334d5d9de12
MD5 31178b27995e8eedf4c61f5463fa247c
BLAKE2b-256 9fe627a431ed4c048076cbf9220f29d1c0f7845d871fc90ac90edb31964f85f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4fc564af33d804ce2b4fc70007a7df6cfba43a11b1629b19eaf377e53a4183c2
MD5 0c5cdbadf6b1ddb8c0063f22189f561d
BLAKE2b-256 1c43290e06e333aefdf342a3fc698521a6943b82f6befab70e0cf47543011a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 232cc7de669c71ea554161a087b3c9c31ef1ef72b9b80744d1bf4325e7d8f069
MD5 83d7249e8907e27e1bd85e17dc924062
BLAKE2b-256 ea65dcfe6533311764b14b8a0aaa77f5dc1253fa2a0df903aa71648617c1b9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ed5856cf0b96435070ca7ad586d8f74f249c4bb95ab177262e91890ec0bd86c
MD5 e836a2636e1e1684ab8c08755809bc72
BLAKE2b-256 f9bb724c37fbd31bddbc6f5d8f53b28f1e0e5e8b20c38b6af7627e578573c8a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2466a52f71d55ec73d101344b62eac12729074e6c09360fb47b31813d17e3bef
MD5 3ec35598eceffd0e03e045601e0a439f
BLAKE2b-256 b589ed2f4e2ebd656a38c230400464d685c893ba51d66a0602bd312d5b4919f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852111a240d1227a2529a3a5860931a3a919806c78534e407d6b3f1d69c3cb71
MD5 ca4187a668f716498a9e9ffe46be8f01
BLAKE2b-256 a8bc4e5907ae567629af679c7a8b754c4a7bed703e76079e562ea06f1a15d856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e96a0c96010a66d30f420af96709fb2c2d717bbffde85dc6a2c4b2be62b97d6
MD5 b302e1c7500bfff8cee0a20a96f6e1c8
BLAKE2b-256 387b78c9f4a2e363172cbaeccdad50fbd9de50fd2f41174d6fd2e8fc1d5d5230

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0cdf766ce8fbfe2ae65509362bb56289b784449a49fe25e9dd8ff3645884d5fd
MD5 fe6374a1dd396f3b21af4971c7559308
BLAKE2b-256 cf56b38e9337bb855861f42cd3c4a69eb041596235fee0d4df57ad0f97844880

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9243af4eced24c004c5d877357b218a0d6e54cdda4c2e2f2d6cd06f4d613dd10
MD5 c004fdd8863879afc50910fe721ab3ab
BLAKE2b-256 6b37dc2962944566e1ebfe55437a6cab8702547a7dff6ceffcc318811c41af1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3fc66f464d91b041b8446196245426c9964efdddb38e5b97f940bc314a6b86ae
MD5 2160d26be4ca2f906f0aabe787ab4b51
BLAKE2b-256 5c9139d688fb09d9550f682c95b3da3a07f8a4229aff23d12b44bcb6a51239b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b23020c5856a5a7a79a564a862801c25e80c8ade8b63294d81c8faa03964574b
MD5 3bdedef2cda65f199e6b0a82fe28644a
BLAKE2b-256 c18c29c9a8def9e00e95be5fb2b3ff366a2f14cb6a65e224de847fd568b9d3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 53b6a104474e2524d96ac75105f602f4d1c250a9ebe88291b264bace63d68fc7
MD5 306359ebcdb584390270f2930f680d61
BLAKE2b-256 c3a3c2f5d4344fdd9b60adccf589c4dc3c2b4694504ff7100d61b9648e54c56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4d2e3e7358ef37be3069b28461605e07e7a5adb0a8820abe647ed9f11f1b071d
MD5 d21233e0b1d094d0dbb5af94c0f681a4
BLAKE2b-256 cd8a9d5d6d03eb092ce5241afec170841f89cbde9e3209eafdac601ea19941e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a207f2ee1fa8f6e7ceae397101e76356923c2cf0d009773dd021407c214d840
MD5 7776876c2825123a56676cd0419dc2dd
BLAKE2b-256 b0e567f732eedbafe57c458977fa2f68cf68807d3a2a5f7ab131dfe07f4306b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3235f091e17594677d1aa16907ccc955a651b44d5db8bdf6a4deb964ef7bf0e0
MD5 e06bd944768742866cf73c5859342fe2
BLAKE2b-256 3bc5bd4452307d546073dc534f7dcd629a043f7a5747e94a9e8d18e1c33e4b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 617fe9a8e752f6483575228c5b87fcbf39875b013f47bc0c42bce5eec0a4a350
MD5 818eb9b3f7cc0e04d807e6c454dbfc8a
BLAKE2b-256 7adf7e9c4a22a35cf892dae3b2daa8274b9cff6ff4b96ff42d5388b532896de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dbbeb9b64ddefb11897090ccf4f561ae0d1916b7fe97d1532c6e82ddcc4fbbf
MD5 89cba38be564dde74a4df8e4542473c5
BLAKE2b-256 4f0a2aa388de26d390e9d625aee10857897148cfefc699eccdae913af6a83289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f32bac7bbedcb05ec08837bf03eeb990ee566e9ee093671b1e4cf60902769c30
MD5 e4c7272aeeb1ea471f4270f70427f1c7
BLAKE2b-256 0b60d3a9a7cbf2a9e9eeccd522fd40ff19707bbdc3f75eefb27e00b57e4d5370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdd65489acf0fa33d15c9ad09577c02ddf1f15895f3a5c08a1a49d2b987da5cd
MD5 8be030c44f2f73abc8795a2801851530
BLAKE2b-256 dd3b40a226d1d6115383c45cb7bf7a8e83f2e89c11cc7392519bffb7bdc4d604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f90685faeaec114865d7db64be58926919193d51f084d7aedc011fcb15b8d5b2
MD5 ece3d4cbf9f102e68e6ba00f726675cd
BLAKE2b-256 d7140a292662ea938982f14c9a9d6ff098356130fba16b8b6d2bbb4dd265bcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cce15f2e08e724377da43f1f89494b45bab12ad36000fecaaa5ace1b14e8015
MD5 646f29d8dd078521ff04662da9e37927
BLAKE2b-256 b28f4b526a9beaadb2ddd7ab09412381f5d93eb11d52c1de22e220d3595bf628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5663cd19b4bb673e00add2eda8c4525f5f7d9317cf3d94842699f2f31bcc6a21
MD5 76f06565782e80be2da9f3261335c3a5
BLAKE2b-256 6c5fd4cb55719f69b2626634d015dec87133c1d3656f00cbb35b3335b8f33664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 94f546b85d6084e0327734e02a5f30f7e886f58a9867f8d88c4c2f2b3d790f6a
MD5 2589e43c24e25ca23c562cb4b0e1e985
BLAKE2b-256 853a327829ff1f7582166390635388befae3c5638930c7ff9b40b25351908cf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e26c01faac92659b4819a9972d259fb296bacaf4fd8c25ff62ec154b7cbd1fe
MD5 dd7a551804a1d89724c0549fde49a0a6
BLAKE2b-256 432f8fe1ab21f0638ab2b07b9eaa9b6a5cf5fd6cd10079f82d6f8be061c0396b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d095027baff0a95493351c26e6f31ce8c584746d91518f6dc51c0eb6e74965f1
MD5 698ae99954eafa59b34825e1b5b6e71d
BLAKE2b-256 1cd1a52917e961c23ec2806248ea6f10827ef875dfb77cbabc09186018549b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d5f7886e42b43d7ce00721fe9d54bd1ec6c27a0a5f63dd42830301ef439a8c6
MD5 dd94a6833c2bcf199c796dc6a58818dd
BLAKE2b-256 752fd1892c39a2273ad0f326d27779f721e1af6c99a4b1f21b17228284925ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5072a1ceed02e7fe88c4046fced03b6c1201e81f82f21d1a3a66690e73eaab75
MD5 622c2f4e3ed2913d8d62cf3dc18b4dc2
BLAKE2b-256 9c9663c92a8d373704be88efa488c205cdd888d57830e127c7304af96f98950c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25f8ea74bada3b37d9b398afdf26bb612fccd8ea72fc8fc2360b80ea5a3b1c68
MD5 1b63305e64fd6c5e89a4eee96eb260a9
BLAKE2b-256 45256fe54ce0139b80741947659fede8ab2f32c5d32bc1ee6ee01360ac67d686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa5f92fb701750a70b159f2b603bffc04a9281251fbd6f91ce624f934fbd158b
MD5 56ac06a90b696461aff10204ee8a9211
BLAKE2b-256 a3679257d5fa26e644a9dbed6734ec52f3e981cc8022e89d111f15c4d1e9b74a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2298aec70249e607afe5d4198f0c628d9eb8ff32074605e8e459f7751bdbd79c
MD5 ac74239180bf4fe2c343541e22c48cc1
BLAKE2b-256 9f94192da486e0ea0b2d578cbd94cb4beef4127eda2c153c8d0fb8d9fe042911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7127e9840657f51567cd58d6444086162499d4a6a1c3d6bd344cf90a0374a694
MD5 78bbcc62cd0c181dbb45d045bba23c06
BLAKE2b-256 61cae7ddde9ab1c7db610af87f32ee6d3b709458ed7ddbfc857370c0bee86826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f53cc4c57620489f3fa3872cd7eb8c54eb0bbb6340ac6772c849b38636dcbb86
MD5 61b8785350509f0a18df97a74a2c0260
BLAKE2b-256 d997e1b793d8efff5e53f313206281256069d530dbebdf5dbcbaa1b8fe8d5f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ebee30fc54c5194eae95a99e9100708188ca8d7a0307549a37ab43885fb6fa1
MD5 a959ebb0aee8c064dfa75b8ff258fb17
BLAKE2b-256 03608532108f85ffcb21897e7a4600034c1981d13090d5483b20bfb7600f7790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30016e95267be5368c8fa8524e8952992c489bd6b54af826853f9fd8ea46b63f
MD5 a0fa52547c0ffdb6b3382e2fc27ae200
BLAKE2b-256 0b7f1d6822634cb009e3b441943151c48292f28393cd82e7324407904b0d645e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9937381abeff24bb746a8ba0a033f920bed2c1b2027022bd3024f2fc6252e8f
MD5 9dd3264dafdf44f341cac8e67752f136
BLAKE2b-256 b51daffa2d5027a2a40fce8d155487c6fdf288e2736e89515a19586941cacff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd3828b8ebd04a799c85fb73a7de0619cd535a7aa60fd5468895dec42702e4a6
MD5 c854097a4b7b0a6b841f71466bea744d
BLAKE2b-256 2f2550c8956e49361b1510808c1d26891618f604194f6993024b5682a11d8a8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 030dffbe191d0d5c0ec7f375c261754a5c58e7d8413b3f5150bb653eaf0e83ae
MD5 08e6d03a47e1aa07f4840958267ad708
BLAKE2b-256 8365606f0969012a39940f9768646cb63edfc603e0e8fc1b4343310469cbed45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b274c1f06e07f060f0d91986db40e7723c6db2be30ce4a5b6f223f6ede9b78c5
MD5 081b08439336184c362123227e31ad22
BLAKE2b-256 8ef8cb6d45e78f71f3425d205bec3c5babd42cfd3fb6f0e2420182ad7bf6b1fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80ec0661be53a0d299dc9c9d9546122d433373132107b0bc08246662276c68a9
MD5 36530feef5104766150e7e4e1f5b954b
BLAKE2b-256 e23539baee8e7b72c4956f0554fb71ea6e02b5aab97f22a89d9dc604b2c1a4d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 721b56dec767b9d768263e8415d0dd9115e1853750132a8dbcb6cfb7d3b0e6a6
MD5 e770fd392a45c7b77dcfb9d4230c791c
BLAKE2b-256 689172ded1505476fb45c50eb1a24ec35ccfc3cb79857ae98206ab48e37d46b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7f304fea5ce0c991636022511c32976c3e375507d828e63e37f311477bb53bb
MD5 92c028877a27fd98f6943581e2d1a506
BLAKE2b-256 59fdf7fc7d7106252b24bbd661f318cf362c5af4b8b907c6e4d62cb8e2772212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dca794b461e17e3b0775787483880946a12dd9f31a8b1df995bd5cca4c1898bf
MD5 4b82e550a7a100cf309e4b03277823b1
BLAKE2b-256 b9cad002e1f1d89127600a603079b08a76a7d18ab6853a11c95b23b2d1d88cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0d02a7451e3836ed4a76a9fad940924c070cb1de2d1ea112ea6aa7c3255cb4b8
MD5 0ad341f4809ddc260a6e74357a748a2e
BLAKE2b-256 6b8f180fe1eb3336f8d190ec6ee30859351f5ae5cc3915b0b9766e8868bc82b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd694fe9dc782f8fa0870d4c7da5e2d019341e60e18b54eb9173fbe73e4aa1e3
MD5 6b50dcf6469fbe6df09d5acefcdb654c
BLAKE2b-256 3b8341e346402460852585d5846df4b514ec04237c08639256661cf2acfb22ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dda765b622af3d5b9fcb5bdb5902975b0b9f681c96cb13e2e62d9d90280aaafd
MD5 36ba69393adf2c576c4981451dd6f820
BLAKE2b-256 9a2a9a4f933ff6eeb8809f8cbcf0078acdd8e507a5cea97df23ff6c241d39e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fea5b06dd863bd5988fc0233efd277a720cd08fa86164425d245a363f2f7c20
MD5 0d2867810fe1a32b3ef0c6706e9834c2
BLAKE2b-256 d4d453a5c6159d2360a29d7336238e4be577ff04e78c071d7595a0d875479b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa657361fab66839ca52c5bc7028e60db8fe6e3bdb16a50f6f7d6d83c795f5c8
MD5 2cff1057726ef08d333d7e2fe43f5964
BLAKE2b-256 7c33caf2924eeb0b803f5b891ff2a3bc9edadff2cd78c7a7557550fd0f1fcfb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ce9f023ed7683a914bc990f957911aa7d357e6a15c191090e9c3638f18d7c7
MD5 418a4e595eeceeb11997520d4e2a704c
BLAKE2b-256 faaa18f98af04cbb2bcb2072475d6572f4adf4fe05f441da39dc5f59e0e12e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2dad645f840ae2b960bbf0af7f9de71667e6a752af894015c75d6675821931a
MD5 5726d22bd0d0d1b275c8881493910898
BLAKE2b-256 41f59edd3b67cab5cddbe6a625bc300eb4d48f543ccf7d06bae9a8811175724a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7390d878683672ddff6095f9cc63dfff18241ff5fd25ddd739f9fb4e7cfa36d4
MD5 f8103468683521d81e645977e5e1cacd
BLAKE2b-256 d7f4f08837b9886570257f05c8a3456006f520f2e652966d4adccad99bd4d83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52c15c0c819c83e0fd64d3ec861058037d189f388a6a49c6c67d479601b5cdc6
MD5 a256777ff4c51431a08a17a2f71800e7
BLAKE2b-256 489fb55b11112dd2c18be70cc2de64e82f93f638afdb0c64c060693a05a70eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2917a05c492f5136b77026eb0a81c241fadb373d2dbc9fccc8f5135e5772dfc8
MD5 d8679e183b516888c50a42426f98f5f2
BLAKE2b-256 3e1986b764ff92fe282a5178db4b8a16af4e4ad73576513755620198a025a7f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 629aeee7c3fd738e9d63d13a64fc0092bb67856b0bd3e5b95e56768aff4316a2
MD5 fd01dd6a8c7da4ee58ff710765c05698
BLAKE2b-256 c934ac08ef5eeba84c7b3279ba94d7c98be305e01ead195b4b95951829cb29b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d343f615fbd36977701da8db5dd0a9475db45f2416ecc09adeb38cb0aa673485
MD5 103a76dc805beb15be5598deadf96aac
BLAKE2b-256 eddfd54156aa91eea8538afa341a99706681031ef0bd518d82acc8207b6572c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 76a464a051c803f3e7eb288a7c2b5da3debca50c1d576c559198b825fdfea51f
MD5 6e84a4550f9c121c70048612f861ae2c
BLAKE2b-256 3bd85bcb41b6f52dcd812728c84e840be033d1d88e0b29c6a9effd95a4dbb2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75fe25867aa52394edca7832725da77d0c57955603da57f6c6ffd893cfd9425a
MD5 862bf342f7d445f1e23aac03fe8ffcdd
BLAKE2b-256 61589e7cc7450995bce6fe9437c158bdd0500349b098f5dabf64d5f5d9c32ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7d34d8c872ae694475f19324016edcce731d81436dcb97339f015d01ddd0ec65
MD5 cd8393ab21de9f057e8b74f96380d602
BLAKE2b-256 51f0a354dc3a8d79a77a149ba74923ee27da8190fc0ac9e8b9380670884ceac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 20af786bb1c61538443364a08e6de39c8560091bb97303f2ee22e63954e0935a
MD5 0abb7f8a9257e4f71a64afc82b7f4a06
BLAKE2b-256 9c9bb5b1ee9856eaf8c757f6dffed5445ab70a2339758f0350b7bbdaedaf35ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6c53f71e3e1808f22e0539248063376f41a1d7f9af461f2f10838b470fc51fc
MD5 e2d43d2fd69b38fdd08da0b65844ad0e
BLAKE2b-256 a2aa7605ff128a1d491db24ce25f7e78a5adf0c5137e64a345689d81ab0c5551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae77cccbd400a2570050dafa941a86e3088b9546a37bcfb48d430196b9cd4f97
MD5 420fa655a96abc4d37f8ae1a58d2901d
BLAKE2b-256 58a5ca7f344695b730917d6a0970cef5b3e2c8c1ca094c961beb7ee30a14940d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd5705ea738604c8483bca8caa4e03f4acd99c4698a0e4e164451526af123b28
MD5 e556fd293e3ae0c9279eafa05ea07adb
BLAKE2b-256 3c67b32118c74a9b5104363728c7451e0a682ebf411a1e4745eddb1cb5edac50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcd1214e6c909c7cb2bb633b0a3e0b84e07e9f5b092dc03bfb847c177907d9fd
MD5 95317e5eca6717c653f0ba044227c908
BLAKE2b-256 6b2bfac45bb0d8d8b6b250e3e6cab45b72dbee556addc15079e912b1cc781be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1469f6909048a392d041e999b1c49e7cd9496743e4765dd65f89b27ef8f8dc6
MD5 013992151cd4d4cb25d4c7e40c40d041
BLAKE2b-256 5a9410b4822862ee0ddb798943b943ee68cb8222ee28c95a5f6665015b43a9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecde44f4c09b59a2d8dd8780b3932693c104e6dbd29385602f1d1a174a294d66
MD5 a231c4a6445a82ac95a0a91633d9b765
BLAKE2b-256 2900e118d5da5104f15525ae907b469970764f65fdf401b03380f7b941478fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73715834c96af1e300a81034291a4ffb0053cbf6135c09510916b481515b363b
MD5 470a7a627e2847eb684a749c3c12a6cf
BLAKE2b-256 f152a4e402f9021b4b1b419b6ea36f569ef1fc8ba564ffc0abbe77e93ad69a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19ca6efac69aeb7c75cb99956ff84e912c8d1672e3968a4d34f402dfbfb8e5de
MD5 fd658ff5d39afdf5ebc518a37273c9ff
BLAKE2b-256 57095da593e2a5a991d1d68a06133897de5de99a74cc0c5c0901873480cad33a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eecb1f98ea0a74e3d0f14d9da2306f86f8290dd0d9e02b1bf6e9626d8285d224
MD5 9d7b1415c08b03056023b140a3d74d4f
BLAKE2b-256 5bf160e0265b5494db9a98a9dc897d7646b3cc42be77bef252c7b5e3a32ebc04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 04e8ac9025f71740415744ef9b899b3ddb91bf36c35a21212ffe4bf041e57885
MD5 ec0e61a4d075eb0367d6c9fcb5f6f442
BLAKE2b-256 dfc8b8f0c8dcd05e66eae7ef339308bf1a4cf9d41827a3df5c1ca8042972eff5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c50a3f6a03fbd5d104ac7ce981ae7b36c1c866f1492c7c5768fde83d815d37d1
MD5 ac8b397623c65e683a25ef0482cedf6a
BLAKE2b-256 1dbd29668bcfc8d9fb163c07a74f0076645096581d4f702a988ecd401fd01d6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 af1b11538d52295c3e4516fcfa85ec64fee75328f5b530ccf6fe007ba0077bc0
MD5 ba89663360c5229e444f0f41873da204
BLAKE2b-256 39f4d8a950571c1baa440fed6ce09e24293e2d3e16a885bd6ff92515c7e8174c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c5f15c2ca8b12132c3d53b1ab8fa6a8bd45e9dede753dc2bc10f521a4e9af39
MD5 5c209605eadb709df793738610259a5d
BLAKE2b-256 7e5b676ff8c66c8b1f7f4ac3cb306c17cfd6fe797b66fb0c559a01e966b0dc26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eaac813e128a325573080a2f55c7f1ec63e38a551bef9095fc3d38a72a136a8a
MD5 29c6fd52684f22b4c3a674d433b058d9
BLAKE2b-256 656cbd34a0c5c63f86f5b4a87a53ac997a7c894030cfb13a0aa1c13b8ee4fd6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d4f79e4fb045cc60416ee1155c8411c2c1c2e961c9e9e6b13d9008a7aa4fe059
MD5 3b332946abec9350cb662daa40ef3a60
BLAKE2b-256 eea64b95cb9f8e0d158f3323a86a7804d49fb473f5d7e0454f807c41da79abea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b42eacccec9196061dea6410a31060161e2f1db9452ba2cfc2362fdcfb24a0dc
MD5 f22444adbf3e9651a5ee7a0d704569e4
BLAKE2b-256 268f15bd5afb10a10d68e0bc0fc1fe9d6298b56ad33c94dcd23726b3cb57ae9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc2cf0e312355ff4cd4045c4133e456b876ac92e698bc355a370e364249fdb14
MD5 99b19c2c7858fb7869e8d5c08a21e626
BLAKE2b-256 d93a14e931ecd3daab2ebab1c61bbfc030f9aecb4aadcbf578ed998231c84064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88ea4bef00126285e77def0b0f44c23bdda9c05332981a7d91603b2d7b75ea96
MD5 de7aa28689d0b6905aba23b443a3f96d
BLAKE2b-256 f58ee5687a7aecc9ba36449189831053dd9da858fe47afded3240d5ad202a922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b018952604b33616ec1b315169f14da4cfc8ac6ca32770d1f4331729a4ea02f
MD5 69d2a879a02017e5b40b18698f6cd418
BLAKE2b-256 8020ba7383647108dfde12b9917e59998c05e1b3930b31ae83193def8095b18b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4aa9d9a61d720e2fb846184cb2de37d325372f660f49fc039d3cec5ab383bb91
MD5 3c75bdc6b2fa44f4a05153271280d901
BLAKE2b-256 fad2d7ad430388e980be763d0896d127c875d4d8f7e3b0fa9e5bc84d598af22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20adf08687f3bde6c756a82a321559d2b42f997cc5c0a922bbb1b93b9a04b7f0
MD5 9daf38524cefd37332814b1a1b49498a
BLAKE2b-256 71cc354f40b77843ff00975976b653a2ece8e536dff4187b33f1aeddf81bca90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b06b05957b2d9d0e748edfe6c795f041970e9c11d38a2980374492f107406812
MD5 c32a17559ffea8891544f06b9202b5a0
BLAKE2b-256 f35ce9dc155572308b90fdcaf5f8330feb8a3cb6691a6c97bafa39cff7b8aa07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc590f3685e8cb0ec68c62d12864b858dca98608568311fd5adcedaebb4aa5e2
MD5 7fa5194225be30c633afe57e738835fe
BLAKE2b-256 f07af1e6cf418f1433e839b97a2b01c9eab0bdc37ed2498fa5bd9cdedf83cbf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e5e9bd3ef09552a06131996d7da2640cf5fa322d349c9795778605783261790
MD5 08ee9cb3f5127e97f715094724922caa
BLAKE2b-256 4802f97ae365cf53ae7c2874766389e83debc9075f146d0534b59b4c694b1e97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1796440cc868ffb93f1031c0e323355c3425cd42249e55b4b2af46a31b6bab9
MD5 eef14e66403e10c8c0e7a5d93a11f001
BLAKE2b-256 28c2d36fb3176619565db14e29b476ce86d00e684976f66c1126752ce2b5a146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 33b97dd8cede5ca8fe1dd14fbc4d14960db62c17c46a3bffb2e733d64a93fe2f
MD5 968d260ddf9a6a5ff9262ea4daa82aa3
BLAKE2b-256 636efedd6aeba664c7cc4a3e6b06f8bbd8239cfb4cb0d0ff749ac9a20ab03d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcad36ebe45119859469a27d081c93671f81ef1ddfb7f85e57203db13ee243b3
MD5 4d3920756da57d56a4dbc45477cf32f5
BLAKE2b-256 b53770a67790450ebc1709a43a464d15234bd00b2ba77d8d4541a8b79e44ac57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5b36becea7e76fbffbf8992ebd0731ac6a819c75e5533745853b2b506a6230eb
MD5 73520c8f4d81c3c4869c1b6f53f3d977
BLAKE2b-256 bc601f2c8e92afe58181256ae91f25ada0327bf78e5113cd605d34c1ea333b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 83998ebf96965fd4ff181a203ece433b54b20d859b4227e35b2d0c62c4a9e79e
MD5 8d0614dfbd512b9ec13c0559b358bdc9
BLAKE2b-256 c938cbfa33a3b383d04082836719fda8ab48142c9affd573770a7f8d847fe25e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 585d046fd0b3211a5d9e63819266285dcfb8f735507d45f5f12efac463926f12
MD5 7bf17b6db6c57291573dbd30fd6e4539
BLAKE2b-256 f9bbb3626bc7550a029ff418d909897994feff5886d0d41d0e2890d25a44f344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 032945517d74e959341d645eab092232a0824bdd4301ae157a51b11ade0b8f56
MD5 8478b844a12e26451f3271fb826ec351
BLAKE2b-256 1af1c045db467fd1d4aa1d09a234461c279d0fa385fb5c25455fa6a2f2d94858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28b8a4b930dd550cd62ff5920d84e368b902edab8855fc2d1428ac65351f9f35
MD5 e060040cf2189a67aa1bb8700d085bf3
BLAKE2b-256 5d8eaf587fc610d19e61e388276835067bd033dbd4cf05d981c9ca2a9aac9017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c691a78e28fd4276061c6fa18232dd89be5151776fafd06be0efa1ff0251f24
MD5 c49efc317dd7f5111f5ec8ca09b2de3d
BLAKE2b-256 47ca78abf0f6cfca26de4e4f8ed9a44e4b16a05e0692e3d0d31f950048b4c131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d7f50290ee0db62f2d63f849ef0e78e5fd0edcc2d5905314f72df6cb28d2369
MD5 3297ab1b0ae2a517e924596d9f64b453
BLAKE2b-256 8955af22121bea2577152392a3cc0b16fc62025b8eaf95c2f325f2080fc2fd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac517e616b9146e2d7b4c17ddf749ae0b5ce2fd05d5c3b4ca318aeae78cd15af
MD5 f430a94d08615586c4b6ee914fcd85b9
BLAKE2b-256 f7225966aad45ffdd4fd443cd23ba87ac9297f64d8ca31bb6e2473ee88c08c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb9cd5f38a69f9874bcc7fbf6e6ee69d78e64c1140112ae4b6fb0a9fd89cf49c
MD5 40b1dfe78fea116d7dc81f56e729588d
BLAKE2b-256 6464893dc63477acef251892dd83813894092be19c4722bda67b20bfc8568a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 facd38b34cc725ea20f6e46ce71ff6fdadb3bb12873689bc309bef5c99481e35
MD5 11130aa05f5af0da0dcc720a7679a8b8
BLAKE2b-256 11c4797b29f2041c97b9b7c168006365002c184e9aeec82eede4343382458974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a0d3f361abae9ab3db78e9d3710d57559a19346325f4338e1f443b5a0c9eae32
MD5 f0b77e2d025766c34cfd55daa29631c5
BLAKE2b-256 59aca2f49653d30775fe425660bad941b1b528b34013c4e31407f19fd93c8ac1

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