Skip to main content

A wrapper based on bit7z.

Project description

pybit7z

A wrapper based on bit7z.

Documentation License SS Badge

CI CD Renovate Semantic Release codecov

Release PyPI PyPI - Python Version

pre-commit clang-format cmake-format codespell markdownlint shellcheck

Installation

Package-built has uploaded to pypi and just install with the command:

pip install pybit7z

Example

Extract Files from an Archive

import pybit7z

try:
    extractor = pybit7z.BitFileExtractor(pybit7z.FormatSevenZip)
    extractor.extract("path/to/archive.7z", "out/dir/")

    # Extracting a specific file inside an archive
    extractor.extract_matching("path/to/archive.7z", "file.pdf", "out/dir/")

    # Extracting the first file of an archive to a buffer
    buffer: bytes = extractor.extract("path/to/archive.7z")

    # Extracting an encrypted archive
    extractor.set_password("password")
    extractor.extract("path/to/another/archive.7z", "out/dir/")
except pybit7z.BitException as e:
    ... # handle the exception

Work on a single archive:

import pybit7z

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

    # Testing the archive
    archive.test()

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

Compress Files into an Archive

import pybit7z

try:
    compressor = pybit7z.BitFileCompressor(pybit7z.FormatSevenZip)

    files = ["path/to/file1.jpg", "path/to/file2.pdf"]

    # Creating a simple zip archive
    compressor.compress(files, "output_archive.zip")

    # Creating a zip archive with a custom directory structure
    files_map: dict[str, str] = {
        "path/to/file1.jpg": "alias/path/file1.jpg",
        "path/to/file2.pdf": "alias/path/file2.pdf"
    }
    compressor.compress(files_map, "output_archive2.zip")

    # Compressing a directory
    compressor.compress_directory("dir/path/", "dir_archive.zip")

    # Creating an encrypted zip archive of two files
    compressor.set_password("password")
    compressor.compress_files(files, "protected_archive.zip")

    # Updating an existing zip archive
    compressor.set_update_mode(pybit7z.UpdateMode.Append)
    compressor.compress_files(files, "existing_archive.zip")

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

Work on a single archive:

import pybit7z

try:
    archive = pybit7z.BitArchiveWriter(pybit7z.FormatSevenZip)

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

    # Compressing the added items to the output archive
    archive.compress_to("output.7z")
except pybit7z.BitException as e:
    ... # handle the exception

Read Archive Metadata

import pybit7z

try:
    arc = pybit7z.BitArchiveReader("archive.7z", pybit7z.FormatSevenZip)

    # Printing archive metadata
    print("Archive properties:",
        "\n  Items count: "   , arc.items_count()
        "\n  Folders count: " , arc.folders_count()
        "\n  Files count: "   , arc.files_count()
        "\n  Size: "          , arc.size()
        "\n  Packed size: "   , arc.pack_size())

    # Printing the metadata of the archived items
    print("Archived items")
    for item in arc:
        print("    Item index: "    , item.index(),
            "\n    Name: "          , item.name(),
            "\n    Extension: "     , item.extension(),
            "\n    Path: "          , item.path(),
            "\n    IsDir: "         , item.is_dir(),
            "\n    Size: "          , item.size(),
            "\n    Packed size: "   , item.pack_size(),
            "\n    CRC: "           , item.crc())
except pybit7z.BitException as e:
    ... # handle the exception

A complete API reference is available in the documentation.

License

Apache Software License, for more details, see the LICENSE file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

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

Uploaded PyPyWindows x86-64

pybit7z-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pybit7z-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

pybit7z-0.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pybit7z-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp313-cp313-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pybit7z-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp312-cp312-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pybit7z-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp311-cp311-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pybit7z-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp310-cp310-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pybit7z-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp39-cp39-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pybit7z-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pybit7z-0.2.4-cp38-cp38-musllinux_1_2_s390x.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pybit7z-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pybit7z-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pybit7z-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pybit7z-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybit7z-0.2.4-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.2.4-cp38-cp38-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file pybit7z-0.2.4.tar.gz.

File metadata

  • Download URL: pybit7z-0.2.4.tar.gz
  • Upload date:
  • Size: 77.1 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.4.tar.gz
Algorithm Hash digest
SHA256 c53ee9c68af4ce1c4b684b4d38d5367fdea1a66d2e46d767c3f1178985ecbb7d
MD5 41d700916b15bf35198913ad73daae8f
BLAKE2b-256 28641d268bc5e456b2d9799ecbb409857ed12f96e19953f9b4b11400978da806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 183c9ddeefb720c229eb3bc8c350e282818d28e3872d40ff4a1407be7cf25d89
MD5 627075322b5bfcfe2eebaf7d034a75b9
BLAKE2b-256 15308b59da427f76aa51cd4dfe67c7af61111df27a93e28ef86b2d273c460eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 362a18143a7e8e8246e5a4ae810302ca6caf65b026cffd9bb6082da4319a2d00
MD5 680e2a23614699e6dfaaad0384c40f26
BLAKE2b-256 78ef924dd6c979298292579f190f75ee428d357b00c920413d7671dfc7395b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb589490aa619170cf2e35737f6289c4bb723b3636d4684b892267bafef953cd
MD5 16ad447274a37ee32f3bf5ca28563b04
BLAKE2b-256 b944c57a999af77f3996bd8afaa83dded2160e10002c92a1d99ba5ce2b2e16cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e9cba4d123241ad101e939effdca87f4a675d921ba9f81a00421410de7513ad
MD5 66e57797b1d9a750a8c2227fbe4ecb12
BLAKE2b-256 e8dd2e9069d25bbb4a553b31df9920fea56ffe433dd11e8af4b6086cddfd93a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5160affd1939e07dac5dc265b3c83932a3ee3b5df1d1293ef863fa3edca36a1a
MD5 15854dc339c1bb2d56ccff4d604b90c8
BLAKE2b-256 f26917c57bc932e40903ac691ea336b81103912d8cbef38503a68562edc5511b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d36ce4ba8ca2ab997169d8c570146bbb7cb97bf50f3cc2722779ee56ea81975b
MD5 af6edb25574ab2a442081771f2f56561
BLAKE2b-256 136ee167d81832a1f9068f997efac3789d46bfec0eb4a677855903366955f880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 71d66a8f48a7b1f2c42a344cfebec8c2953955404ce5b5bfec461627109531ed
MD5 c4695a03fb9130c5570b0ac4ba0debd3
BLAKE2b-256 028ccfaa3763a3d684377c5638b51cca6a6b7335a1f39995de59fba6491ec506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cc16a63dbd7e11f80ee90edc2a9974a644f93039762bc0336f12ddfde965aa3
MD5 9b1c0b30140b23024883f27bcd20c809
BLAKE2b-256 6210c0e7818b880d5963a9b57c505fefa0b790b33047aae8d8812c31ff347537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80682ff4bbde4ca573ac623068115f7628bc8e00a0fa3bf5e0d952fe02b25146
MD5 90b1476e7bc0561b09c23f45766b070e
BLAKE2b-256 2e10806d866dfe7bd9f9cb7a201a70fca883d5e7d7c542ea940348e38d72896f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 453bff09b6b1a56cfb4a0f6acae493159adb983f02543b91489366e1f696df8f
MD5 d133310788596345900605e7d22e8364
BLAKE2b-256 deb04504eb241d1b4d92183c7b4356b8a7d45cfa3a81864e4b1a98cba26f16c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d14a9a0d24c0397f191e0baebe8fc3d7a760905a4044e54138a097b7358e894
MD5 5f31ebc7986d4ab58c0fcd49c0c467d4
BLAKE2b-256 7bd55e0511902ce2a6cd3cdb10780d2123240dffb8ac95bc91ea2354b1bc336c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb26afd2dcf766e427eef758310a50e22cf470fffbbf881c7e11f1b5c5c68886
MD5 8582d6215e017c54e221ed74047de4c4
BLAKE2b-256 e2046714c7389cbe179cfcaf84774072d6152e2525dee259e4c3f485c0492c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e417180230c9bcc5ab1f4584a120bb75488a38c0f1d43dafdaba7a5f9dbc287
MD5 dc2691cbad7d61464a3eb07f0f86787b
BLAKE2b-256 25d5e0388563b41519e95bd1bdd785088cbb952c2ae46cf1f3e486cc6dd102ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d1048b193a83dbdec05485f3a243a34af0a9f301382a7d6344ecbfe80ac3d65
MD5 31da3f584cd2b63867c7c9812b939ad3
BLAKE2b-256 5ff31d2bb957664a653d1ad818ab9a291422c3aa01ed8776357720492a68e888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d0d11fbc0a6e7440fe1227adef151af0c2bf2dfb71e1f7a84d3edde5791dbfb
MD5 21f627cfadc7d5169a890fc4b70c7d7a
BLAKE2b-256 9e080766f444c465033db7e4b9c437a8ed598aaa34f5c8f499190b8cfaa657b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f651a522ca3b5a299f7a1d564198790a3f5098beef0330882d627309aed7221
MD5 bcb22df794e6e58e46740e1548abeb52
BLAKE2b-256 788c4d0295fcdc69a69e3052a7d46367e87e5385f1b488fc5709d0517bb22d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7723063da08e5fb8d0bf6e08ddf7c0c24112ca107e9cbaac5122b0e50a8c410b
MD5 9a638bca4f5cc725e06f7450c1578392
BLAKE2b-256 e4549cc548a820db6088d571d1fcbaf03d50908c0c2c8a510d12164429ef04fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2c57b4e27313aa70ac04c64a1bf8de71d744ee377080cd0bb8f63713e3478a8
MD5 2f0d435a783f223efcec7191dd23eb0f
BLAKE2b-256 6742587a3ab28453625aca4c8bc0ed489b93821ea05443c55cbd1dd688da8ade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b2f332102483863ed080552f6657aa5f0159f5d56a1b0a57e7670f8a7c771cb
MD5 12b9291b51fe1843bf19290a782ac6b6
BLAKE2b-256 f55f7d5f2da7800ce6331f858b80bf18ed7a02d9ba9bffeff6d5ce07b8a21239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed4fb018432c571deadfdea61368ed489c77f3c798fe7c06d0663a9d957959ce
MD5 728b291aa34f77ad272d68da825aa77c
BLAKE2b-256 0496f80441c8c36871558a175bf4f96bf7bab02b060dfe8388573a370c31650d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 738cac97170790cd1fb089ef160d31072aa43831a44d0d7578a6091ca80df8c6
MD5 a2442f962b3032ec0db1fae368c0f715
BLAKE2b-256 d9a9f1d23e99e1c10f878f7eab7eaff26fd6ddc8fdcdf7a840404819ef4251c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c0955929747a96bd4d51973eb6b939b8daa39bc6bea3c38654ad022dbb0586f
MD5 f17915ad0faa758477758ebd4c168475
BLAKE2b-256 301c0fbc705fb344152fca1da88669c454408d08e72abd363c943811c6fc9ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 54b83a6d1195305afa321e93c14725750f302d82a4d6401615d23855782fb7ed
MD5 ef71227ae41b608e39c5766435f22b06
BLAKE2b-256 8d3f0e5f4fd8ab328dbdc6590a6d3a9e0d83d6ef98e8d6479f47a268afde661c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98c3575dc278ca484b82c129b6dca5ef0744bd2e61ac0952e7596b1d0addfa2f
MD5 26b98233201b7f49643afc1b9ff98c90
BLAKE2b-256 0fcd9d069370168d7db837c24aad8198752139b8e0f59a8efa724c3faf361f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 decea7896ef393d8b8bb346511de8b8cdcaa60146ed81e48562eed47c6bf232e
MD5 2116354bab8b03a4cf539d61693458cf
BLAKE2b-256 4693e2198f339f354217fbec46cf663c0899d4a0628a0b855934959221b2dd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1a23696680e982023824e880dd412567acb59fb2fe31c885fb81f7eef8e9f86
MD5 72a7d13fdcefe8d52272409916fa08ed
BLAKE2b-256 8f7db17b8bc2a317134107beaf5f3320374764eef5d6c560d9690e423dc569e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5664c0ba2a51981c2c6e93ecdb0a3f4565b62c41c1560bd4daef471cfdffaeb4
MD5 1a4083c632212ddb77eb9d7c0789f81e
BLAKE2b-256 78a2c96a3c6957906079a033999f5afa41ceac0c3af30979fd3333c87c7130ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 679698ae9e3cad6745593ce915e2522889ced33a6a47053a9784f9e5db2840a7
MD5 3381b93ab2c71a3bc577808000195894
BLAKE2b-256 80485e2c614e8aaab8e1c4d9ed5b2651426f3e48e6d53f19d2471432389a5230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a62d2b4eab1d0aec787a84c154fbb2ee8c5188dc7899f4a6d067de22b6bc2122
MD5 e47a87313a194f2b94ef29219c88b2bd
BLAKE2b-256 9261a163fb6614a6c07e6b87c7e4305f6c5a202121dfc737cf455098f0c2dc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24322f2bd0107ad34f52533f627f73f24e399140872cd8dd690eaf0b4664c789
MD5 b8ab68671b0d9a89ce5664e04309003b
BLAKE2b-256 ee02e20d1a988d2831ce35b25a9ecafb3e8e217b36876bd16dbdf6df88ac17aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d65ffe1352080c7b605de4c6931b1d5f5ab2c84c1e5d537d038bcfa7e8b8afae
MD5 2bc47b22d077fa14fe8b141992d70001
BLAKE2b-256 91ff5b998aef15721ef2d1f2559a3b6ef3e653006a2f3ab8c8d44d8fd646b630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29afdce3114f9baa1f9a5dc350f72f3f144774f75188fa25d0725a7868a62a80
MD5 bf84a76e9753408edae8da9d5c981f16
BLAKE2b-256 681d7d71371fcc506a91eb904d6bd9168b134f733323bbbcafa59bd17d0129a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd80b45ed67b747bcfad937c014dc0372af74893e6f98cc0232a7d585299181d
MD5 8587a0612809481651db14a7e3bf4f9a
BLAKE2b-256 94bb652a705397159a8dc95a56435f77b227a1d7299b7fd6cbad28f882df5807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 94b4f9b9dbbe46748171d7bf3d345351d7bef0eeedd246850b69d135a60c4ff8
MD5 936cb4505fb2553ad0b5ef9889f955b4
BLAKE2b-256 38c870e2c7d27b475667900e747211fe541ddc2d972157c60e2cb89414b2afbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92d28b2881a5bd577307de71f71ee957c4e55db461237aae97a7b1c826802e65
MD5 564f4801282b89f7e1583ca5632cec06
BLAKE2b-256 61620504fbf03c4a57f65a2c9384757d14fe41c01f413aaf44e6159e1798245a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c62298540d6de2de870eae705dffb3591fc4eda48c4f5812faae0802cf82f66
MD5 87ce8fb5256e430e0179b3fe1274871b
BLAKE2b-256 d15a8f009317552f75bbb9ed58517c0d825279471443369d6a72267782b157e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5635b50b4e668c47e642d35db103fef5d5c367581b93aa8aaaad419e195ce33
MD5 e1fa58e2e91f4a5947bb716f97db1fa0
BLAKE2b-256 e29acb995777450f41a7b1eae0cf663b87f15ac6183bfdd82465536e9101776c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 34e1a3dfa32cae0f245ccea00918e339e2e038d674b87a1e61b7d5780bef9d5e
MD5 88ad1b7acaa8b107ea2a8e3faa6e4c6d
BLAKE2b-256 dd395b8202de45a08b529be265a04ef30091a7afa9df124b3533cffa4f267e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 891e4ca5f7ba6329158fb6e5fdcc326f85c8e5a975fde0ba9db8e7c4d6f339b6
MD5 fe0f808fa10b48858230e923d1eea0e0
BLAKE2b-256 3f57dfe8f9385960a9828761d8f4dc3da62a67b68c5c30ec506c3e200c493a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8873e900513d5d4c3452779ee92d134e56403f284149c972409498c47835520b
MD5 212a979899d099e8d27ac1f36a2975a9
BLAKE2b-256 90953868f2f7544780ca30b8c476d2b705b4fdf2ddafa81d44da9c2e3d29ea7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee6fe14f3207450f760f854efb0f01d721ee9b09ea9fd2fa8b05c6638d44bfcd
MD5 3c8eb02dca9db4e864bbc15a8f532714
BLAKE2b-256 a2d8f5e9d1d9a46e1b281fb10ee78d1c4c81fc26c98fcb30e72f7781157ed7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 585095c0f298fbdd01f2b58baccf0b93e127922d96b09b6d0e0fe43feef615e6
MD5 d8ee1a3ac020ae243b871506946ffe58
BLAKE2b-256 051ab1c4deab60cc9c8acb5f5d1d5e701df5c80fabf54129f2f66f9ee48b816e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bc82b2a63c8eb833a7d2521455e26a4f42808fe6f54ff241e326ff4cc7fab4d
MD5 3fbb11fdd440efadb5ee3a3d598fc7ae
BLAKE2b-256 0a5604f971d438b27892e8395ac56323715bd8b0e412d01655ac2269b837cbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 747b37b2f7e498fa74fce0297937dca9a30231a62a0bd49c3e4e7db827af4fe0
MD5 1edd8d99bd53acad852f7a29c40a196c
BLAKE2b-256 7298d2fff91f2d2842338295142cc531dcca22e35e0344d127f6ab2fe26eab25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf13e5dc4e07ceec6d1818ecb6140b8384b83dd19c89602b9b175e22c05f19ad
MD5 3402c0388d9c9c1de84f5844d800a32e
BLAKE2b-256 701409b58d35a25d035edc6228d7227d52d275c5bc78a964e73f835a1ba980cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d3701823929d776f7fdf4055b18c3a8982016a877b3fdc31a60672b1beceb03
MD5 f8a59dd13dde4564faff38916e59950d
BLAKE2b-256 a4c22dc9c5e3c3ac4726b63c243ea7004e665f8faae6f124f2a33445aa47346c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd16214445c97a8ccc72ac4310cc4c3c4015d484a999fa85c57c54e6b614210f
MD5 50d287fd09b9ec4f685593ece093f921
BLAKE2b-256 f1700637b06de8f809367eab49441b7e4718a319044e55c96de89e574c2f8b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f50580d4037b9b2c15d6c9ddc103168295aa00e0011a69309196f3527ec9355
MD5 6a2ca02fe5c877addc88d0b71e8e7f0e
BLAKE2b-256 a43cfbfcafb2f3182b3a7332cb1de9ad60d7b1e178aac737518aa2f27a0d3046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7cd858fc1cb25e4602f0cf0e338c1253ba9e59b5fdbe8a1bbac3a5098f382230
MD5 7f8a93e7ce033bef3aeb488df487e37d
BLAKE2b-256 2431658eafc0534e87c18aabc1e7bdc8ee9aeb38edeb4e8d1c7805b34bb1defc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f11f3a255015d597d4222918ace298bbf8908b4798aa5823e57a7c4c684ef7b5
MD5 665994b3092ec41b3fe814b37551d079
BLAKE2b-256 9124521f3cbb5215ba05d0f96aa57300194ac247f93b63ea5d1c4835a8a53855

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 085684a3396e503951b13574c9664f791fcacf0afbfc4866fcce93fcfbcd8867
MD5 3a0a30b08c302400734b0b2352d15e64
BLAKE2b-256 950a8a741214c3aeff70b4f05227607f8117573875ff03ee57dcfdba2a3ca1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91e55994d728edc13941fb49aac8e235567b91f40ab84269af620f86fc9ad506
MD5 32a10873651a9b38c432ff623fe38141
BLAKE2b-256 0a92616782bf69b1e8175d90fdb8f11e5cb6d2fe50dcdb239c43afb5ffcf8418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 41a3a05a36e880ccd1a6408568bd84f81511b9e4a9a63887ee621d0ba900c9ba
MD5 0884335480996ec3130a7cabc633b1df
BLAKE2b-256 068102eb08a368a768cb2de376ae0dc26174c0b46bac7a55cb50ee3a03022022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 04d3ad51895a06286ad6ba04a4f5a90da980953907fa99e6415748a61914078f
MD5 16a71bdb59602bcec28f73312a31b7a4
BLAKE2b-256 0165f3d4d932ac3e789e6af46b5499b13d9d8b11902116e5c7f41f592094716c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00b4f29a9311fe57b3be75bcf17b052167ab70c76f733a45e6ee09762fc93a8a
MD5 50b5560a78099cb74e49d99f780f7527
BLAKE2b-256 3e913e67edb1b21a029d5d74fe3bb357a557ee178584e99d14299e4cdee35901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd3c7c937610a2fe59e75eb66fd97d4233b22f0e676262d85c2d49d6a64f37bb
MD5 91258a036972fed7e3418bb8577633bf
BLAKE2b-256 35e667230a632358601157fa4893bf891015ec5254d7f2900c6cd3be96b67a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f40f6264158cc40bbb7562f1ce844dd4f7798755d1f5c5c8eb8d7c7718162d57
MD5 f11e25d647457100f4bea877203d71c8
BLAKE2b-256 687e06418304fd1f0bd883ba57ffac7e50ef81e7d0d702b5e692401c0e3ecb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fef75c92b58fe1e789e445497f15ebc55f4436e9b7220b4bd08c355a41866c9f
MD5 31e7d07a42359383fd15024e3eac4e06
BLAKE2b-256 d1df631121249990e243a6c786c26d3d0d43d0e3842e45a65f35ec03d66bbfbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa8dcadda2e2b1495772d14f2badc3c75b36087996a6c774bb0e1065c21ef1af
MD5 425babb8958de31310f5012ee06f4219
BLAKE2b-256 715708f4e69169434198968367048a5e03d3341ddb90ab05faffa6fcbacf3a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7d1de6e208aa1d1caafff7beca85098310b82e6f571735c971195c7ffed6c20
MD5 99f5f9ead0f16d68797c6b6d24a1d37a
BLAKE2b-256 7514d5d90112c3e037913ce36d82b00834a4b4fba5461b4d9ef6e3ed342cba43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 493a1dd41e8a8d76efddb868c1c936e6bdb5364a3d14e300acae941392a37b2c
MD5 de9d4fe969030ffc6ee1d7048c3dccb7
BLAKE2b-256 2e403426e048f65f62d5b22cd23df5b11abb480dfa33cf57074eeecb070666a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5248ca29651166a6c5cd010c9dc790c6958a4fcd7300e863bdd843f385f8ab72
MD5 a7efa62a0c46bb6808e124902c000cf1
BLAKE2b-256 12e4725cd2608a5f4a26d3fac6f48e731047cd42d2b5824682cf33b3fdbb4376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b452686f0ab7ed691bf1c558a9baca1939b18d4a2468431682ae84f1b803eecc
MD5 aa55c8f7ad8e1a223fcff9c31ba640ba
BLAKE2b-256 7d3cca8a6f48b649d4d59f2d38b3397c718b01608902637e8a38915d008a593c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ce6947daee3647eeedb698fe58a12abd352f940dedb92e96b6de3ddccdb473a6
MD5 c34b1584e3f69b7cb096e972d17906dc
BLAKE2b-256 8bf2cd28d3839d29cfb0e629a3d01d746d1e2ae68c0f82906c4dd012fadf7c7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5f37113dfbf29bbb451fdef787dbd913d454c34b1f87865563fbccf02ab8cba
MD5 6bd9e2d1dec3a231726586423749b830
BLAKE2b-256 fdf7e5aafd3ca1618bc904fcf48ac9056d932d6c67e5b271ea5ba2d128f7ba89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1e5c1184c98bbbd2e522056a99b7f54bcc1a7f6e6c64d59756134e2017d2117a
MD5 72236f5fab0491b516e1544eb98ef2ab
BLAKE2b-256 d2d5863a2e9a8e28ce688a90ab6e919696d8b0a8e5b68a534341a24ad8c1b47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3127e91774f573c7a16538c1167e8ea984894c20a35b211b32ae67f570172924
MD5 02bcc2605daaf84d2f7c5baaa5822eeb
BLAKE2b-256 37ff00397b45ebd93bc3f3208d689702b75cc853cae6c88328a318bbaa32056b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dbee075bc2094a299f3bbc379e7ed2e02f0650632092b695156e3936f1441f2c
MD5 9100c5a40eafabd5494aee4a00fa6e8d
BLAKE2b-256 cd9bb5487dec177c5bcdcb9e9bdaef154410b7f96f0916fd7ccff63d0dcae8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88ef51985e8af4641a64ea349a5082584cb4fa5f43296900fa1af3c1f20b5f7a
MD5 385e85e87d54fe488d148ea82fd76bdf
BLAKE2b-256 d02473347d73ef6b09e0501ff1b59f52b5d3386deb04989f5f9964c4aeb8c8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e8c1660093658be58404a97cf0fa7d90a5f99a1d453900365b25cc62932c525
MD5 5a211f60f850b4f236a90ceb1b5bc458
BLAKE2b-256 2a8629a8bf22d9c92c9a8f669cf3cb57e26d0e030b50a399cc3b26eafa273c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1d2db1eeba35c14e47029c0780cac20255cac7863d25ac5a58151b74e649f3a
MD5 3fd70cba5352c4b6ec5bf52d01008564
BLAKE2b-256 b616c9bae0afaec20067a0e6f3eb96c18cf43afb13365e34dce8dbcce00cfa7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c666ca02ae11d14da07a8d5da59a42a0d660312d05e3b271003cc1127a1e36d
MD5 671b00dc60e269296a17e88f88abe893
BLAKE2b-256 d32100925d68979f5ba037eb842d6f81113a5a72deb4656112cad457772a2b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85e8f59d332b2e710b37eea081a5f40e91f69c2b7fcdd1d5fcdfe01fb0878d24
MD5 a1f0d9ee7bf37a81bb1eab7c52e6316a
BLAKE2b-256 a048facd4063e92cf055a7c195d3274bef159ae9798d77c19b78baaa2dbdcbb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dad06c9fb01bd3fed5f552906515184f7541b6770a041fc2c619d9a0e0882c4e
MD5 d0797e13aae0393858b9ed4ac57b618b
BLAKE2b-256 a216e3f1ddcf7a04eb7a341209796a351e9ffbe142d8b32b582ef53d20393afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe1512f810cf804bd606302352ea3f583430e2c356f15d4ec15dd8df5dc44bf2
MD5 297bbf50acd483c25976ea40e85329e3
BLAKE2b-256 291bdda6e34570b6e57784af91222f98c2234ef7a76be2e196f67762f389c30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfd9631def0ef8d2d6a048461d7bef5457d35b37b7901a94f97e9a5e203dceca
MD5 87b3f479e65aeeb0443057e8073c3b00
BLAKE2b-256 e18fe46685d05fb510b735a2c6eb729abbe3a7efd1aabb6b01d0be818dfddeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51ef7ce0de04651dc95e4605a0633cbf28c0995bdfceb499d10f24db847d7dcf
MD5 e60b8d759d064f7c17e721b04f4bdcad
BLAKE2b-256 c566ed99c76accd6c856f9204ffe64ce65cd020fcfbf06161d1e6ea5d753bbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 844bb34be977681ab86c0c6d11c1706a1522cc5d05c0696c5eeb119cf4dd2311
MD5 c5499e753423c0e0473914297b1cb006
BLAKE2b-256 8be81cf2dacf90408bb7110c06bea621c43d3223d45a85d8b72844c5e3dc2892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6cd3baeeb91d7b92f01a3ecb5f1a565cfa34966b692b42e9eff5ee365d013294
MD5 aa3a21360c5a69b2ff7c63294e9204c3
BLAKE2b-256 f266be8fd82a0c2ecece7524f21323f4fe245d85352fcbecb630cd1a309a3cd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a38f11ee00559d56a10ab04b16caebe531d1cceac5a554bd438057a6aeaa639d
MD5 d2415a7f999add700ad9b64f9dfa9982
BLAKE2b-256 6243f64354ffb5a61443a6fede6ff3c0532d19ecdbbfb96ebd4021067db6b261

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cc9f1dfdcc1307cf5e7925c760bc596cd21157a0bc9a2bff3f473fc769c9a89a
MD5 314849143982bc4ff86cf040b60c3c42
BLAKE2b-256 43af9dd8aeb296d9a87015f1493010547a092cf1b7a2e345fc9f3917b0ccb374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ac4d921f8c8064ae4953b60e0967dfef769ba46ead721679e2ba65f9fa92e61
MD5 5349fbbf4bee6760c4c7e87d34aa717b
BLAKE2b-256 35cabff87309ca2d3c96349029213617fd33e399ca534151049f2c1000941d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5d746c41efb5e4e8c1cad1da80811ab773ea463abfed04a56933e6571f25f705
MD5 da340750f89951a17e484cb9953179de
BLAKE2b-256 ac7bc2d67ffda9ba3d74646e6fe3843bced6277d9462ee9f35e66fc3d7257f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d37598fb3699848e338d321ca7fc09eff36213aacabb93001af880b9effb6cb4
MD5 ab8a69601be58553060e2e0c2a524bd1
BLAKE2b-256 2370182486184144b345299ec5201fb0e6fefa83511c6b9daee8e277590cbf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54a05b8cbf0d0f973ce351771a44ce476697205e62a43d9854e0c8d949420bb6
MD5 d54c23e9f67325442fe3f8ad63032b7e
BLAKE2b-256 6e3313ed021d87cce02f96c80ee4b27930ecdb73e471ba662560c44c8aed0e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 335111030e7fb0b6ebf9b9bc36c620d68972c9a74067becabba1edd950a0d876
MD5 5c5143f0ad4bc75bc62092bf01c68e7a
BLAKE2b-256 2670832bad1eada9a09bc3ad989afba09ae7440c6f9bdd669e4f3dac584035a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf0d04008e5d556f35e0602eea8de80a31925211d45ecc6a006a10e07ee15a43
MD5 432cd50a72a43171bbad316376ba6b25
BLAKE2b-256 64182f9590ed7073ed9c049ef2f541b233f4090c4c1d360438613fb72386ba0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2c547ca6d563b20095c08bdb8fdbefbe14430f682f867f2a724534d2896d69a
MD5 c38afeefedf20ab9757c201e4b4bb164
BLAKE2b-256 5d778a496e02459b749cc8a87ff0fdb916193bc3fbf4a42a5d03a36611c879ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07583baf6f1c7b7c480cdda3c0be61221dea8da46a58f501a2f6a9f24603374f
MD5 d5e06957ffdf5f40bc4af8bd03afca70
BLAKE2b-256 c1c0c84a715e57e3d8ea1d4fa75265281a4ab33ecedeb31b7d08a4c1fc41b342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb679eba53a060c2675542dbd035f500b42529c226ab938387ce4968c58a4dd7
MD5 584b6337a889c1d30b89a3286c81dc70
BLAKE2b-256 eaed3949ecc00d60d56eb7a19218b872cb40eab0a8a0a974f2c348f01e4d590c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc058dd6ed7ba3c973271e77f5749b470122c7aea84aceed1b589a74d0a39cd6
MD5 c38315c4cdc45a06ace9c135b4402355
BLAKE2b-256 5c5ec404e61fad08d5a204171abf198ec51e004ea98fc23dc420065c5091eecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbb00cf0ab72e2c5b5885dec699ce8f9504e1995454875887aa21d44578300fd
MD5 1c8689de72f65fb7b692e16be5bc90b8
BLAKE2b-256 8f1b107b54f30855809f682a0ec5bc9c6bffe2414db2235d64d1fdc7fd588d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5563eed6dffcca5393b0caeb20066183d2329d90ad4027b4888b24395a334ac9
MD5 a9df6c8250ee09fdbb888071361e8c2a
BLAKE2b-256 1930f13efafee9288cbc5c3f5b146659a76459d75e4625a318ca4e9a0535e765

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5e4545c30b2ffaf87e4747bc08cf5ce2ef5e1aa66cea97d8940128008279111d
MD5 d462301f3f4878375d0f5db15694f72f
BLAKE2b-256 c13a137aca68fed74cb6a58160005a18cdfbd43ea431f9560d97cc8eb76d383d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.2.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6e10d038f79b5c566f17bf818b58d3d299f3dfa36a1620ddae06a52a86abc643
MD5 884d2282684e7db08e4f975bf546dfcd
BLAKE2b-256 9e49815c9639b788d47f5a2eb3ed362fd88524dab0ace82cfcc2db98ae431b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8816773b1ef5aa1f1bbe203b04f4a5e81d277dfd2d3630645955d22036543c2a
MD5 ddd643bd099db03e73d1d399a80320cd
BLAKE2b-256 38f2618e8d4b3696a0ae08cfdaf4316084fad108603b71975c179763033d72eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bf75648f1a5615676385b558bf12d24ce15c0163ce525916a0c3b9800a0637ba
MD5 80950b95fe877eaf7bc58144b531efaa
BLAKE2b-256 b1053abebba7ce430ea65026bad7f1645bdd5e8ed59ee8df2e836b7399a8b03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9d27c8a9d9a5e8030359efcb2e5bc2cd386eaee8960330dde808f93fcc1bdf12
MD5 2e5a0cd876c52934349d93100edba079
BLAKE2b-256 8caad4cc3e228be5af88ae3947d07a0914383e6ea2a8bbd53b253c86a663ed6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42e753a3db83cd46e9b95f02145a825e0334591273e28bb894d83f74ab5d3968
MD5 1010adc4352f731c8cafe4d47de69b10
BLAKE2b-256 1115006544a662f729c0052e7ad34166402a0ea47ed179c3ca6f9fa89558e433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58eca4430959e2484638bd8c57552082cb81f1bcd0f692ccf4a6f9f38544472a
MD5 da46301f33930524267a92659c58e681
BLAKE2b-256 60645fe27945386683c93a96e06e3088f40cdf12cfd22c3d0c9b7e55d3c178f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e095857cefad6750ef1b3fd4ccb3418324a0d7ce4f925f97117cbc29ab9f7d7
MD5 cf75046994c2399e1ff28308e456f077
BLAKE2b-256 37a8da350ee3d3c355f08d554e6ffccab45354e6e38f9421ca8e2ced63707ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d54e1f206519aee94d5905021de62f35167076e76d06d2df3d03463a825bcb80
MD5 88c0a471c28638f935a03a6afc0e2c91
BLAKE2b-256 e247ada335098a0f6ce0e5092690ed2d685bb024d4bb8c077be20ca9e6f7cc09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 215588882cba349637a4fe5f1da1ef84d9b4e95b54eb59338e3f7829de1ac121
MD5 97898920b929ed1bf6be71b5785f40e1
BLAKE2b-256 a1b420943009d8a7d947cdce91afdf1f2bddc0f6d2e77f5ad783442f0618c748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05a37c2357f1ca73d52f89dd26b07a051b3bde8de5d65e7a94f7680b2f7382ec
MD5 3b9c8a947cdc6267096c25fa05a9922b
BLAKE2b-256 b17e8a45869338fd5f8be83ef42049da940fc8598476fbaf92469ba89d5699df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8397bf0951f97a69ece8f40407ca4220b8c2177334d238f0ff27ec7afe41e026
MD5 eda2a6e57bf3b1f987fc746d125fe98e
BLAKE2b-256 8a99052fa6e5bf7df3efc206e0733f5748351fc5c8ba1314aca8f8bd7b64b4d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17c53e90a77362ab61d395c418c86a15b12381486e7fee55119d786db85abb3a
MD5 e45a9713218f865f5335e74d2cf6ec52
BLAKE2b-256 b1b63bbfe3548249d6ccaea4a2c9b5983ef1501c2ece6e8e721515b8f8ec2405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.2.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22def98dd383b3bc33ae294ede7bc341938ecb87e4a6d43696aee7798b2d7c13
MD5 6695fd35033bed9cea779fd125b151eb
BLAKE2b-256 eb59589ddf425fc3fb4827a8bf7f3eaf0a0e789045478878d6155c375854288f

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