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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.3.1-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.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.3.1-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.3.1.tar.gz.

File metadata

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

File hashes

Hashes for pybit7z-0.3.1.tar.gz
Algorithm Hash digest
SHA256 7733f02ebd1363ab804f1c695d0071f782d66b9f1e54d7008a95d2591f8e610f
MD5 565b40d9de56c17e7fc8f15f84f66edf
BLAKE2b-256 90c086807a5db739edf01b1490f9c4aa3a61c921e8bf4f0b9e624435f1abbbe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aa12aede1c931cac5f63ac62a2f574b959a2bf288d706d465690eed308c6f28c
MD5 b81dc1c2ad1ea09add0735eeef063019
BLAKE2b-256 fcf06a6419a311b22452990deaa84c5c18ed864fa5971bff8ea487b1dc10e802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5af08007fcaafaf0e358cb56330dae7b6504f8ce4cf0b6a591d5c01503263f4c
MD5 9317b109b30f6eaf8dc0b3b10affc4ab
BLAKE2b-256 034dfaf52d3a3b34ef5eda0cf8a52f7e8204aa8ec3d6845afb2429b2c631a81e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10e124fc373c6ed69602551766547738f96474e7c8ce4eb552c06538c2dc9c7a
MD5 e7f1307cd31b94b525e28eeffb918b8a
BLAKE2b-256 7009ece34e1d196ee18860a93d48f70e564acd5593750eb7349b22738f22388b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5cbda8c3c2e53248c2e068070e3810bcb99c77eab97762ced2e1e96f4426276
MD5 c88d98d8cc2d127ff513b8aace3359ca
BLAKE2b-256 582e1a84e21399652a6ea1a9170b0a273560f3b8dec8aa5e06eb1638abfd0eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a914a54d141a3bc61c00759b83da9f1c7e03229983b249190e408110872a8324
MD5 78f1f5b4770cd70838220d687e7fa820
BLAKE2b-256 6a8381748a7a79610d5ffce143cda8703aaddb7defeb99746b27ab5ea8abf51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 97b2233f803a119c314fd5f89bcb4edf194e28a618b7ecc4fa9303217149c1fe
MD5 e62b32c99456d2db7eeeed18582e19d4
BLAKE2b-256 09bae9e3a6ba4c1e2b7d270ee009fca7a7b9f0d75db37ccf2b58280b36e562af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5c696910da0c16089db2c43691a79f8a5ad4feca06aaff6def5d790b4b357afd
MD5 116be437f0f09ee27f6d80139d8ce899
BLAKE2b-256 328368280e61082be04747bb65d447b6bbb51a74de4e2fc8f6f84c920f7d1c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 891206a4efdc4a371c23b82e2ed04dde7ff7f7040bc30e4923786c779b1f8b79
MD5 e3a161b8c467076e23b6480fbace4681
BLAKE2b-256 22586e15b654f31d54d8d9fc00793d6c4b086ae6853bbbb22484f1a3785c95f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86608d431a0dcf6a3ee1e37f5f62879e102238d2bbbedc34c849b01b017ce4e5
MD5 42982105e9cdd0e23b67a208fcbbffc1
BLAKE2b-256 7990c046054b9126328667ec4a2c6ca3b13cfdf8f891fba1c39bc9c092769b27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba26411c79e3dd441397604868468958bd241c198a6ae03891ba72ece75385ef
MD5 0bd7d8b5d71e3b5bfe2eb56d8e6d63b0
BLAKE2b-256 f0ee4232aee5ab75edc4c7f24b57d46c2db606a4184b4d263e0a7ce71a66ef5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9403acb3203922e5f7e9c4c657eb29f227f368e0fa5748ffe3218853a35aa622
MD5 464d8bbc3bd5f14353fcefd523d94742
BLAKE2b-256 4913cf4acb17afcf49d014d03c8dc1743a140a0dde377f11ab93aae064be991e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3579a9f13ca25f49b535d2ea571e03d938492c5dcd8d55473736cac5e0233c53
MD5 c645c62d323891f98a37a4ccb70c93de
BLAKE2b-256 284ad229ccda73a5b41ba3c87d5e205c484bb46d7cf93f2f445b9db1b545a9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 effba692134f719a5343cca493c3a88ed28198fdc9211ff21e48de830fc5acd0
MD5 60ed28c6d4d1cd7d55d4b337dd6c1813
BLAKE2b-256 f07e36f4f3aaf61f3b432502b30584d46483147b982dfdf90b805f2e2606bff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cd44397db0f71281e5f624856dcdd0ee65e034256440415f7fb4719f5b1f4b8
MD5 0473e6603a9fd79d47941eab513de7a0
BLAKE2b-256 fa92891a80d0be02ac91fdac861f84e2be4f46dcb805cbde53d0cb0a519f7149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c84136faddfb1196417c59c311a37d5ec7d4d3f89841fe1f15acd79847a30c4c
MD5 0fda3dfe2d9b430f6700f272207d53d0
BLAKE2b-256 9016d36fca91651a3711e474df67da7ef795f75767a77adbcc6786a3cc3156b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e3fada5a5606300077d474193b8ceb0e1d9758d69f89db6aed82bc1d7d32b8d
MD5 c8ede0da3fb71bc24b4148d279863a29
BLAKE2b-256 af29375203a6289cef0e3f3e8a8f36717a353965c60bb1ffc49e3a546ee51a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64ab2d65e58099d6a9ae5bd7e7aa0c33f767c96a62f8e2d4c6fa1e624304e774
MD5 8f454a5a3ef93b0f3ce786cc7c592496
BLAKE2b-256 bd006213cd351a8472d44e8b6381fec52805808db91cc62b8a2b98e4bf5862c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee4702ac5e079a491097b4cecf21d6631ddedbcd897854f6abcc0405c73bc1ad
MD5 3522d044015274e7d9b920d89c04d902
BLAKE2b-256 7ccf6c20524f2d2fcaa36d1eda888cca975aaa4314cb60066945bca15a778515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d317e63fd1babcba3e636e29f7e3838189f257046fd60ab354be86b7298fe131
MD5 79d7fa7102a5f0f3945cbf65142af898
BLAKE2b-256 b282ccfbe6f59ea400ea22e54bf96bce7f6ed382ef1f9245a1f6d582e50bea12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0bdd14cdff98f82577f3892979210dc10ce28f328be7e196684c8e68c074df7f
MD5 74720d2ab369ca3216ef703b0af3b959
BLAKE2b-256 ad65f70eaa35661706a8ce59142cf49ed6f2dd01f4428a5c8ccdae94d6667763

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0653d8c8069d0df9e9211f2fb56f7bf3d13bec1557e2f02ad1ce94c2af902f96
MD5 6a83daeeac44fb2a3878a20355e1d695
BLAKE2b-256 a5d8af311c2027421d23c5f7a0b4859b190d80ac8737ee261f3317943f5a426b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ef723bcce2388e28d25044192ee565f755c52ed4ad0755fa1eedace8da11f84
MD5 21d1ac7ad9867f6ad38f3f89be1ab341
BLAKE2b-256 b3dbb250ae5f694bcc5fb27232b3783e3849796152936884f8dfa871e553e93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8dd2311e0f2f606a1a40030633f446170afacf4ec7678469802e86fcf6a055c3
MD5 f0b85e8ec5d67243a6fd309ec7b76617
BLAKE2b-256 813fd5ca25eb780ee2541f0ba6b7787aeac9b19bab6a4fac2db876814cb4da01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc320f2d9c2bdde7b15ef8febe5e75547ae80f5d7cad17203d7341d9dee84e9e
MD5 a336a8b6cf928a2dbcede31eaf1433de
BLAKE2b-256 6f4c4b5c445c51d368d9815429a0b670858742e0acab94a574a8be2ffc87dc0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da54c420e6e02ca8dd388585d6b05ac93dcccd55387b86acbedba5c0f5d9bef9
MD5 28b8b07605f87cf2f37db2a40b57d528
BLAKE2b-256 61514bcb96860c91ebe2c63108f89723a00305c3cb4d70006947ae905454f2fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b64ef111f0013511179dcbabe38072af8102b93d0cab967d27419bc5c22b5f2
MD5 3ab305dd917af1c7cd9ffab809493273
BLAKE2b-256 859ec002b31f6aaad1456431a0b9a3c1482263d284af23de80e52a264699aea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 910fd1d2b67dcb350fad3d5ea0bab21a320d5ff07b6a075008010c45bd1741a8
MD5 6f9ba4c75add31b1fac16eea7d1168d9
BLAKE2b-256 551d1ba27f4e138e94dd616483c5416aa28fb3e518bfb93d64f2930455b165de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 974ef9f26b0ce764c85db3ab4a1e1cc4240c152c7155bf1be15dc127ef9d37ae
MD5 fb0670faa6355da35d5c0e0ab9de5d6f
BLAKE2b-256 7b4d0aaf6a1c1afa48dc2dca022391ddb8346b1005eed4938035c514378f3bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ffaed630f23fcfbdda59940516c20ab07ab9e73dba32ed705ec66f9a24fe103
MD5 8f7480a699af406df85cfda8aa2eb622
BLAKE2b-256 551d6ed20ac5a5f61012a78487de9d8791cee4b23dfbf611231eef78df41680f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ecd83e84a285eb1f205083dfe9b7d76c8ac4407ce15243fa5a505377e4f2cb5
MD5 af95a5e39fdbefa908bbfaab5edcd61e
BLAKE2b-256 4ae29baac6c241080cd2bc28a981d8b7b5400ac79cb50743da72a6eebe6f4acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec0a42606387d310bd0a4c7eeaf1b33d5dea2340b84f0a38971cabc58e9500cc
MD5 9d2f64df140682ae3f37323e81d0a8ac
BLAKE2b-256 5fad9f6eefa3a4f286c1073bd39b3a9de69a3cb1f9253c41b7b337392b4d244c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd7e3ae71873baf32b6ec1d1d63c52d5434627b311fbe4c0e9b63f3139aebf39
MD5 ee5c145bcf74853fa32306c437beb5b7
BLAKE2b-256 497fc99fabf9f87a759fe9d36b2c6ba6ac4c0c548c53958ff4270af554017c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f41cc55d32a1f6973a662ff132a8b582f624e45df34c59f520bfc39f54cee713
MD5 af767ea67b9e6c42e4de4ac4451e4a94
BLAKE2b-256 a8f20a3b174b190741feb5005dad6a00b3ffc72df9dfbfca29afc5436ec00795

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 86ec12fe5ca33e9f097fdf3b445ed8eff94e5c942821fc5d274f3a34698d95ed
MD5 ad80cf39dd3cc92684cc80d0b3490118
BLAKE2b-256 5d30b08f684217c900b962d1e2e9a2364d7172ef94974eee91082c15a439de2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f939a8ceb616f821bd5476aabe4388f896131173956fe6b27e054aeb049287f
MD5 566651d5d933d64999e0c3af539e866e
BLAKE2b-256 7f308898dfee51e9d645fdca5dd8d7df9e2e4d861dcac3c2b8ddb5246bc9654f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 371763726549aef7d0f1e7d460655b3907bacae38c08bace42124123a97ee064
MD5 9fc56e86784ef069d15d49922719018b
BLAKE2b-256 dc34c7da0a74aa60d7abd7ca833ecbb15dd0d74f329cba89f5e0110d4b6932b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 756734a21cca104db67119872b1b2ddce9f217442e90867fc18d70b1789cc25f
MD5 da3aba40c2ca3d4d99aec027e4c610b9
BLAKE2b-256 2711a38b22c6c8f257f5791b8d44416f8dd49d4d129ec02c269a19a0ac60d67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ab89ca55f84628619ba63c1e3192cc2338424f8f34389ccfd0306cfba86e8c59
MD5 b5c9287ef84fb83870bb30d5f8d1156e
BLAKE2b-256 604e6fe04dd7c32e9d08a7fe4d67effcc86f2d61c17772821edb019718336d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1a29f7bfd255bebfc8997ccffa9eaba672aac8fd64cf7797cc61afa6007cae69
MD5 179c2ac1ee303999a9eb8ac09bb7960b
BLAKE2b-256 e4fd02afba271db31f4ec9acdc9e878426f4d9749e5fa9e44a148ae29129f054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b62a84559b5a20f3df18fccab5139f9440b4a147f6c58cd8b14bbe0445aea12
MD5 af7d781c8ea537f5bbae9c357d8ff27e
BLAKE2b-256 127df0456aec19e3d5dccf34fab1665f54ab644c1a21eeabebe704c7e192beb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee56f32ce46f8fce94dae035e07cf58fb6ffbe322cd08c62c361a3e8296fbf29
MD5 fd6c9f0a3bfa6faf535b447013543aa2
BLAKE2b-256 52eb4e1c3146dc73656969423c86b54094bdc8cd5dea38614cf6ad8bd7892af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa5df09e4137feff0b7e02043ce7f5f75c33b069a596ed5c74599bd0e027b8cc
MD5 338d7bf8061bb17c91d49a12f762ce4c
BLAKE2b-256 735b28ae1aa7379275939eeafe7c07feb64ebba9cd489ec6ae813deff50cd137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8d7ec3b65ee887abbd7216c6db8e78767c2b528bf33fc2c0b17ed4b1103cd2b
MD5 5102c8187f0e09ccc71706cae3a481a0
BLAKE2b-256 23773e09683c77e2d407f44d90db29ceab08a7359d49fc74b12bcacf20cce11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f6a0f9b69e1124a418597a96adaa2e2f10a94cf6701c74cd75c68b2bf70cb03
MD5 8c00008ec9159f46ed741b663ec4cc01
BLAKE2b-256 c8ab6174added1399ddce0bc6d96c59cf6d20420329173f46c9e0efc106f2734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 275c8693d5d4bbafc8c100cda65846ce0ab174041d8d6d3fb780b8e06d381d0e
MD5 8e14ca48b90a52832ac4ff74171c9813
BLAKE2b-256 75401bc0b55406978b218047df4721fc1481a7e85d7fd7dcaa5c50cc3825fb32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8866a92190ff9d7b32464dd4172235a9cc31daccb0ff09a407849e351bb78656
MD5 1761a687bc0eecccd6c841b6bd474de3
BLAKE2b-256 069c0b5798185429d7ff788b03bef11b74f6d74a32c339f32eb3b57504cee2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 152a8daaad1dffd5b11878cbbff9fbdabcc16eba37b67adbf180a157cef1adf7
MD5 721caf6d894b34fd9cdccf40bc46bfd1
BLAKE2b-256 c0df9b64c67fdd8cb3783ecaead0052b26c99a3801b2d526a3e298693ef6cfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7460feddd45bcc60718c782919b851c5aa34282201bf19c25c9a78c1d4ea1bd9
MD5 a1d3b56225a2a355558896f6dbc1cf9d
BLAKE2b-256 040c5d50f35815d0c759d449b2808eb51dad4be78386fe8672844ce5c783204f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c6f2d8deda31bf1263d422f658be9f60e7f3a5c23574f8b749d86202f1880fc6
MD5 cc53bf626e1b0c2f4163675ca291a52e
BLAKE2b-256 a9f6279f2f8e5dcd47b35ec51dd647a777a09a74e1f0605967341b52bb1b7d3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3f1a52a4a5051e3f35374c794eb3ae176ce57ecd0f2e89e733a2f8100c92e81
MD5 7e1846f8100bc85a332d803b9231fda2
BLAKE2b-256 bfc1dda64e04017cce8e356905f7a53fa96a18f32ee740c82c5f78e5de168785

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bd896633a1b7d40775b0f164b71dc672655cbaf007ec8cca9276b3f27f45c1a0
MD5 ed731691678255f51f87f2cf71646aa5
BLAKE2b-256 e8686ecac65586bf31ba6d2cd9e541119a808dfb8f4cdb7edf85741af7dd1d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb33241958d58b4c6c9bb4cf6f3f912f2aff4425a0e8c7455b13e4634bb690dc
MD5 ce78ebf483f9959370cc838167634957
BLAKE2b-256 63e27434d54d38e719556e84ac08b1027ed98b6dfb89c270c1c1e0237ac077a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 50755b6160fff7dcbaff03fdcc64180cf2402607b2d52ede96aea0957eb1a966
MD5 3e48f3e0bd7f578719188170fc4d6cc7
BLAKE2b-256 0ff8489550d4d1b6559fc251001085d00697b4af69e449a3be896f40a5307fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a98683b464de8f64916792c39a6b2f253a6f42cd9ea5828c8dcae0f5fbc51d10
MD5 141ed089a214e486bff4244192640abf
BLAKE2b-256 7f608996f5e2b57b0342ff8e1f6cec25d50c096729930b28e67d30e5a3e8a5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c5595526a67b2a2a3eac6d348816c4b45aa404e302710cff34dd0c417855032
MD5 183a268c96696695050cf05df38d519d
BLAKE2b-256 5020661517ee89a385a306434c621370e7f91116525e5aae374284dedfae7435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c9748aafa3fcd150afbf8f0745ce0222bb224509e03939b57b02647013c9672
MD5 df27b74b854c3ac354eeba2a944f0547
BLAKE2b-256 0e06a728f239d9c51d8440a7784623e59b24b389625e6eae4a4d57957d01f796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5afa351a52ee7f7510ef39e64e3b96322fd55f06481f813344e984da0ca533c
MD5 4c57b48e1d175ef3f7fefefe89ee5fe9
BLAKE2b-256 dd679cd753587e59f87acef686f493d82a229df64a906975ebbd180d91e35f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01b8f270a9aca19f6c2b4cb9dddc55eceeb5e97ea3fc0511d9b7ef9657086da4
MD5 76fefec3f1cc24c96298c0a46136afec
BLAKE2b-256 2a652b249651eca052207a961b6874e7f3f2f5aac2f4df4dbc71d3c9a88df584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ede891408ec0989f8660502be3bb9c5fce293b7dbf1d23ee1bcd5c7104046198
MD5 3272f85f879e16d99d95e1291481d419
BLAKE2b-256 0f7f8853b8b0691aa29d95ff931df84c1264095d2b0cbdf62ddeda90035f3363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed2eca06d6de2a87e00d9752c0a41c06e8aee235f3a0466931b766930bdaebc6
MD5 6001bbebbe0f27d704df84fad345118b
BLAKE2b-256 871b0fa8d524b31757197fe93e3eaabca3ca976fc3b773e30cb2bc03e5e2dc39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d99a9c6d7e0bae7e5fab7cd2954b851539a379e43e406ebd8626a4ee0f619027
MD5 35aa42d02ce517862e4992f7629dd5de
BLAKE2b-256 7a032117c7fd4eb70a313eb9152cda7299cafdae632ee03810d350598d5803c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6be902c0df6d2b10709fe54f5ba8bcf68dc5e1a28fdd7040e9069b46f9d8ed72
MD5 ebcbdb9e24ead992d6a9692f297bef79
BLAKE2b-256 79c11db6a0b47eb2203be2f0478b9a1897f059c7724005a7cb23c52866084105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d3d6efb1b0d4ddfceb84a337fd274c911d3a370d1e6f29c624be6f22ce0aa88
MD5 5a6a585faf7510bd05d6e4b581765801
BLAKE2b-256 6e306ce67fa79947bc098cf10e38f9218dc411fbff1846d2f72e8e4dbf94c3e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ded74c51a6e115c4e1b2cc5930ab272bab9011935c064d524186b8ab2a1e56de
MD5 d6d22849f89663df0f8070bbd812b89a
BLAKE2b-256 247bbffb61ac0c0d474b52e6e40c1c6fdc1c0803ec02ad98a16a6387cd53a270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47e248f1c11b1a5e1f341be948eec9e65b5d2fb90da3c20c8b664fa06e2fa47d
MD5 54c5aa107d6edba9d7cfa59088728fee
BLAKE2b-256 c986805307e5360697bb2fd3e7d9e37e3dcc89feac32729ab4120b1b3a9e7afd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 21777b7d3ffeaeb566a9fcc317e62209f73ad006799ce4a366c7c11f3fc05fc1
MD5 383f300fc3ada1d4f52502063df23597
BLAKE2b-256 794bac48f53c6760c8557920f0c6a53b7235990956a0f33b2521cfa98262fec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d4f20931ad3cf941fec1da97309ee69355bbd6231a0139053e8d0c5fd333e62
MD5 b875874bd69e7b998630d5320ac984b9
BLAKE2b-256 4ad1e91bfd3d99ccfafe6b1beac1d363d5c2bb36c5c92f9c3429dbea7a97984f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c72ff44773691f5f4cc58ce26fa0a8da5e23b90029007789b9550c160190ca7
MD5 5c6e35900765edb0c4ef0a81bcf5c8e6
BLAKE2b-256 8fdde481a01e42bcf6e9e121f91c50ee9beee0f0896e056a832f5174235e2e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 08bc88ead27f0103a40fb5cebcbef1c6b4204de488911326062aa5bb0914e046
MD5 2ab9168e4e852fe5a26fe503ccbed8bf
BLAKE2b-256 559418a87214543bf85e2121e23fca9d7dd12eaf7de6f07fdab62f4e7251efcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9947c0a6acf959a83f53cf2939334a1ed5ba77006daa5a36a92ef3eb347d595
MD5 e744e75bac24eb7d6cc290337be5ff4a
BLAKE2b-256 9c041c4892bb9e673ddf6eefe1cd1e3d0c11c39391294e744c5f35e63006f6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f93f1f42a86eaf16ae77c5b0d43bcdb785d7e0e19b1ac83236ebc67805bcb998
MD5 b53900d0e032c08ed02c634e66d6a7b4
BLAKE2b-256 5e4bf2d7934336c73ad54d7bc1c2edeeb4920017f717b864654468a567e7a3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a203fec4afafde7fa1804db110331c0fb8732a0230e7106624ad420ea901c6d
MD5 f67ed407a3520fd58995916c76c37dc5
BLAKE2b-256 36162d43d96be4314318d22332424259400754e93c1892ad97475aa9fc96b014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9d60da51eb7a60851ee4367ee5f5c80d7cf648576f236c8023f115d5c5b80f3
MD5 2cd4a57239bc527906cdcc716e4dbbd8
BLAKE2b-256 7580df02e6d63141dbc8f3e89d7176a1bd5dfcb06c6988ad1d4dffa6153bd957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7897139b602f5b97f0a17b0489979553450509858d6a36c4c9b1c98019f1c1d8
MD5 2890dc21dd1d4c3520c44e11fc7b2d5d
BLAKE2b-256 289d3071b23e06ec548a25179dfdfa5013a6e1bb4f20402999dcfbe06068c817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 091955752532cad876300a8c90b9746f283b3dd6736cc33007221bd32da9c587
MD5 a023edb1a9cbc75df5348df85184fdd4
BLAKE2b-256 24357693fa5bc66702fe9e90acdcdd3161408e226961d85275f3e427abd37078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8a49fa6022f09bbf2f5204a6c6ac232a06fe4c7a6c8474d3fd95df0136d6be5
MD5 22e22e54875a3b01619da980beefdc95
BLAKE2b-256 824259b2eead4074b12601c98281c7e48b08a9239b68938edbb4dd8383c5284c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b62bffe6baa5e6f3be61c62183687d1e3fdba53fa2ccc5f03c13a4ad5b53575
MD5 93da13a5548f061c435ce3f0ceb9c159
BLAKE2b-256 344517e8ef65f22fd26cf249c1f970c0fd27733af3164cc8615df336bc8e1ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dbd855d6d2bb45040c9b28b783d0acf95baee10380e7850a64d4d234786d8ee6
MD5 60c60b19a1e034971204e48ca92aa73e
BLAKE2b-256 5f6378fcf88aa583900dbaa800fc6978c61eef04e582363d425a6e55954aef94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4253acbd6c11ae2874e365a93bc88c66317c9c6c3df26dc18a46749b52713eda
MD5 d2a5da8c772bb99150f03d6564b9e142
BLAKE2b-256 54b2b7f9ba86db0b3a48079266f842c05593725aa0370dd0d9f5020849318466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 37b92b8af8b2ae74253bc8412ff41543f8a77fe83e271bb0ff1bbf393bfdb1c1
MD5 27d195d1f2abf9941a7e516bd35a40bf
BLAKE2b-256 8902f25702f3044025e95795854ca3dd48009cc38e0e8445c2abfee728740cce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 66d3b0a7374c8d4f71b1bf646df8ff50872b0d62ad60d4a1e4da01e63414534b
MD5 b0e450796e68046a9ca4dd7dc30e930b
BLAKE2b-256 f53de81397031ed4578b5c42cac01893d835d9d95373060393126a4c4173f89d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4db7aaec74bf86d713a3d2dcbad5fe2fd4eae21338bbb0e74e6748766cfdf0e
MD5 8b3873d192416c376b21c04220be76bd
BLAKE2b-256 1cfe62166d4836f82ae646de990860b98e4bdca84393eec4d964fb0422b49059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 17787b6b0b5e84bea306b0a7433afe30edc03e4a218fb7bdc9f753704e6be0e8
MD5 a0d8645859eaa6a43240f792889e91a6
BLAKE2b-256 4f4f012bafe05afe80cd94abd976cfff07a0311a556a6496f1b8f7580fda42aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0a4f171d663f952a1a510dba3daba182ee9b8a97968b1e9c92c1a909fee53928
MD5 7ac3ac683345ab0f12cb7f16283f1431
BLAKE2b-256 99597c8a9883611d5734a7f2d4157f4cc9dbde6e1f68583dcfbe53d2ca4075a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3098cc76b418b8b2a4d9ffd5bed1387a026cf85dcecad0452b9ee5d884b6ce15
MD5 ca060e4f51c52bce87d5f45b9c86860d
BLAKE2b-256 eb8d6d5495fb565f166995d398b6682e2df52a5fdc23b98d546483dc165ca898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9123fce59397ceda7025ec453ac8c84429fa8c72203e69bd4ad1e250e7f5ddc7
MD5 664bf0819b5519978be49a4568731001
BLAKE2b-256 c950e2a43052c4b27185e779301533e42212472b5c0550ec8fa65c3b49a2edf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 904826efc7b2a1de4f9173580f26edb7a20c31856c3e2c6fa0e94885463ce763
MD5 870874e855aacb19749e17603463c0af
BLAKE2b-256 a139c56e2b2c7aae7cddf0b7f840ef13162181274266dfd3bfe2cfe7969d2a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 767a9ddba4819d5f7e9c48d33d76606b4c75f7480ed62d1a306cce625fc95aa5
MD5 a73be174c8b489e52850fb3cdfabeb3d
BLAKE2b-256 ebf320ed344b165e681360c2a19ed31c2e4c455cf86b0b2081c73d3db6028ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0770bf559dd0b6b8f10c1a0bfb26e14f2214c8b3e38a447742658e249a1ed1d
MD5 68c8c890e26ba537fe9d38c9f2c8ea6b
BLAKE2b-256 8b2f7e4fa0a22a6cd23390cebdfdf98a9333f629002dfeceb738d487938b5423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13b3e4420fe94a6d3658a6688ebf55c62d8cb2bf0c7258737cae854188a7f3a7
MD5 2ec1e14d4f5d5422116a9b818174783e
BLAKE2b-256 381317c8a15970bcc95787eee6eb710176f0b89e27708edeab885adc7b0de636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 029de0242a9e7e5ae7699139edda5ec6fc49c96066111605a75dc78d21e07f6b
MD5 31f46288f9b128540c7b6c7943e016cd
BLAKE2b-256 f4a774853fa1a56eaa430af921dd3a12ec2dc4700457fa5b0f26f087f933fc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a1709006d86813e5cf2795facdda73159c955a4a9dac1a6d35a77b9f2a1e421
MD5 206033cb23890901951bffc910c45f09
BLAKE2b-256 cddce648047e313442c84e782a43c62a7dde75f04c16b9c94d5254ca505a7685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 304413a083cf4fdff700a7ee402ed0af5ff5e5e5c4bcdc09ce5c3ecbbdca6062
MD5 57a39fac59daf8e48025515974699e9a
BLAKE2b-256 194cfbbb262820acc696b302801ddf701930034e191427e09050a735240d2d0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f8dd1d6ab395635536908055b8d0eb160df04d94e96fa3d9e361b475f3f14f2a
MD5 b7e7e4b988b186fe98d7821526675d0e
BLAKE2b-256 2385cb10474415da01fc2e33f0d2611e41339b639210652bb2de114783775738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.1-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.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2ae98e7943915c962a03c16553d98bb731c8e78d1fe41ead6aeacfaefb691b0a
MD5 d02431808536d6f8d5e7ab597eef1af5
BLAKE2b-256 572c29fa05cbec851cac42323a4af5e774a9c2399c401a2deb65339f65a3e776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37bc6dc28b31521d7c0eec048197239f9c518f330e3a2e5951acec3611d345d5
MD5 2b625d282fdeab51a241854dd4077b05
BLAKE2b-256 00f1b328d98614e46ed65a02bd1f63f18dbabc8e6d5e975ec0e60acd5a414bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 07de9b61186c9258873adf6dff643a8d5fa308bbd42751aa2ffb299d441db552
MD5 fb87e63e018e0c666e055867a95c7432
BLAKE2b-256 af02cef55a3b4f8993762eff10225efcebb9d765c545f103ca75e2a7d9c70601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c73e4e03bcdaa6ea9d50f49c1a6a57e1080fe3c1d9627b381e54126ef28f601b
MD5 3b8c207ac6a218fb3c00d4c1bb68372e
BLAKE2b-256 4d0c30c9df84af102dceb4236daf6e03b7b3275e9820268841c8f4bada1c8686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a85a38c80340c3838d7822f1dff10525cc7bee1d7ee390866d3a68f0778cc90
MD5 6e342a858070bef36e21ad25c21f9959
BLAKE2b-256 9ecbdd2b0ab0aa02f12d0a5a8573c2203fc9f4264c8085ba1d893af22b6a7ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba164772556200b9641138f87884ae70af373820afb32582150d6a2471b448d4
MD5 d91d1910e8f1aebff096b9a2c6e0f54d
BLAKE2b-256 58c82c939e13645acee3aa28674dbd3d6834c9bae421b13781cf6edd0d50d633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e883400ac97040619b57e3702831fb74c608bb96aa498c8ed9fc8da7f61e9755
MD5 a4de9f3ee7de65e9a244471bea7da4e3
BLAKE2b-256 6bd52b80411fa2fe3713066eeef6390a3c7011adbb08537b066cb774a99b8bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 545baad71edce39ef90a91605b1765cd253efba970b85ce93e43af2f26c7d9ae
MD5 016fdc74d3e2e4c4b5c063b474a696e6
BLAKE2b-256 147cc239c990e5a98cda4f6fa227428a0f0c9f3ee45cf61d8d4d5a251167d7bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a93364b4c4319949dfe784be9308b055fde403bb78f69e8f1b73019958b5e1c
MD5 594f8e3ba1ccac5c14c4374a8d34bbdc
BLAKE2b-256 3b364c8cad93b30ffbd91bce1c5e6d945c687158d264a9502f119f7923fa3e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69d9c645f4c461bc297c5037855887e6e6bf59abf10c97016eb30a1745a8426d
MD5 5d9f5af3b7bd9b304f95e52563204096
BLAKE2b-256 21525effac3bd3c91be3508694500d67e8965a570e693a35706fc8a6b98a1fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2eef1b5cb303b3bed13022ecb637e5d87137430d21e19204a0f5bd4c0109195
MD5 b141b6aa2e56f1abab914cd51f20b147
BLAKE2b-256 85b34808f1d5eb1d70bad824559989198ac4640f3a951df06d9b9a8954990e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 750256f49a04eb0615a3e2ed5f36e798febbe3a8e27d382112420b9ee5324484
MD5 664c358a49ef4b9aba80371aa1e16178
BLAKE2b-256 dc0c65e10e612412a6b5a9a386b14745879c2b2d519145990a994ccbbedd719c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b13579f926dfab6b8481a13d09efb2da891cafde640ef9f20d74e04f48c014b0
MD5 b76a2373b7cd200f848b8b7659762966
BLAKE2b-256 cbc3c2e6bd615659f7718b06191f8e670f2258bae292a46997f465a617e9760e

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