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.BitArchiveReader("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.FormatSevenZip)

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

    # Compressing the added items to the output archive
    archive.compress_to("output.7z")
except 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.3.tar.gz (76.3 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.3-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.2.3-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.3.tar.gz.

File metadata

  • Download URL: pybit7z-0.2.3.tar.gz
  • Upload date:
  • Size: 76.3 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.3.tar.gz
Algorithm Hash digest
SHA256 13cbf4bd795bac407b0ae334549f5b46635ba95d7dc3233ef13a9c5f2b0e0e61
MD5 57ec18bafe4e6e6dcdc068fdae120207
BLAKE2b-256 cbd61f6d1a13d13ac973fea1ba13c8fe5b8f0edbc24b896eb24d02f35684e03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c452829d10f67ff89ba45bfaf5f75042f33b11739b7faae75e26b78679ab7bb9
MD5 c94009e1a5b79b22a7de81df240a2d9e
BLAKE2b-256 f4758197b1c282c84d5480fb761275bc07059aeebad40517a6ac83b69fd83608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffb94d71beaaa4f4570779b987e9284d54a0992179d06057db4b89e18980a54b
MD5 3c2bc84be83598f108d220959edaa2d1
BLAKE2b-256 6ead485c813158627efb02e5227fa71ba32fba170a29e88105c5573de9803598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c622fc116baf0688facf9cedaffee98f31a3ccf0fa11a0a1a5bd8f582cbef98c
MD5 eb864e0c5ac71e490c91e757fd40b656
BLAKE2b-256 d5b27b448241ebbbefa4b81504f94970dc861b13d8be670db9c318d1e2fe6b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecbe57fac35d7f25db57894b52b38b9859d015db8202a611b6c009246a8ecea3
MD5 1122587af9244baa8ed65adee514a166
BLAKE2b-256 bc016c8f15d03112e0479d7a33a996642ed730ba3bae86d289fed281b0c4a92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 991213b47267c6e90ee6c793e05a4df6d0404a4d079e0b9dae63a2e311d2cb93
MD5 65a10eee46ebd6b7fb5d578a7ef42d83
BLAKE2b-256 9bed77f8435fe9285e21601d01438d73efa7a5ce629d6b56b047464595c84a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 068d40be30ef2d9e35c431b3d200ccd7545fd490018d69a43a32ca5eb6f2b2f6
MD5 59899630f4505ebe31fbc9ec182f56bd
BLAKE2b-256 971c8dbcea0f3d38a10484241d0ac9ae402019ba279b7ed76d15e7077b8e255a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c319ac9b7b2a8fb58f9fc3a2a5184a0807aafd91cbd16b87f97f33adad547de
MD5 0db06fd8b20521679b3034064c2bcc84
BLAKE2b-256 000f48ef9db2d7998d9aad3916ec8625b4e8536308ecd454dafa83ec43f498c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0a57551d925b5f775dbc8e659d1f4e86e475975f5c6e98144baccf625f8e37
MD5 f6bc06e935ebee3987224986c9dc7920
BLAKE2b-256 813f799b5614b1f784d3dd10f6bca69aeb0578597386e1f99ed1aac24cca9619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18d5ac245d702796236087bd65027262b611e977a75db1093dffbb5179b18372
MD5 279d8df9df7942cc25fed60e646e226a
BLAKE2b-256 bca23b515daa0e8b1a4289f0d336a7b671c77fe5351b451ebe3521bc21efd590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 614b4d23e89906b0039c18115bbde1f93c4313a6ac7420bb326ecdc8dec91dda
MD5 6df81795efb0be82f9c545cfc5bb1554
BLAKE2b-256 3d38c40fc618cf4441d118b87a2ebc5fd05b47376627a0b5c9531091bda73a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e998aa99863e1813b15fe3611039a971334fd8bcdfecf22748b4bc46e2d702
MD5 cfbb6083498ae5b7359e007ea1fe74d8
BLAKE2b-256 6705b36a04d1d978a343a9eb06d292744b2139c18ee035b52351d04b6a4a0b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c646a2332e6df2ab0898e0e4b9590695f050f6ca7ebedf15141dc6146ca550a6
MD5 b583b13d84104a548bb1d0273811c2a3
BLAKE2b-256 2ad396b9c5fde1cdf6ad385b0ef2edb428d949a7fad47485653f9069b2d0ea87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 244dce76a6b44e1f17f9b167801939cf54b0badf478d01f862a473d29d0d6707
MD5 e60658b1d02d2d17403376d433c19797
BLAKE2b-256 6cb1a1e75da7b64aabb2dd59a5d2c9c004ebf6f8619f95d98055c16e555ba3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f5c09a02f9f2856742b24b967cea4c0473a1249dbddbe52031c6f543a48bca7
MD5 863f4dc5bd33a0f20c2a9dc5cf33ea21
BLAKE2b-256 347112b0778d147edd9a29f3b0c8eee8020e0b4f6ebff6019e34e97996c749b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2ce3e3def554fc1883eb5cad12f721a64725daf6fe9c89f7b0e9cf14d0b26ac
MD5 5890896f6dbb2e4df6b8848348aabf5b
BLAKE2b-256 e73428052c2439a3dac561f3db87c2387394c07ea95aa0207039751d05616d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d83603f01be9acc767cb859bededfb765db73b6db1b9a74590670249d68ec00
MD5 a0a6cb9037494f1dd73bd91a010b5cfe
BLAKE2b-256 0af12fc6bb6629ecfb8e29f2d3bff667c9820f1686be0073f83c6ef237b08a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95676b3ca6bf5ee7b34d7542abebaa1888fe2ca5930db54a60d6d991660e3c9d
MD5 e98063eaffc9b3d741ccd210cad4dffa
BLAKE2b-256 1aed8b004739da9c6a97e88307637cc16e66381e61654e2feca76e896f7fce3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e813ed9f07e84102eaaa08fef1acb1044d76752b8067ab94342be9da953612c7
MD5 f345d25502c53386a4d12dec1a296921
BLAKE2b-256 465ccdd459d8a1cee364ca2e14892f43be59913878a3614ba51c34de87b0b012

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d97b45dbadc974b70b44eb874cab112f75f27c7cfbd07b22b6656a7fecfd0149
MD5 863ce582b887a2bdd331734dcd086b8f
BLAKE2b-256 554d38541441a536653a9c0f60639a9663acb35e320611a030e11989e356bfb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d4b07a712f33a06f66c869ede789cf794d00503a2227108d95a2c066c38646c
MD5 5363a849cbe7dfab9aab7084a4ffa1dd
BLAKE2b-256 58775cd3f5f613e048f17a2f1f9f1130a06f7c7b8ff26c37ed61a1e4f90b75c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f7e03128d0f90d466ffd2014ffbfd5ddc3f59ff295443f4856cd582206c6c30a
MD5 41380dcda5c880373c9307c23f96ec74
BLAKE2b-256 d2ab0fbdc639b7d7084bad223e6be8c895227ec23ee2dbc9131bda9593c6d00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d40abecc420c5fe70e66f11eed91f7b035a9b3dc13e071f277664889814d79df
MD5 d9e883e500d445618c6431790123f006
BLAKE2b-256 07daf14f0be576ad2a7986f3cb601612a1f3579854dca3e2731b85c29bdaa9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9d69ca46473361b57a1bcf976c4d4c10ea47f4ab32ab43acac909f42ba550d3b
MD5 38d6d949e44f197edbe135fd3fe01d62
BLAKE2b-256 9d46fdf7f4d8d2d89d9f8f07d249a243dfac9f251acc498122f344cf7896753e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba8c8b4b61f395a405b1a30eecb36d851b37c4c5cf48114949f109fd1ed829f0
MD5 9551e0fa95b6c44081fdb57cb31f2467
BLAKE2b-256 e5bba6ee2d998a965b97ebd216abfe53760f28779a6a1a7e1ad149d1cd5d5627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76b3f3746a2a9c11ee23e0cd03e30afd409b8b7557165b0d41aca61d7709a77f
MD5 b5d11d3a12aa1439bf56236c8b5de23f
BLAKE2b-256 b9fd633827d34e2afdf8b372ed77e4d6e29c800e14676b2f28f221e982ba4be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eac24203424655986f230d46457f38d1232cf3e2544256059f381f68131cbca1
MD5 9016ac2d18eb397ab1dd64687a30ba4b
BLAKE2b-256 1d912ab16b69d9b7adb54cdcfe79dc3eeae6540a98bf25c624db235fb37a0ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f28c259dd9e736e77ec4cabb3807751c5de7f9401950543e95c39d5780449c7
MD5 dc362d826ee90ad1d719a00b35efc434
BLAKE2b-256 6f37fefa07219322468530054930ed6a28714c9cda160b34beb82a605530827b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc4d575d9a5a35d77b59d95fd81ce51b714c8d2b88be990f93f0ed4d6b6bb59c
MD5 3fb367a90817b4fc7ac46d88e752cf23
BLAKE2b-256 5315de84fa869a4470ec498bd7b5eb2bdfc833cd0e6d4588e5539c28c233d5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70e644383ca69483254853dc92850a61263bb2d8cc645a81f7f02ab470ef6ab6
MD5 66d29bc124a14be14ce319e86f7166bb
BLAKE2b-256 3aa72855100590ca234eb766c7a78723cb0d1741b3bd3412b7d94e2f197b1b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6979a0a68e3d9935eff9727a638032a6d1146b781f5ff686c5e5fb2ea3cac2d7
MD5 354aa963184b9323407244e61cd61a8b
BLAKE2b-256 f4efef53e83ce028f0c455ab4dde9109b97029fb86571997c174551aad1ce961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 299cc0c3317513f034c12afb03c5352f792609e0a3165b3a9a33756b75eb9572
MD5 c6727c1392e9cd32e45952e79f4974ea
BLAKE2b-256 ce3bf5f871d62b7fea32ddcd04a4d66d68bf0efe9cbf6cbfc0f53ccdc498b497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0af85f6d0988d35011a1902fa3f2b83e01303f92e2a5756dd4598b610e04b54a
MD5 4896965b20c02da14b3996c19570f60a
BLAKE2b-256 0532f38a233b37e4a0353ba28b03e23f5bf625645fd35e9e88e1a3488f92d4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8511a6c485695eea47da578d4c47bbe7d583ed96d02f6c165c37e743dda049c1
MD5 41a439dfdd2a7700e69ef89f51f3f309
BLAKE2b-256 829224e639115a71810b7af2ebfedd58844028e40cec40ca0d478f096d3517ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2ebdf4f8db68aed3f3006cb490dacf665343af70ff9e57bfcf17c9392b6a04b8
MD5 427557dbf5b216621853095c6be4e549
BLAKE2b-256 df34d509a83245e5710e1a37b0af2387b7d40c42cc8215f826a041e52700c9f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b0a856e2f153c9ca0dcb7338b9f13938809e9a8ea5d901adafc98ccf8965ca8
MD5 1505c31cd6918f462747c23e3de5184b
BLAKE2b-256 ec3fc0211a703a6f9e621fddadc662d14dc45250e9e69c9f320027e29246fe57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e80a69bbf7a7ba7deac800c4d508555efb933892d90573b83ed6878b38c0e8b3
MD5 5f25dda199bee276b04602f2226d565b
BLAKE2b-256 fba61724a00c68a16b432f865ed1100a8ff60a787dd06adca9f0e55ab174a40e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c769a9becf3179892687471f6a54177c15860ea06abd47136b22e81e37f99c8d
MD5 c54549e5457cfeb62a59f9a2c42a796e
BLAKE2b-256 9461546ba6e6841e123a471cb2f8834ad479fcf2f76b4d886238c29557f7dcec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2d47d580f4f1955facf3fffd75845c625da938c1a72b39d9a5415d3becb76a42
MD5 5ba0c29c209c3b3caffc5b0dc611a67e
BLAKE2b-256 7826e189fea5a7308f6b490eb41d68e0b8a534374ba0124ea068430c4bab4a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3f2d71f8b738ffd33cfaa0ab6e074b2e1506435ba0235af322e235f7440fbafb
MD5 9995c34c85b27e25ba929a87165021b0
BLAKE2b-256 0210e6c33ab5d0a4e7e2d914299b143509cebf4d9f612ce8ee495143ace599e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5daa2356376790396d1a63fd513141a16ed3e20db00ed0469970abeb6d797364
MD5 bd06ec23ad353b762b462f103eee8bbf
BLAKE2b-256 b38d9705d9279bc9a5121982f17982c11e675bbd997aae9bde5c5c442e439c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5a25bc0c5f53938b23295a6c10679454ea5dffdca1768300059e85bb971c5ab
MD5 3a8301009c50605f338dc4b1a4ac45ad
BLAKE2b-256 ba3234fbe5feda502cbcd57cc8f735388e727a792e0ff22d8939b4bee9a539be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1052842fdb5580ed1c756a77fb43cfd68ceaad2f7b0d60c8c5f654918973028
MD5 47a820c9b3824babda070cdc1c216b54
BLAKE2b-256 868ae547ed40076a4ea7a4b08daf4034cc7f931785cf3a0da340cd05bf5d35a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfbeca6b48adf7c6943f41c3fcbdf2a8e397b8f43954bb5e7d3fb93ddfeaa4ba
MD5 546ba7fd05028a00a375362eb648ab16
BLAKE2b-256 481b5fc9469cd71478a1207de634dc216c0cbea33ce220908e6e20b7974748d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d168dbc7eef83e61a6a00df8cbc2ac517c6980068f904271ad53ce13201be26
MD5 d9ea447f705ba3a16255e68acf685446
BLAKE2b-256 e26d0e9e7258cf8b53ce5e756f950f76f2c306a3780793f7edd12eb2e6a49202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98b0676b0f4a7470352e3dc56b99418c05d93963e269ba61632eda222fa7ab87
MD5 a1b48d10f183eab704b661f4f973412f
BLAKE2b-256 354cf841dbab49e057b519236ee4efc16ba8a2e3c0e1465e14a1a411697fb37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad64b6f612335dca5e1172f80a95dd9875bc529c90058e4123ec887985940646
MD5 e011f5e96e112948b9b6483ea4bf46bc
BLAKE2b-256 19502ae2597410ca8ce0317c3cb8b76e405bdeb24a8b9ecdd3b077a60bebc7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efeba03bc199f30eb9d55295c1feb686cb0567fedfed138742cfd91a69c26b37
MD5 18b69762fcc75a129e504b4c8ae2bed6
BLAKE2b-256 c7fe2b73e9c6084b9d67422eb2ec262df3ab2fe6702f50108e5cd51fe1fce344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b72d112b72da922fac5dffcc9fe975ce4f45e423bdb3f58ef1842dcdfad59e25
MD5 2c94c0171bae22f5e4a3ac2c7043be21
BLAKE2b-256 91b2f65f38491f5b33bec5bd8e5a934b8935a977b9841f484932899697273c8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1244eef3470bbbeaf987d13e3dc16e93d91f7304461e8adb6c46b9d7dc7f2b1f
MD5 9d73d33587f20170d97b68ded37f93b1
BLAKE2b-256 752e8ca5db5b3a4acf429671ca4520c9a2fcce311072f400b264f1888d626643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ba67dee5201bc3014eb32419b153433e67364169db589c444f25396cfa4826a
MD5 b6477fcf34f7b84cdbb8c158cf7d3107
BLAKE2b-256 e253635b2ff97463936f6b7309d0d50420d2e943a92b35cec2f43035a6a95117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f06f79b74dca154b898426e5910fd984ba58dbd996c39892b49233310ceb0a65
MD5 ae9adc62399f3f5ec796c89a9c6f5cc0
BLAKE2b-256 4e9c8dc6dbee6eba47aa59ca9b743d93ee63f56a934258c7baa2757b1237ffda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6522ec587f3ac45a362d3a9b6045e38e0b6f267f49cccdb45a06ea51657816c5
MD5 4666ca977ef51776ffdb10ce730de2b0
BLAKE2b-256 0112a6108366585de4af988e90628ec303e9b78b4ab6bdc912f19aba06f7399a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1f8cd4fb12e03dae13487445b6db8c0fa465cd681d11c827cf59b4bf94c77482
MD5 41aafab7fc2864fd135ecaca515f35d9
BLAKE2b-256 c4153593a27c337a2911df4fbaccf2f08327a4ba1ecd9b09ef61899b8bb3831c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 400da26fd762b78e0bdaa83a23a2434e6f48b87b035f5a98d5569f16d007dfc1
MD5 5ecaba3ede5dac5e352e491db4b6bfd6
BLAKE2b-256 95aad6f3dc913770b64036a359646f34bdd1126b3b36d49d7c4a2241b6773162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68a8b130e1f424a018eb165e3a2388abf576240725f75377e5f0a3637ada581a
MD5 a3f3896fd7228675184b9e103dabfaf8
BLAKE2b-256 98a2f7b27cca5b1229d16d85eef52cf9386e9fad95386a8bea673d1667864cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3e59e5d6deae4ee87a771a5f62ed437bc0b36fc19271a599134c218886c0f16
MD5 427d40ba5c7e451baf53e454a7e2ea4b
BLAKE2b-256 1ab1be3a5d0d523de0b8aded9d17a5f781bf00160825b93f5d659c7aee5e907c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 124d961d26888990c412e04f492c27e07b3dc9979f64473bd525cbfb099f623f
MD5 98a2f727413bc3d3a66709a188268802
BLAKE2b-256 de380ef16082149950b4f781731c3ea4e1ba77e59840a64c78ac11b4f0552da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17a98c4534b758362d9f274f6866f0d5f5302e1f92ddaa852be004adb0f1e079
MD5 f125de5d276c3d03d5c44df892e09d22
BLAKE2b-256 b54c1d6f04eb1174d46fa091a6456df4b1236dbf48b4eb987a01399fa2b5c2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11caf6183eb3adb3e29863f728fe30ac90ee2f7dff9ac46922b95989b8c7c368
MD5 985315306905d0bb630dd876e3c783ee
BLAKE2b-256 43ec093fb07ce1f1cf34e034870a2b6bd172c2ca529079bf6f6f91fcbd1506b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a65ae42e327a5145f448dc2a6114f4b4e165c42adf384820097e5dff13cb26d
MD5 e7e9e8361f6388e231e8006f5b2cb835
BLAKE2b-256 023dae84a015d3e7c8ef0f771aafaf9a5ab5c9a6af65744847e70b944f44ebe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59c6d81ea218089e04baef1034ed54eacad735b8cfbce87dea633fbfe6405488
MD5 060c9313734e61f11b3c44e9e9bbcba5
BLAKE2b-256 1d4ab33edd84d4a89acf8d60537a2197f1c54224d7d3688f369590757828c544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03d9d9c99bbffc3ecbddb2c269c36cb6b6849dbe5cb96ea0e75ff2ec21b7bf2b
MD5 8e0fecda3a1c3f492fc1a62ec582cf64
BLAKE2b-256 467c06cc604a565521d4e939adccd743cd45a14b516be4e88c8adc12e8b1e510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 385121c74c8af5edeb4a775498fe4ea7215789aecee990c48cccedb093b0eaa0
MD5 945263594d11235fec7ad0494a4f971c
BLAKE2b-256 ee61db0166fd2237cfc09106817fa9511407f8e1c95b2b046611474e84f747bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2fea1f1c9427832fe3636723ad74c10d9154031174baa83977cb3ea0b5df7a0b
MD5 4a6350f125910f033180cfec58d764b4
BLAKE2b-256 c0621b348ab41acb74045f5960ef6f5c4ea894d10fad80da0668e9d413d23bf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d68a48e4a54ec22057f8ae7cda4f456e2990b16a34822a3e2bccecab2885463d
MD5 64809da4f02b1c549831eab99ef01fb9
BLAKE2b-256 eb506e074fa44630d20289df1d2ccc8ef43faffa73c3b41a3679a9a5cb9f1166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1b51391fcd79da34fb4ec789549027a01da1bb6a0e1001e21eb31bfc23c7175b
MD5 6845706bf85b1e65efab97c85e531643
BLAKE2b-256 059f697621c9e09e3abac4183fc5d54d126dc074a7386d6eb1a2af21f725509c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b448228c88acb653be4a74d583ed12d94a51c5c9a4a45ff34f6adb39b575673e
MD5 0db853fd6f1cacdcc3948f146ea7bf7a
BLAKE2b-256 ba055ed75fb3e451ec10c912b89c0f8f9798108000ad9cf2c8d13019c4a104ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 61d344071b67a411b14a9d2db832c222687dfc159408c44a7699963e6fbf7bc5
MD5 cbed5844c3f453d655ced516a8098397
BLAKE2b-256 962ac8b703fe24d960018d37534da37fe31921ccfde3f3df0da953622b5199d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc1a07ae0d9d065e402e6c922d4b02385beac64f2562eeea8fb2707ab48b42b9
MD5 6ed25d453a581c9e2b8139ca661cf0b8
BLAKE2b-256 9a16c061797294be92812c124c80dd7fe88835bd4e2160eb63e7b00549f37e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a76bd85bfc313b8f4052d6637b32d84b82d58de5a767f6e0932cf51a69162e7d
MD5 c5b21c0d9092e00fcbb4c89e0017f11d
BLAKE2b-256 dbce9cb4eff5e714f54be9cd4b5ecab999595648581cb0a1c252c40d9a862673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd89bb49c03038c8839a5ba7ec5637225f0ac05ef862010f729bcd3f41f0f8b6
MD5 a8cf0a716118a7878545c290203af9d0
BLAKE2b-256 ebad269dce06dd440a2c30b5b91493192bd2df332920d5a7eb9c594e84d4762f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b6442906ea7605bf9e48f320203f7be72560b1817339f28657822aff2fa491
MD5 e2d8ef85822019c1df8edf2852ffc039
BLAKE2b-256 afd9ff5e3c2e54f2774bb779a1e8bb1503dec4b6427645c5175ea9ddc6119c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07e1ba086c3a3f3f6e7b3dc4181df1543f56c9d818123df4bb3f174eccabbae0
MD5 95b513f310bcf0f73c94485d97734dd4
BLAKE2b-256 b44739a40c43658dca74701dbdd3c757f82d4c264ed4a565c286931c91b95f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38761be65a833bc21a021949c4f8656ac53910434cb38d2cedee45132196396b
MD5 326aef7e9af3975947e98a3a4e5979a3
BLAKE2b-256 f0e3d3793ed7f6ca0fb3b0fff5cde9c02af7a7f720577c07b69585fd99b400de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9f49c9235fd6bb74ea92180b22583d5f977cb7060df9f54e304ec5ca02611e7
MD5 64f688e7f8099034c952e6c6990d9690
BLAKE2b-256 005892661f9c976d0059f83b6eeae7a141cba9e3bdea77c409c2f979c6018bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8409d3872c52f3bb16677486ee98a62d5c2d517e00827154ec92ddb7355d7be8
MD5 267cef1243cc3d9ba838f45767706cf9
BLAKE2b-256 f539000025e84189b3ebef22287afa927f37210e2288e4676bb48b5b6eec452f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38689665eceb7da2966ce37b8feab0d6401a5bccc6b82435b9d408636e861d85
MD5 9f25e47bb1656d278c3df055722e7f62
BLAKE2b-256 e760c8271f2b5f9ca68571805c3272d2444a4f00c7734b3f1de7104c853cf801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba92fcab3489932f50c1f5594b957d41cd37622c4682985a7ef797b198077891
MD5 e9f528e81e839d3db58466129e8e8621
BLAKE2b-256 29de79e6a29aa6d96e1c829bc536243685ef66fd06bb4fad05b882abd522250f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a0dc13256e6a7183063ba39e1d8fc18c017958648147f45a65d79eb06443f1d3
MD5 bc31df0686ed7a5783747adfb42e01b2
BLAKE2b-256 b6c89376e700790eaee7776e25e78c59203ade4beac18f9ccfd6ff523aab8208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8a72bd41ba3744cafe86980f51ebc3fd1c45c5c1d7b6cc698ca39fc46bd7e49
MD5 9775d6aac45e4f6736c16ac106bacdf3
BLAKE2b-256 c8d7aac742d3b47cef741c5c19b3586874d47be92af5ba3f2f6f2c70f84a9ae7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dc23c3d4618df11a5cfc9d15ae52004c926787e8bc33fdfbb513c8b41e323a78
MD5 3546e28e6be28cd46ef822f304d14314
BLAKE2b-256 590ef6538256a75dbe0b3c309a0661060680946a3f334ffc5b15832d9c839d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb1943ff88dd152a5e86ceed03cc7a372752822fa54b49c14c33b4ca04711aeb
MD5 018ae6bb4801a1ceb10b9955d883296c
BLAKE2b-256 255c6677f62f618735e2ca689953e0ba3f3ea41cc8d1efe0749183e437dab1da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f5f55b46c672744bd05e538bcf664e127fed3417494b6dc1dcdda5e3130eaddd
MD5 afcfb7e97ebb5c6abf10df68fbe266c7
BLAKE2b-256 ced4f9b05556870bd5b9ddedefc1e2dcdecf7d51a5c26d13597ce6183d38b512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f550dc7912c175727b85e63f448d872f91f699a3d70e035cb09d7dbd70f2fc00
MD5 fb721df7599bbbe4bfc5e9cb14f5cddd
BLAKE2b-256 f76e5eefe2053aed6ad93b02821354572f5fd79733b3187bcdd6eb2413d032f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 988ae40035d77737f3fd29f4b2ed2dfe04c8fa20f255487f86387626c921da26
MD5 c99cf1ee935d6fd8627d89dc6709fe19
BLAKE2b-256 ef50ee5ba4943bd79ffbad2b6321b08d755dff598be0851cdeb745b254110a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217a77d308ae879cbe5f7055127375609285ac27e0db812751c345e148d6b8ed
MD5 4594d2289a608c7681beec951af535ce
BLAKE2b-256 b44a20cb14dc5d5adc6edf182699b5f88cc5ef0f92bdc9673da86897498d2ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61bdcbc68821d389db0d8c2d5d13079dfcd7c890387adb116233966cbac1ce06
MD5 7b3c67c2be99c26d465da3bb751d4363
BLAKE2b-256 69dd9a70239ff028c89843151292bb131d8ae24b2336577a688d1ef4a4818552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fa09895b12b6a4170572342f6745303099932570d7d315450637a53a1aebc9a
MD5 c9f6660e2596068f3d9d1986191076b6
BLAKE2b-256 cf7dd61aa731cf25925a617eea6f3d9f7e972e9d62719753cda7a17002b3e02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 597c5da2ebbdde859ef3b608cc0fa0e8f19fc09d8d9fbf2a07fa5037033d5193
MD5 f55789f2c2dab5d1cb37c45d151e902d
BLAKE2b-256 9e953f7e6cf74a59f74f62f297912d83cbda3186493853fbf829029278cbef32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e51f1a551b94f883e0647fe8adced789871be2cd62757dab23d0ce87281810e
MD5 c2240bda387ca6a7799b5dc26c72d897
BLAKE2b-256 12c19a2004f5514bbaa98f4113c82e8838600a54078665febba7352190e0e6d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d68c76671cc12af4a91d3f8e0243e0923a93fabccb55c752a078a425d9f85f5c
MD5 85372273bea79778b7c4bc6711b7c151
BLAKE2b-256 e566194dce7fa823acc067570dbfd0a12cc69c6988caf8c41bb348a59b20fbe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47821dfec30f2f727b9c235289f6bf6c3f7480fab2a1c0b8965f2bb5b63514f7
MD5 a6abf659ddef6cd12d931e4b048b3a30
BLAKE2b-256 058b8bb859050bd7faeee4d2cc360aca6442da766a5b997f4d62375fb5ecd3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 59cbd142b31c0bc9656c609243b3f1851e6d4de7806de13b81ef63bfb9c89025
MD5 0ffadcdeff1c4f213400367804e5df15
BLAKE2b-256 91fc8bf2c21d23a0803e6810719b5d273e3c64664a7cc30a2ba2b327a21f8b04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c78c82125eab4d4aace76635fe742b69c629b72d98df0e98da1793743841d8f
MD5 6a5aecebfacf8ad37f6e6b05bdc5d99d
BLAKE2b-256 639f37dca9eb7dbcb739ed96098cb502769a649efc5770de43eb4b7f6dbc1b52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.3-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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dc36778301ad988a0f4483427634cdc9845370ea3048c0dc6e2d75e23ffa2a34
MD5 2cf54a7ed461c601dd3447eb74465898
BLAKE2b-256 f833cafa95ea2419efdd44ed33a62b82f45fe2fbc74058fe6e04e531b367de02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aadcf0791a72c1768a1523666f0ed854bc8dec98d39b1fda6716ad21b81cce19
MD5 b85f8f9de1c1ddd1bd92d451f041d773
BLAKE2b-256 3c0b3859bbb2c06729353fb930c9bf4d415fa97804985f18660cfb973912c290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8058efbff523b4ef11bf86880d7424af93ae08692acede5214e8790817cbe618
MD5 36b0435dedd1de054f54a64cb9e5491e
BLAKE2b-256 23a17f49efe39d35277d16d7c21526f35ca05c2566ea7d44f9cffae0ca16063f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2e60b80de46226e8dcd114e1b8d5d2637e40a0167f141f5014ab38307e22b34c
MD5 a29f09faeaccc864c832af39f0112278
BLAKE2b-256 06685b8bc334b7bc565138da462dcc20cca688ce4054ce8816a02c1821489167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09ff4722489785b6e36ab113bc8315164abb0ddb75b6c3f9a95cc00d21525125
MD5 af0493e40771d741b8375e2eac9d3c84
BLAKE2b-256 68862915fbc85ccdb62f0829dcf64109bbf4126739d0706426dd70db5460c112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a15da1938384cf9584078100c44dd110a76a06b46d8065dda5457c4fbc9ca6b1
MD5 5e91b9c8bda3b6dba3468f548af4f7d5
BLAKE2b-256 758339c4b8413ea2f9a2afa8eddf38cbbca255f90ccae3545727ac4e64346680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a209321180744c595653905980cba5e90b40ce0a5762af10e1cd2add98cc386e
MD5 a9888793ece3c94b2268354a34599903
BLAKE2b-256 6d334b423a7473722016ad619c82cdb75f43c3e1e217d74fee1bca9e92ab3c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a09c7145c9ec2e1d3aa2b9f2330ae7a3c0455042c567bf06201a3063e7367dd
MD5 c6a32e5bdcf2b44d82ebda06adde0587
BLAKE2b-256 3a1edd7162f52e1c30966d0e50818545619e483aa74177abf183586607068549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 089ea462ea08fbb65cf2c94ea9a0dbe0aba3c023f1bb3093be3832a0a2273388
MD5 5c32f98085fb5d4946e556b6e78f1571
BLAKE2b-256 ea57b2e986b7d7c0a0ee405f2e133ca1f1601af5114c737e20f32cc8ad00f18c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c078e63f5f7343dece29dee29c2992b96ae98f1ce129a4352f544fcf4166e704
MD5 a57ce864223221b6d85f8783dab054bc
BLAKE2b-256 0853b87805386bed2589e53a9fe8d4ff5ccfcd94646bd5dbeae5edb1dbe30df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2bc580226eba6fe54111e62bfc38dca35c64024fbd639070f29724eb9fdf639
MD5 92e5da2f86b28f85bbd0c4117c5c3328
BLAKE2b-256 0eeb2da7108c1891ea246cf29ed2de3f228ca2989d92906e1fd74ef9bc842afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17a24f7f4f04786836277f003b49562fea5c87c69faa3b027f2f4dbf3aaf7259
MD5 b2caafa3b260382d9e7566f296ce4dec
BLAKE2b-256 6e070718d9b2a6d96beeddc5cf91776a8caa980bc8ea3d9fcc3bc37c3a8920df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6230ac352cc35a4ecbf9ffa1d9fde0e9c887a75b924a8a3fa12ce023260e3c1
MD5 ade04b9a83b39bfb4f63282ccd95120e
BLAKE2b-256 a1232652f34e0bb61862f9d4599f1b3ef451a153b40967bc176b8ed69e66ab2a

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