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.Extractor(core.FormatSevenZip)
    extractor.extract("path/to/archive.7z", "out/dir/")

    # Extracting a specific file inside an archive
    extractor.extractMatching("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", BitFormat::GZip)

    # 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(BitFormat::BZip2)
    buffer: bytes = compressor2.compressFile(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.BitFormat::SevenZip)

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.1.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.1.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.1.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.1.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.1.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.1.2-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.1.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.1.2.tar.gz.

File metadata

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

File hashes

Hashes for pybit7z-0.1.2.tar.gz
Algorithm Hash digest
SHA256 5c69ed044a76894574bc105452f92df05b7df24fd8062832f57196aa84b99912
MD5 ca77a69f4d122cad128add34aa572c5b
BLAKE2b-256 0c6242c3ab67f155b916f71fa0750c99b821159691dc696fed1fcaf43178bfa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83b448f23637263d79b552a5fc0ea92301b9683494d78fc54de4ea8ab31e5c50
MD5 9933bf102051d022298c119e4f9a4f5a
BLAKE2b-256 f134cd4e4e21ec5e912812bcbd1d187b9d65dd205f4ab8210b1322058091342b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e21a1ffb4dfb51b04b62791dc50900d8d3d07cd05e5a8b0bd9936828ff4a9ea6
MD5 9f8085dbf9e831a742b9606bebd1fafe
BLAKE2b-256 847a5e53c7b1ff7a4f550c855a6861fd5925d56521da1d0cb17f0c94c060c9c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81c90770dd7df0604ef6df20490f2d468bc00dc3667f54080c7d7978a8d2f75a
MD5 03aaab1329b17ec989a397ef7c682455
BLAKE2b-256 607c3803e24acda3e1601d5b307ce409e91b690f83e4d355d977df0617a69da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a54aa7c4ac2d8713e16259a985cb87cc8de55217b31c1c1cd9655a22dcd0f1e3
MD5 cd1928404fa67f17488513ebc2360b37
BLAKE2b-256 9cf1a3593286943e331cd41fb234a734c53b6992979be18913d76cf9db279f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9a3974f159f0bdd645edb21273af6fe161044aa0abbbb16da862fd1399f900f
MD5 0e84a08939344c81b1f93e308797c760
BLAKE2b-256 e059d52a5b9bda728f27e7a59bb82422cfeeb20fcb43b3e0e8b7568af35b8de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c19e697a6ccf9dba4aa90c4b616afef1834c9434a825d75ae1ddca927a6af55
MD5 9131297ee5fe00d302f835d06fb20af8
BLAKE2b-256 8713d5b26f6202e5e3af54b8250933a6bc8ae8a4affb702ced67d428d6cdd244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 53a046c4d49f5dfc2f3746e6dab0e3e8c6d44b45d98510c69190b68e3bae1332
MD5 48bd2406d8b48c2712c80b3684e1b1e5
BLAKE2b-256 3ec761ff9a9823875f2fa386834492d3e9336b6bac19301b6d4f303ea02c77fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73ef51cdb8b177dcb853f537c0f9399c275ee2c5a3925996d4668d3d8364419b
MD5 ba413c23c66d959aa67fcec9fcb94033
BLAKE2b-256 d49fb6e51fc8a8c868f70f383800b60d3ad89121442c07e557a74db9e49e5c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2d5e1d30b566f4c8be9f13c8c31b7693104f3a186b0e376663ff0fc82cf736e
MD5 8cb158b9df84b6dd9bcbfd156faa5441
BLAKE2b-256 14b2d13e485d424f8defe14e6c8d18d60173422627f7266f8d2f6c283f6d54b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22007a7ebcef265f9671128eefdd43f32915a58e73db00b64063135f7d5202b3
MD5 ca2b255ac90965514a9ecb061a961fe4
BLAKE2b-256 e7b8501b59ae6d5e1b1f211eaf8f550a4ff2a92d25f6a45d1eb9fb4129cbafaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9870e998e825b71544555d414fda0d6bf04199fe09745af170c235cbeab2c4b2
MD5 a1320cfcef4e8dafe9629720e5f41531
BLAKE2b-256 a9b46e3340220bd302b2e609334fc42baf192c7ebeba14f616bf6bfd1c39a7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b33784123b313a39685180eaebce26b1d8a494006180ecee9c2e26db851d96dd
MD5 1aee54dc50aba3e6e6640e43de24e14d
BLAKE2b-256 586d4488ac5785b8c8be79c89488f9cde2717a1cf64cd385f1868b9e212ce415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c251166490769413471d7caf82be474305c45665690460486b44f8e049af35f
MD5 828ebf8bb2f4b10c7ee961db56ad3e50
BLAKE2b-256 ccb3662e8826412ba0dca3d32e4c6593dd5527d5f51884f302ecea06c85d9473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4dd08a45c6c64ea7af9254a2056704e97580d468e9b0f844363461fc41143ce
MD5 6a40b8c1e616dc2c089afb228fb0a71c
BLAKE2b-256 feb7fff06d0f3b2742ce7a49f63b918bb6af883c604b32c376a10d8b4cf3fc60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dc11fa22b29231175e54ae9c3c91ad174e57d34a427f7630e835a7fc99f30e4
MD5 24e0dfdd1e54cce18c2a61e280f103c9
BLAKE2b-256 e820727b379981f4e08e2ade906224f5f04cd9513a9e342f4a9810e5e7c525e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58cb4d34bda296e16b3a61b57eea91c51a31cb30a0049892234ba455b4ec9ee6
MD5 a8e83f6822b120fadc7c90c407508b31
BLAKE2b-256 12b387826b48f5f947f217bc16a248fa5cf1ea2c8e41f4c11c0d6077e93f700c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d10fea5134d7a51e003a4ed9b997e33ef63fee9938c11ba1d3c960b10d84d8f2
MD5 d19c2d0c391931e2dff6e090ca4fb4b4
BLAKE2b-256 9772426aa8853954aabff04d83dd90e0feb7cb4607efa5e9bd6af2c2a528af29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87e5e3972eec68d2d4c307dea3a5c6a10942b82da14150ac4da72bc406bdfaff
MD5 1cfb84908b1d4d215b73fc9a28d29d32
BLAKE2b-256 765d0e4217e2b9d743f0e2f22311840fc3de6cad1dfd631455e42ab0bce63ecb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 62426a93864597a5596bf1303ae1eb8446e79c23649d8702ba62ce8cf116e9ab
MD5 7b1df850f99ba7a69734220b343dd816
BLAKE2b-256 4003206c247cc91ffee4729135596fa4f0ab913d048d437788e5e39e2a74e385

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9a8531c28f0f7f9557f1db6f9be2eca0196a66d12812d3a0dc6dbf16b30c0b0d
MD5 9279d2dc7708a90a537cfde7a754f13f
BLAKE2b-256 d3bc4f5349baa07d6bd6dc45ce9244c39f9414d3c1ceead568fdca2165036825

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f54e229b2bbc080034c887c7a87ddac874d2a5ed292941e8fe92e2a8d1ef35f3
MD5 153eab9dda2591c8f5cd5cd91abef78a
BLAKE2b-256 13876aa07cdee9603d2a573f3a50c1df69bc31ca786351310462e24c77a50967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce835995ab14c3c6b0276a76d3d4bc3a47bbcc07eb97350b3f0ef87f315f034d
MD5 7687f7ba341b0efee1eb1858c0e8c582
BLAKE2b-256 74c6fa639cd7cd76111eb3e3915bf04abc5dec8f5dfda808aee7f7f69fd0e1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f19bd8d4c6154b05e1bdb10eff00490bb47bd03fba5818d0de0f200ddbd0d68
MD5 1cd01f431d84504803e5f9af9418a4be
BLAKE2b-256 725aa97c311c047e5b715df17fc5ab67e0c281fd1843568a8c94f488fb780103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 912edeb8f937ff31f7e65e0a3c2e5e0127c320952386e66b41056e86767a5a4d
MD5 e7b94f9506b6f8c0d0ca136a7e58064a
BLAKE2b-256 96c9e3169c7ba6a4d9095a9da177f9d72cdffedfda4748ec427116ea02f59eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cb59daed854d8cf7686186842b9f67e3cde90d09b8d0a5ee17c9b6608dcef5b
MD5 e950298ad5981c03211cafa2bd9f35b8
BLAKE2b-256 e9ecd20e27295743006e1eb41364e1a1858b81134951fbd0ca98cbb190321093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1697c9257ac338e60d7ffb05288a9a3572cd65d597380c2c4c08e5e6ac6eca52
MD5 eefc8a52c56af85de9e8e106d383ca34
BLAKE2b-256 c8c86c4cb66ca8448f1be7f95fc766a215f0894d10e8715e4315313aefff81a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a6bd28f84365478c93cd8698317ecb1d48566ce0a168632b5150c8f93b4de4d
MD5 00072580007611e36e3eb00b3e3a7b30
BLAKE2b-256 2fd0f7ad5a913eeeaa79e59b84bea16dd0c0adfa8226a41ba174b2ed8b8a1f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 204ea521dcc7942013d1673ede8c86f6ad0fa8e8c920a5cc9ba53e91ed24aff7
MD5 4ccbfbe50df266284b9b13f12a99b0ac
BLAKE2b-256 38db0af9ab52dc6479251ef52a6bae187b343878e3cdad02b5feae41670b45d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 713275dbea2b46e12b9c7bc34ca00b5332d0478786c581134389068cc47dcafa
MD5 f2ff2702b572841f772651e85055e93c
BLAKE2b-256 bc60e6034c7a3711adab7db832e49fda53a6cbd5b8b7bb6dec5925614cbbf012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b6b774cf796f65826d5a85a17a0b52da2c6931aef8e077a62743576e4819b20
MD5 9bad0244e06366bdee10b9e116aeef70
BLAKE2b-256 694a68cdb154ce54b4fd4333d03f2fe6d5cf58903320b51022fe76eab7d901cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccd9cde1b5a78a25088bf9a8cf041cad3a0f1ddb2e791064dd4392b0b804ab07
MD5 291bdb3af425a83d8a1a9610d1bc4cc5
BLAKE2b-256 f66fe379811e4b4d45cc68bf5c269460cecbfc018462db47ab55d71cd662d607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50d81f39c11c22a05008f914a1ff02d0e765810bee8b0dfbdeb9c035c0024b6b
MD5 2d02d7b5549c4a1629f8b6bfde570714
BLAKE2b-256 801c8575651bcbb79ca324736db735509188a45478164480856898b56c7ba05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 111666dc2266b3ef7f673cb3b463325b8fa537a458c9cf2e29b6b9a0941605fc
MD5 8459115d2b283a3ba11a0961991900ad
BLAKE2b-256 d6a780f139e3ccdbe1160b82a6e2c0d5776a1a17a6a40cfc7237b5d0063baed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 348ce656b51785cbc807e869e49aaf3299b4a2f3f89f3220dad4539f72789287
MD5 f620dba3785e7b3bd9a4e47499fa0adb
BLAKE2b-256 7868ddc3f801eb335c6429c95812e91d227ed69d2a8afd23772209786f488624

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab58d5c2775695519fec48523ca3644ff7a2fe6ec9b30689a018402395a66a4c
MD5 7c7972ca9542c9754eb513a7668b54b5
BLAKE2b-256 f225d5eb1debab129535a9e62c7444aa90e5a082cb4084498bb94180fc1848a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 971f5454558de52ee0b041b7c8569fac335bab2cadecefe344f2efff3b402817
MD5 30252a72a7b6d302d7f93eb3e8a010f0
BLAKE2b-256 4adfcacd9d145731a920ccb98e3f7defe09d66ee5872c6a4fa97fdff028e0e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4528da4afade4950e0518eb1154b86c0569aadad32b20927c6be97cd1e1fbe5c
MD5 98100815896d9fed8cfc9d4b31e338c2
BLAKE2b-256 ac8de74c03cdc3d3dde11ac0270b5c7f81099ffca0ff8db12695e973d643d986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8e2f7955eb597e012da577f63f46648c7af2f1722c808e373b3bc2e6be0a5a31
MD5 c787981f2e50b96fcfaf922fbdb721c5
BLAKE2b-256 98ffc903fb505a6d7fdc0425bcd0ca15f6947c9c90791f8c9c808c4b37dcb774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 773ce3e9ad60a08c286e6da746f1835c874c4310b8a245ed548ca19f393c5dd6
MD5 1b1e2f5366f64c9a521e72d703f3c6fb
BLAKE2b-256 31e0682f26e69e23903df583a88e8e3f4ccf40748db6f76a2c50424a51c2b570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 988d8557a2560a3649e38707c37aaa8589855b0753bf306b0aef79c83606f00f
MD5 b9718407f39a07b5aaeb07530a5b5b2f
BLAKE2b-256 92eb8ba3d06f4a6e908d39edc93abda3bedb56cc33f907ec0dc70a0b3417f912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e23c52e74817f15b7092d0354b8332bee026053bb6752a7b67f9bc5e757048f
MD5 a431e6d4b782ff5d909c447b1e880e44
BLAKE2b-256 d57fb392997bc27025676c67ad93f9f109ae3a96bdf2eec162a281579e45fe7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f21d25886eb312bf71b7da0717bdb7eb0edf1dec2a7052525ee96f7e5900c6d
MD5 8d0c08fa353740226f763f11f3a5338a
BLAKE2b-256 5a8840a26c2eeeec2b3dcb6b9126d65c8a26cd57e62fdfac22ec3514430d2ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a67b877d1f39294edb084e038a57f54aafb5fa3c78ee0cef00bcf40563d667a
MD5 127fb433ff9fec3cc8c9cad4ea352af3
BLAKE2b-256 00f8a0b71c490b2043f1c3d92b60bdb32fce59a87a3e99448cc138339cbb699c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 896efb57f21f2f640beed4799dbdc64a286eba7de61d59de6c7deea387f3465d
MD5 8b0d2d327c4a20226e859972485015c7
BLAKE2b-256 46c2038f52e545151db1d5d2772ecfffe5602fbb0eb8bd569a4b24429612904c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4e4cabe355856dcddec6efc2c2fce6af2681ae5ed824ccf59717cc59c587348
MD5 86c28ce38a00994b101670239206f920
BLAKE2b-256 2ba37f4200c62128da8d7c2c61369583eb5dba4b41f847c08d7ab3f769837bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb5aa9fd9aaf51593e4041df4a9eda583ccbc2b9345168f6c4b38e35e39cfc97
MD5 a5497cc74edc931491e93adf86a576f2
BLAKE2b-256 c0c9f793e0bc77a840f0179e92adc8fb1559498fb2219d6f2bc88ecfa1efd04d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68501e9cf54dc84cede72cb9e5a3fc25f6d839048236caa7bad035aea762edc6
MD5 b3010ee080a2fa6b66273fad35e5c509
BLAKE2b-256 f75fda5784c24d42a891e806adff34748265ed5323d8377926a3e0a1c8d8397d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b629bf1c511fcaeecb86e0cc8b87193f0dd8b0a2c3a8ecb443fe4b1de6a42a9
MD5 a366aaa577d1b16e389960618374f6f9
BLAKE2b-256 1b458cd73633447977d77e99fbef6f5a0761ecf4ee6c73d22cedfbea63d105c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dd75eb2261aa694921c5c71291f1f6e98b565670206ee2b2770c4c3bb67e8aa2
MD5 cd5ea499d2fc69f2dbbd184a2d06259a
BLAKE2b-256 5d27d314863c0f5adcef9f8cbb9b3c4a8b3192a52da5cebeeef88ae7a738c6c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d8103654761f4eb3f133379104ae502f6ed15eb5248b98e009fc08e2c863614
MD5 4d0bebde3a1f681889eef13bbcf269b6
BLAKE2b-256 e11a715b836df35b1556bb1711fb3faad4d253776320186c27179f4478f6062e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2ef4a19b8123daf862d6cc2eb9a29f6297dad0e1a72e5f483d03cafac737a613
MD5 162fb755cfe1f7eccfd1fbcd1110a10a
BLAKE2b-256 73ef0abe9d84ac5d6cd58940cf7dd86333880f430c708c2ba4a4c13d81ab4b91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b525fdbf76dc028a86584c64d200e5863cccf20a56cc44aaa86ae7d401ce338
MD5 d8290fd941e9c33618aa65cc62f66bcd
BLAKE2b-256 95074521ab524d771948864c60e1b6bd4fb91ab3119845a5443de76c55638e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9f101c666acf065ff23be772e08eea96abb81d3ff0d9db74be51cf98fe9b0690
MD5 31ebe4bd808a66e28ab704f4710035d2
BLAKE2b-256 1587ca2f73e247d784ab2c0168c94eb9a6b797c28f9911f84ce81e6846114d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a0ebdac83e2cfaf77381b8d877ff500a4297a8f01ee0322783d9667d4e2ff2db
MD5 eef0449bb72f1776034c6e1ec82dd12a
BLAKE2b-256 604bb5af0c914cd942d49cd20d273a01d4dbe616ae9fa5d7c5df7f11a0139e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cadd14570b4cbfb424572b6d7083fda838a18e785905b563ce04bfbe5daa8aa3
MD5 f6b057322a99cf085c09e717e08efd13
BLAKE2b-256 d5acba07d2892c39a04dfe09775ab3547c2753342a6fc9a2c76acc7ccb306e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 012b16714beab0475b980453cd6900b3dba6b32b4577ee864530afbc8bb6f919
MD5 700aa52abe49883ec30582afab69fb52
BLAKE2b-256 e0842408d06c71805359dbda200814e98c21bd9f47840b48632cc2c409bebbde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e4be7b4b2ee6f6225bf68afd0da9a361bec74425df4a16d03d60f00a8c213f7
MD5 ad8b0a0cd52b0fd1fce2c1ac6aad15e9
BLAKE2b-256 ca7afa3c45eeb0d43fe444eab92505a6c11c6fcaab1d306eaae6af9efd526eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ecb459840946dc99eb94c225505442f25c54c539a78125898446d55e41f2201
MD5 f9244f602841f3b62f069c681837dd35
BLAKE2b-256 a33a35de11141b8ccc7ce7a989047ac38a1089c8571115b51b719487276d3ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f41b26e02e06cc8892b48fc5a8f9a33560a6f6bf29da8f946a249e3ffd0a547f
MD5 c5d2edd10c9d66b23126016728b52e08
BLAKE2b-256 7f23de969ee014985fc324a8c3312b3a8408c14142e7ce18647f50a361d21039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfd4e54eb194fd5deb126fea96fe6c95d79879e9e129cf01183572039ed0bb6
MD5 6537fee0bd26ba1b8f490f756a7ddd46
BLAKE2b-256 84da73c6cc6f2fee746d90afd2d8d73d7f2c9e0007340ba0a4a8572e9e42bb08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1f74cb3d4dcbee8418d28b6c6245ea9d6fc4db3785651e2dc6d79bd0575d74f
MD5 28c90ea4fd17cb7bf7156652505e9007
BLAKE2b-256 b5065e9da93c29ad1669f60ac76b67af3a6ab29e4e92ad3429d2b2e88b37d992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 834b43d1386a99d15a3742fd0461c0a8aacfd5c2096f4380ae53631bfcc56a68
MD5 1772e66c5aac9fc68c27d1afd12d7691
BLAKE2b-256 8cab0235b7934dedc26dd98c4ad612c548c135f3c8e4a56f991121a80706c0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c104fbd8ce2f8f583299dcb722b70ff77b6fb811b4e6191ca8a50842a7365023
MD5 66c02c3f284732f0459df05d7b7f98f8
BLAKE2b-256 6224a6395a7dc7f95bb9534fc68427a879bfe35f67cf04ceaf5de1f3626235ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f756a8866f5d740ac6327179d1624acc58fbac463f43b1ba644a8ca0e90a01f8
MD5 82a6d48137c46b243ba172c0a0c786aa
BLAKE2b-256 f1160f536744070fcc65ab0ce0d12d90d54a8b82dc848a2331483849f5305581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3db1b35868f36166c3ed9aa8239322a560ab94852e5b6ae42edb6f09ef59f78a
MD5 57623c91cb991421109e4e67e21d0496
BLAKE2b-256 8fb77426ec22b592a68fc55fa629ba00ac91db6cbf6954362604bc2e18547830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8a0622decaf3e4c1410a39d428472426202011ebc36708a7109ea5cc2701ecd
MD5 175aaa7737ffe5c945c1cd8ba2f354a7
BLAKE2b-256 1dadc6bd0ba9f09f380a279f7d0cd3638756d19dc578b42769ae914e571b0c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d6920e8f89648cdc0646ed9f5d623d41b3dae81501adef9a3970d0f4d0e6825
MD5 8fe064cf85faf815b451fd1e5ae2638d
BLAKE2b-256 7b6d6a7566e942cf530960088ef5aab9246e285d7558368041b9cf78dc70e513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1877bdbbc429df251527372be5e5ac8507588c8897b8569d69a66b0ea829d771
MD5 bd02629b9fa9b081454b5100999adc31
BLAKE2b-256 b1fcd1be66dcd56db7ec34f9b96cb71fd572c4e3f2d822b751b2221afc0e0712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7945c5768755382f447a25de9c0f6fbe2d03477a23b67faf49b2e3c0bdee3f19
MD5 78d908438c73dd520eb7ee9099f8c3e3
BLAKE2b-256 23e32cf5d5e56f832bf7f2e339c86bd5a6011ce8e5ef8a4de5cbc7ebfe80bf18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a423f3a41c62ff58bcff644ad36ba6e4981299352ca817938526145c1a7fd8e3
MD5 51ef65b4595956d949c78d45e19008fa
BLAKE2b-256 8d658affd635ac61bcfe6afdcb3b9f04395bdc22f2e7d5687ee6175d6fe3292f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f33c4585684d6aa85aabec897cc468cee47072eddc8de065d783e0b776741172
MD5 a3084e306e5758bf0e37e918232002d8
BLAKE2b-256 653ecf052916f0121ccafeac8542a30a25e50bc65aecde9634800e9f065b1f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a21449ba50cc7f4d76a6d11fdb582ff4b3cccb62721a2ffa9bf8eb7d441cc00
MD5 463c24559bb262e5a56a84306c99b084
BLAKE2b-256 ad958f730a7598fab9a13ebd043622db98e458490b3fc81b48c29524c4822c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90438c2efd216f15507c9cb8036038e93d4973ba8c13e4fd034064feb7ac9301
MD5 c6c475a74be5ac162d54727e61e06cc4
BLAKE2b-256 b38728e813b0677c0dfad4222ca8996372cfa4bd1a51694453da1b0377c56669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1020b90f9353c1052486902bc9b68fd8006e6e9d2ef1c1557e3972bc6cedad7f
MD5 3aa79bc82562e51ae46cd9cc4597b17c
BLAKE2b-256 7f12c68c217df70896b98c4f36ca84fa0fffbe84d719858e42cc5df1c380965e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e4dcad7913e0360c49cd0f71f5afa4a5f7c40d9c8017ba6fef3539b1bedf9cc
MD5 382d8b5b2890e7153012c0e71f0072fc
BLAKE2b-256 5f293daf123108d898602b31bb5398109acd6ec50c7232e5b7a7d24475db8b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f07c022ec3015f8152b1f8e0fa9e9c7776c2f07900127385f8f35a7a516610ae
MD5 55b452b5018702576a074c5d7082f259
BLAKE2b-256 2687580aac348bf5ac1fdf1f23164d5401af6d7a89aa74c44821331ec4f788da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88606ea40d652dd0d9f85339c95209f8cdd78dccdc1a7bc0c6d99b67490dbc2a
MD5 736fbea31a08032ccad78b4b91dcd45c
BLAKE2b-256 aa9cb157fb546a22a48ebf5b50fd31d382b51ca27614002a20a0696fd89f8553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8f86803652188fb40ad9742c720a4195afe93f351bfad45602571db008bb1150
MD5 7b4ca06bd5af1024dce5984e312ba16d
BLAKE2b-256 5710cb69e1b5354196680e7b944b46ee962d2ebe2fa5a71e3821c95c7691ccd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 931154ad0e1c59a707d3e4e1508681257eacdbbfdb29112e859ed91a32936f3d
MD5 96ba79be74ba62513567b72976c186c5
BLAKE2b-256 ff918135f854af070d42d9c4af7f7562abf525ded347201545e4f86a12f5ab50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 baec18d5365d6b4b1922fd72e982fe413b276a7ae08c2b040749dceb8797e5ed
MD5 182cd32cd5808cca617d4977e4e02b92
BLAKE2b-256 a8515fe7888c20c520f9d156116528854c61a4446e25d33a88e66d874bfc8a07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c82e68eaa5f14e8a92cf8e7f5193e49534c8fe53b7c3037843cb661edb033e9
MD5 f914eb92583ffdcb8d52cc5eab1feced
BLAKE2b-256 c889d6c724c8bcfd593e0b58ba73f7ccde4aa6afe6b3c060de2d6097d1b3dbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b9c11bc668d44258885c3c8c888bebfaa6fee1cf9b7f277bf769e3bf892478c
MD5 7ca85677b1982ae80cac1ec0365b9c72
BLAKE2b-256 130bc69c47ec882ed17cf0db41c756257ac3628293bf90f3600c1ffc689f13ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2c3d726cb79ae7dc88514593b70fd0f4cd022753e72cb532e10d0eb529ae7ba5
MD5 58296f1389f62b483b0cd828482b856d
BLAKE2b-256 1f7f619b1ece5575882676f4e89098c371766718a554fd47eab29cbc1a004ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4384c97d424ba1522bd2661cc250f3292f8fd163e544b74527e48990d3b9534c
MD5 8308418d2664069914ea41ce7c2ef166
BLAKE2b-256 8a8a984b6710cf2b7dcef4f4298d7800ecc0bb6eab36293cf8ab45550dae2b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61fcd5fe0571b4d1730cb5f1109e64e800a53f33518839ac7cc2de3e33e345fd
MD5 98fd2017fa110826b64702c348e42789
BLAKE2b-256 54a055d7b021507d58b2b6915890995c0042b755b4a7c25cc7243c23c06611a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c16c90a8d422c421ea0f8ff3d5206867e929cd79587ce3ad963f5020295cf778
MD5 86e8a2f128bb1af307ae111427d033d5
BLAKE2b-256 6ca40125b00185d12ee82274194393386f85308f677735369d98bfa7e11d3bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c4df5643d830c80ef0a6b62f5fdf6ef6a169250d6d12b446e0805fc087a3413
MD5 04778cbd1460ef25afa9f2da74cefe59
BLAKE2b-256 218f5fab4c561452db7dd41615932916e75b9a2e5fd9d935fad23ceca2347e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a6d0230ba65c0ad26f4f7055080c288469c030e43c8886dfd505124672be57f
MD5 da1ef3b8ac61d10534e7ca31d6d424e6
BLAKE2b-256 83b5bd4bd5c4c6d4855e7a9dd8aaec27e5c58632452b77644af5213089a435af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 935331c35764d3d9fd709b1990132c0f0f5ad71a15742e95082dba2ba56da2df
MD5 c5be7ddaee3aca5f6e7ef815a178b08b
BLAKE2b-256 c72360c081be0266cb7d5cf55919ca38f839e9e68047fd5d989efdf73abb5b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79dc17ab69ce35b06008501481c906b25ac9afe7008c9c268e198f579cda93fa
MD5 180e245b64d2e693f2c4f38aed35535f
BLAKE2b-256 9be9da92613113ec7703af579f2fcc55ea54f08898953eb98846d8802f11211d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7860e803ac02fa3bb4039d7abdb4de81a06b1c3ff06f69756bc2337b451b1520
MD5 6e55f371e6fc830961d22a1b817e9fde
BLAKE2b-256 3e3f790a7458b725dafdebf90ce001bcb9d22ddb3a22d939727f7305b99666d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9330a453998d3e7bf50eee058b64ebebd30e4bb7f3fefd07b2055b6af753d22f
MD5 1495d80e1d948cffefbd31bea996077c
BLAKE2b-256 d63232e420c20e47ed090a2c5336e6eb18fc2fcb23ff772c8b6d799ef2fe839c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33cd0e8dbe3e14349edaae0e6584094826bcd090e3dee577fe5528068f315231
MD5 8696d1650a9c861c2e5115867fc0a766
BLAKE2b-256 ffc539123feb4e45576600122dbf88c49268434e56f0cc86c135fe80eb13fbdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d4924be2cb784aec8fa1d0833e9d0925fd73635dd4e9b2f06b766d67cea1def6
MD5 3cb96b95dfde8df9868416638e683449
BLAKE2b-256 247ec0b37abd831ec29dd151ee09b2ab162a824986837e3dc078f409690d5d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.1.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.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 73a0af7d6defde7919751562f965cbc01b4b60e624e239e1ef5d67339c145327
MD5 73aaf14b9977ef04c6cafb0bb1c9e790
BLAKE2b-256 17cd59f4adc9294a9cc6e06e11d15ebdad37a65c5eb1023aad69f7544cce8cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b9f0a37c853797985217e8cfcb98a32ed409752d50a180f8b07607f1b703237
MD5 4a8f095f538e4ca34575bea545652170
BLAKE2b-256 36df090144e9e3a9ed929aac047f211c6c6366510254783b93ddf56968ff688a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6c893f1d9b8edd72d7e0d06d5ee36cc39fc43e1b38042175a49ee0cdfbfba70b
MD5 4f294ebe249c3b59e54e1a7dc9d1835e
BLAKE2b-256 56085b7f00a02a919e46e3cda4cf64417f0e2ad8f95d9fc7c4b007a1ae11ba98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cc70de35216ef5bef87ab807d65b32decf61048b51bf7ce3fba2dd3ef094bae5
MD5 d04d8ad29b4bdf44a03d913b1b62d057
BLAKE2b-256 12024e14c47e3c797ba8a5be714aeeed0d290a43969dd3468961f8530d4f793e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1f1fb1bc0f10f2328e4a4e7158108fdee2053049ffeba67839ab44b94d201f0
MD5 52ac87a4337f580a8fb61765f90e6ebf
BLAKE2b-256 599a26dfc4a6f2ca4b18b1df28dd3a51ae88f85781819183b4505c22451f019c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32083a9b7cdcb74c32c1e9a6e2bf82561667cfedce879f2a70b3a91e9011690f
MD5 8688bcde08b31e80a0271c6b8cee5a38
BLAKE2b-256 7336434b8f38aa4396217b45a4283a25d43533f1f889be8e9523e9deef312c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a810364d84996c2d52276cf1a2a2f30af39bccc7e4c0fcc6418632c8cc3de65
MD5 abd590e499646108757abdf48df39b0b
BLAKE2b-256 004e170ac770863e8686b102da87c290504cc94805fead3784c32d67b8194bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf534d002c1cfe7a13b849daa184f95e7f0ec71f45914b1d37ed5602821b8f31
MD5 784a644b81aa9c4d27c65958254bdbcb
BLAKE2b-256 4596b4441504068b4e76cfc01db00af51d38d34e373e33eb8833962653e0116a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a1c9cb0bd7a082f05599e1398b29f0430672350b2a2710ea2cc46ddd226197d
MD5 c758772d739bb54bc5dada10e37c0561
BLAKE2b-256 c20824273c1b5e1a01390c277eb692b52634b4d248f857dbdf72083cfe515b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5c828c4a38f8e4a4793eb66ae352f99a860e34c927ee8747d57c0038bfd27c4
MD5 1f453a4755e724c694cd8c331016e087
BLAKE2b-256 e050e24e92346fd14ae8ff13d0a3586ceabe30f9190c521bb298aac6cb9ad253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b5e6e0683640499eddbf6b61572868626ad2431776e163f6220d9223b9c5968
MD5 7f55559e971fcdc61074a8b7917b577f
BLAKE2b-256 9d256a7fd6240e302da6b40e9aff4ceb6ef748194db47f10adaea49303f8f8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be9122e4be5d4c31232a31a667dadc137cd12dc7acefdfbeb84241ffc331dc98
MD5 65bce05cb51d537524ff26b765d3b930
BLAKE2b-256 d1de48650082ceadbe424ad6a46e09440d0e07f538626d705af691b842068e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.1.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c9f2649afb11ccdc3cb6739fcee2410721662e96aa10cf3f645790d6a3ab5775
MD5 f3901d4e1d4c7255b6535a1bed7acdc9
BLAKE2b-256 e0ec959545fb777214c887225e502b3a3e0d6fff181e34696571248bc847f281

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