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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: pybit7z-0.3.0.tar.gz
  • Upload date:
  • Size: 77.6 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.0.tar.gz
Algorithm Hash digest
SHA256 589328918ba3f9ac0a95c9377afd1de27051167db942f4f6a50bbeb515430589
MD5 5397d00748afb724da33e1df1441d122
BLAKE2b-256 f6e2bb33feca54bb68c8632aab23f5846e6b9c589dd2fc1c124e195bfb0fef7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 27bb5ee09ca833ff3b7d94cf9eee3e58310ee2e100717df5e51cda1a01041d5e
MD5 b9f7d2da49b7d919fc30115c22b207d9
BLAKE2b-256 0c732c0408b8454ef58df4fb091c3f1c1e7db26793834be4d2e4bd6296f82b2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b44bd9019cae92fab2280ab885ef1ff653bce843cd80a0ffca4de1aaba15f3d2
MD5 e88b88bba4f39445807110d3047a7ed1
BLAKE2b-256 6c4dbdc275c2c754e94f027fc9be39909d32599c0426cde3105cf3b855f1fe53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 766c156e041fe8541892bbab4a33fec52be0f58ff59d08a332e6b85e8ded7dad
MD5 bb265b020c28615a6b2bb58461955e10
BLAKE2b-256 85491d3313743601f72f0f828d59b892162d4ee99025d98f9e995cfa4dc1cc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95f701bc6027099f1233133e990bbac5d50d130bd9f15d6959074612b283d9d7
MD5 b3a7ba38b3e43b8ec57a7c5ecd3f900f
BLAKE2b-256 5916afb26e2ae2bfae5157aa67891e8f2a22bdde9652d10bfb5ba049e954afd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb2eec2395f2804db7b7be4870d8b5a6230bfeb1e495b569b19b1d6b18076694
MD5 a44003424d465f11cc72d04f56c855cc
BLAKE2b-256 b4e51b1aabbadb9b3855f1647599abadb23ba63de814536b1385638445ede053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7438aa6f85f40f368214554cc6a6926425bef3af07d95bef1be7030e8ee55f0
MD5 cf1ea90dee5f02b7003c83217bfb53bc
BLAKE2b-256 f3c7cb93f3fa0246c0653b484345c942159e29e9c9e77e597e09078b90676134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d20759e64257eb7622c7f16cfe2165044a4a8060f3556a22b9bd3f835803ddf
MD5 4481fe448f7c26a2021d380baeb8c0f5
BLAKE2b-256 f029f4ed05db377e6b67798909caa474949b7126ee4d18a707e5352c29dbe03f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66b861a795724c1ab441479b4d3c5fe54241d4c04acc98f01e05651d3c410733
MD5 c6f8ba6625ba74ae36f23ffd81e15d5b
BLAKE2b-256 35f6f294a2540c05c2f4b1d9a7ef6a2552fe669d6d90c14fac8b185d063b158f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84d721dcc9e22305272d136a505f60ae5f0f52292c65b41a57a9f8ea7dc10d82
MD5 8d198b3958ace2d6bcb899fd90056054
BLAKE2b-256 cf28676ff8bad39623ac5b80b6f52922719d51600a190c0747f44e265ebe969c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc7f64bf7601dca535eb7c27148fb0ecc1d7544678916ac703fb545a624b9ed9
MD5 bda5ba2a032a907b762977bd46cb57dd
BLAKE2b-256 f385b552d4f12af719ecd61583b27cb99181839ad2b0b73c4234b3d06dcb0f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93b6d007528eebc91253c699d27544f6f5e556df9847abd672f1ae94fc1f5c3a
MD5 a3eed0ad67efabb313082afa590389b2
BLAKE2b-256 3895dac1f6f2062b5dfad9e872a54a38b51b9edb754c99ca4761d5d32bb2ac21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c4af6e476c83b64758d02975a5b409b79c6576599f8749addba42f4fb390b9c
MD5 01e8ce28f3d0157a16479db10c4de1b9
BLAKE2b-256 73816f7b64cf235203b08fe62e0828f897c99caeb02ccb1dcd24948adf12d206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c9c921876ea97da855dad57a7b6d18b96462eff60e20db41863f7c9efd4d603e
MD5 cae574fb858d8598be142fb89770b8ed
BLAKE2b-256 3f29e409a424c7fd5df8061ccbc787b94eaf515ca907e7932ca475b1cbc6b1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb730ee9e60390e87927081c5ba5ae2e13af1e035fff34d1c2c99dba0f900a41
MD5 961b5849fa808c7375211f6ffa67c1d6
BLAKE2b-256 77aca78598c776d1cf74540e9c299a4e979f7e1e87e9a60bcd81977458f55a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 544d529478acbd63d3bd09a192067d36a9e96d8c378529b852e901ad8a1c616d
MD5 86c4e72c3aa937d4a33566e9f36f8c95
BLAKE2b-256 40a58881e387d93995fd29946dd92d6cb00e1f813cee6f88b7c66ada141b89ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11508f21f58a9d2393321d50d2efd80d0dea5c4a8f3d39beb3061de99c184d7f
MD5 abf3ec90b710b345f61f4d3e15fca8aa
BLAKE2b-256 0262e58f475be6483b65b667074e0f584462974f21134d5a7d4a017c61bc5200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da19c772ef77944efba1ad948eb1a5714c53c7cf37cf8ba528940b7d39aabb99
MD5 b2a8f65b00a8df2efb0a4ac37f3fd34e
BLAKE2b-256 b78ab1ad0d6981d5ccb9b801003f92852e5d95956d6aa817fde49b4bd65c7fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff83af0a7c530a4dd58fd8234a42b4f61c86308790ca195c9536afa8a9c0a3d3
MD5 cde22dfb1c67c022af70d3da5562ce89
BLAKE2b-256 487a46502319383e07ccdfd4ba0659d9974c41008bb22599e8bde63bd322b92c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7c021475665021912c006f2e38573677e4114f0323482a3ff97470de82bd24d9
MD5 fea2368f71405a7259fcffe4863bd5ee
BLAKE2b-256 1ef484a25dd9d4a2af9921ec549e48e34e398ee6b9d6d878331b990b79b282fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13f5fc6eb7844f4491157a2068b16a54adffb5c80ea50e396559d15689f7b098
MD5 4fbf40a54d8b309a143a79e2581283a4
BLAKE2b-256 aa3fa97b4eddfab968af94d0d1d6a9a217af39c48e12f884bddebfc88f3e614c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bdde5ff5d0f5d993fbf7dd49e99fb5734cdb2a4a629a596c111d15891c2a6ec4
MD5 5fc91ce9a37c337589cfeb81e13d48ae
BLAKE2b-256 71a239eb9f996a7d0474dd91e2b05f0865e184d1368ec2cc87070c771d9492ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bc35c8a701b9c4cddf8fd571b111804ac3757268f7fcea204e5c89d36365d3c
MD5 bd8351985c1ef71da096bbd0b8daf788
BLAKE2b-256 6274d22790c77b12a5793d2667d6ae179052f4da78047abc64564775c4121273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cf29407ba5a8ddf052e52e4fa6bbfe2acad9cd504a288d265dfab95d28226e79
MD5 77ede53b6b965b06d91fadd99c726619
BLAKE2b-256 fc221ffbb072b95fed7bb90c8a6d5e51f14c6b795788c7b4f9102df055091571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e4e67582fafecbbd1bd720bfc25c85a31909c618636eb7aa43d405ce940b9191
MD5 9c1ab6fa9d35702c03d00c90b9b27a36
BLAKE2b-256 e1753bc4f255d4fb643bb837b6a97be163bb550c2e4708294456bd1ff782d17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9cd1199b94cbb55f5165af074c6fb73180d24067b02d5938c71e564fd100886a
MD5 0a549ddc408f4081f010a2d3c54777c5
BLAKE2b-256 ecc0d205d15d4d9810e1789be287871bf6232562bc736401c9285dff6cef5d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94d25649b67d4291c13691b9681bbf071dcf5f74c07814c63e68bb9cc077a161
MD5 09f5ac2b294eb2997182f42c5aa1573e
BLAKE2b-256 cefc1cfd6b3e039400db00cbfe31a6d68cc1c89694198555d26a2e83a4f4f1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 102fcd8397c37e365391ef28d171d09d7700844c8bbf4a5b068cdb0a01a9b330
MD5 54b7ee526c220192dad05d83ad65a3b2
BLAKE2b-256 cede179ec4841dd543d674944c3d2bdd4d8f5e8f9c38654b05fd33d1283ae93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80864f85b45e5101c5428dfa86961b8bc7b2146770c5f76be3a514bd3e866580
MD5 620ee80868ea1b865aacbe3c42597f63
BLAKE2b-256 7adefea23dad8d88d19d62a7691d55c34ab8f67daa36d30260a980233c199ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 714248884a23a0cae02c3efe46a3b6962a6c7deb719702f02a6fc09cc5e3ca8e
MD5 59e7b5beaa1e4e0dbfe67f716e3a499d
BLAKE2b-256 ae242583fa97fd1e37a030dd4c5ec96ab7c9e54d613ac09e7bd59ca4ca6dc379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c01aaa0bbf55c08a333cd2dd10bf546798c910b392fb2320b84ca159731300d
MD5 1c5c3a05743c0f37b14946d552d7cb80
BLAKE2b-256 16ecabedaf7856b7a2622fd07b6421ea16fdf5bd5dd73be378958677b4b84286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8f8c9684ae0a0b6ce764079cd99bb15919f3beb5189595ccc8ec889b24249e5
MD5 1e1a7d34b934c2ca82cfe88994cb160e
BLAKE2b-256 b18cd1f9e8ae354fdceab7a5df7b5ef9af94a79cf56090b05493bbfed074ced4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5df3d8eafe03a3f7126f5144a525220b216943925ff3bb9a274afe9ce2ef7536
MD5 325e98bd1fa6d15a228bdcce6a470a21
BLAKE2b-256 a64727a06df7b757ff1c91c95d92eb6613052a207773209e05a9c3f732e6612c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c2dbfb806676e0e805a60f0780b9c0abc38ca0263f002fa40f09655cefe04664
MD5 dbc0c1d9b15d3594d746c49cd3099fab
BLAKE2b-256 473cba4ca3a1bc394e0187c38ea5e0137a9aa672df12800a01aba9b68ad419d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 efde5825121e0f7461ddb81975472d8148dda1e9cd9a03f3f7c7a092879a34e5
MD5 385b215c7da8e24a1c21c38278aa93df
BLAKE2b-256 084058163896c7d4b226869f8fa5a6443d315eeab190c0ad33226a7a4a141d75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad1b728568c7f0fdb5671c39d78d6632b3b0086880d6406e99eccb1412e76991
MD5 5fcca63f26cf18341901a656d6aba418
BLAKE2b-256 3d032c897f63f9954939c0a7e03f45e206870887d5be0de25809dd6bd0fb035e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0452bc2e912dacd955365542e1a8d6a3711d9b31064c7eec5bbda5e1b96af18b
MD5 f661721c456c1e2d80d74a941dc9fc74
BLAKE2b-256 d2d5ec9cd92154546ee99bc413544409a331f4af8598a15a15a21df5ce929916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bc265c02333015d14ecb3ca8778ce6429f1988cbc7f776b10728b7721a65f2a
MD5 033948ac612c94fc56acd32b0c119019
BLAKE2b-256 3b5af69b5226a0d90ba9e4d1a618a2bc438de288e260ea906b5acc138ec9d958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dbc1a6871a56bf49cd69d82c0d1cb16480364162ffa8217ee7928d96f880df1c
MD5 77eada4c55c154cdee72e47dbd21241c
BLAKE2b-256 e0a1452fc8a1acbd2869645e25263cadfdba4e97780f6890ade37d2d4c8cca37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c77171f589093a8b3eb9f50016733ebecf0f66d11eebedef6c0935b25a3ad9e2
MD5 eddd8991109e64f78a61c3479c09d340
BLAKE2b-256 5d6ba61625f149546924e5abf7fd44ca92bf1180c7c0a31cfe8ce52bee5e647f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b150730e53cc4a43210bf1d9f5ab428c2926fb196f291e5c0cc43725807e9d1
MD5 cf8d6e15706926549a83a1ef1d9efe2e
BLAKE2b-256 34621ac177eccca7ffab96fb7bf571a03002b86bef890d06ea169a2d0ff9f5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 174bd0a5314cfccf471406add76c0aac1cfec7c589c3f3f477b4c5889179f8e3
MD5 8251f9883bfcc3c919305dbad03c3704
BLAKE2b-256 57aba7ee8fb51c4cbab382f5b4437626d0bdc25e7e6815da046850e69f85c0dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 465f61de561149469fb6358e4b92e70f07006afae9694e8f6d4559d7bf5a6dc4
MD5 f34b302b7e5910c1d1382ea880e87567
BLAKE2b-256 2a956d58b9e4c5b3a34c0fc4a0dbd11ab54ebae9626acd6ce1ba9ebbd561d3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4cd8cafc5c52a60bc5695fedf220e0dfe7efa58fde406add86d03a35e95a30d
MD5 075b66d87e10b0597af1cc18845295ab
BLAKE2b-256 eae56da4db1cb4d2ccbbf1a69c4036d6df51996ade4ee886455555b5b57c967a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7755015893f5f689b6e8c242d78feb3a0a78de7341d7e77a489552ff28a0e51
MD5 5bc4cc998b81ddaa0888f116fb4f6d90
BLAKE2b-256 7f4dddfec8223d526bc43f69f0cc40464b4d95d423e053a7bc43ab073d4c80bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf6a7ae2bca970f528a96c42db6654eee23024cb70c0777d428efffc2b21e676
MD5 b676c8917d67db52696ccca448018a31
BLAKE2b-256 ce840c516c2e9e0f6e49d99856e0f92fdbe740430550f722e9637fb91deeae1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7717c86b509f89f2bb13c400d8bbc02d427cce5159caaafc719e5a2d5734ec79
MD5 68aaeda5fa71aaabfa197d8783aff099
BLAKE2b-256 6374f3665edee12914da50aa495c797ea741e18f9b4d183e7f9833851944e922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f41f372d0ae5959282bb16af3e238d29e107eabfa69cc87e7d72f761aa287f4c
MD5 74838f4418929ef80c8c9ab054857bbb
BLAKE2b-256 99ee7e945f76dcd055efb0edc7561a6c8a365083785d08837db5a2e4f6803cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d46bde4077049b144962a1799acebac9c1458802ea7586243e1b437655a5dacb
MD5 000c4bb560535cf2464807b5c1c39dfe
BLAKE2b-256 09c127f166ee3ee753b66261324fc218aa88e4a11d2d88c736b88731796c6222

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 68aa4991ec531cac8cf4f992b58928db54d78a98327feec082dc03a2a355c400
MD5 36ffa898e0834e29a1eae43f6ec332cf
BLAKE2b-256 8705cff5c7e267dc3a56c8e020bef13538842fb3f9ab188692d79ae9ffc32fa4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4738fe1a9b9d1f06b0328b8db66b28fd70bf05032d8f29d1650a52665ae378a3
MD5 c7aba5a5d8b1ec8cc201f0283b3c545b
BLAKE2b-256 0f151decaa20d5b18fc209e82802933e04949f994fbc0bf3edd0ce57367e990a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6b791bb390ee322ac5dcf805d90436a9dad872c2ded0fc030c2db072b4cf53a3
MD5 e58810ccc65777af845b7866eb610815
BLAKE2b-256 9bf658d8be60c8276e054bfe1dc5a62c4aa01a6505b785b1cac29c2dc9c69f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 775de8bba888a353c5e367e8b3ecfcd94f72623b276f49952c64c105837a465d
MD5 a121fd061d326969cc706be19a5b91da
BLAKE2b-256 aae11500d026127c2c0c03a8a67a2c28b0903ce19510818c59940e987c5a262a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1741b89263afb9c36bd2875566d532079d52e6d96b393acf9d3ce8d36382c077
MD5 e078254fb76566ab58fbc75293dba22c
BLAKE2b-256 70d469576532a4e3d438f5e338c06d64b25cb884bac664cb16d5b8d9d5eaebf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7fe9fd147f3cfc08d45919ea20aeb771775585fc227ae0723d239e2b0742bd2b
MD5 a99e23409caf710a436e4dbe76814225
BLAKE2b-256 d0ef60027066595eecf12272a3207b1e5651c0b6abd403cd84f539d94e021cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf8a516b8f43fd98748be21b80637d0e957cf552cd30ad6f962c9be9a4d91709
MD5 9c6499b0d3b7b3f2d466a0fc21aabeae
BLAKE2b-256 81334370ad8785b93f0af6f93d4bbb5b8f169e38acd3dc67e5149f4f768a0785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ed8172d6b1bf11de6925c9b30ee7646d82b5b84e034c5b9dccc1536716df0af
MD5 f36cf86b8609923acd0b6ad69bdcf288
BLAKE2b-256 5516fcbb3223d8b41666646798f111ca6b1835e85f9a19921c3df7d9223ff055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3175cd9a750223459c60ba83c962894c74cd1fb94788b3c6c5adc726150d575
MD5 53f6a295e06f1e54854f373e92666a22
BLAKE2b-256 83f5a7e567c75d3d0febb83f40f44a29d456b7a9351655a84f900e514c5f66fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afda23d14600efa4690b48d25bafcbb23ad19f5964d789a1717d084ba4596643
MD5 b8bce2306b5dc9b1c845f9d0e0808761
BLAKE2b-256 f6d4972885a003938c7be04cc7923629a4338561fd2c6fac0dc947430472f570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15c9c6187f88de6a6111e844bec638ec4c804d4a570ab9c75ded9a58bd7f101e
MD5 9c6454ba1ccf29e5c77c6aa0039463d8
BLAKE2b-256 0e04fbfc044ab531c94eda6a248ca21a1328280c5f72329825232f74bffbac87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee870c1240e695d86e778f1d746faa3ae4add04627f332dd5d15daa16c6388b3
MD5 d7c2f5f7b43036db050fb9febb6e93c7
BLAKE2b-256 d15bba1f2b237607cec39ac9a5e44d12a0c47ea7f1fa3ea60541b15516553732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88c47110b27c345d453c881174c7e20e6ff5641d8dd7bfb795b66807a20daa25
MD5 3bd7381ee7d4378723c3a56b27a7b9eb
BLAKE2b-256 9ebb2733a1cafc138791d6a7929e940cf88c21824d3febcc8d6e04443ed5f86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8da8c4f2016512524087b8d4c9966711c80731ffb852e160459661b0a11d6e35
MD5 a6554b21d7c2ffe7279ff7e1056b4557
BLAKE2b-256 f946821e4376d855e037f41cf4135383565c0ec3c1470ec2b47843a44cccb089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3c96eb53552e3990e373cf87a4768385a6d213574937f182ddacabb1991e543d
MD5 8d362474e421a983b2bdeb514249ffcc
BLAKE2b-256 723d920eed45abdc922d4c6422a1471013b4c079a366a8e1639e0c48808a8b8d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0dc345a17854a015b048a1a0f25da220602e531f8c1faf1b95f9ac75eb5cba51
MD5 646a0736043133c530940fb186adef0c
BLAKE2b-256 53489f447236d5aea87282af3191fd194abfb78a50b81371b38900b31545db65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e28ee13acad817f19f041367853630ed98be9a7fa717ea9c66dc512905959f2
MD5 c22babbd956dd4fb618f5daa07541c34
BLAKE2b-256 6a13b00167f02e436d4caac8655e55fe1a1340f6b6ee172ae82b69eb841359c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5bc48f7a8740e9f3e42c7e1af5d537f50f26e7a74650212b284e887ba4536515
MD5 ecbe09105d30772e989531c7d74a2596
BLAKE2b-256 0e8bfff525c55b041e30b4ea2199734a78ab3330363ed642f6ee2cc554b28696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f7e115c1dc65ae38b50ac69bbfa74ffb153a46d1c992674e96cdb347b9f2ca0
MD5 6f2eb95e84eb8b2071425f22b7d7b430
BLAKE2b-256 b9b1dc8f71fb19c5af3c3391a8c96f0cad86c2fe45b376c5ebd8be0dc84b59ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fb4f4a1705a292855b56d57e657780cae69bc1cf687fdd3746c2eedf6b6660d4
MD5 53618bdd01accccefbca2727e31fb692
BLAKE2b-256 8eb83d1b2d1ef1ca6aaa39eddd34ae1a328bf93d41a5ff8cd27a36531c873fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b90f9d462e3116f4f91dbab95f7e606926c8bb33a8ce7993af389cdcd7da0403
MD5 a90dbcec0f1a54514d3a7f7497cdd654
BLAKE2b-256 74d3b57e89c1d9a0c4140baed2df179a2255ed77d2e758991ccf457377fb4711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e839551cee719d112ba9c033a73d73c59feffab06bd82a0c01ed85994eb98b30
MD5 27a7dcff6d45cdd0a8f63d4243f39d77
BLAKE2b-256 59b781ae768300f412eb4b18063f17306b8396247d967250c7ec3b205c719200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70dd836f0ce414bb69b5a535d1a736062a89c55e907a52d79f27a7d66517e21c
MD5 c8c425583b9e0e86c53de53087b7d4b1
BLAKE2b-256 465618a4c9b57da7080c788434d3324f55ab9dd3f34651d2b437c1c3c0661a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70732940899a1c7679f1381ac31fec9a368c0a9b1bc3b072389a043eec2b8092
MD5 738e0173b84f4de8dc07bde1b4b348f7
BLAKE2b-256 9163238a5a2c2def4cb4fbbda8c805056af446efcd00c4436799f66bcb153b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ecb4df49b7cb74d9dca2397244914e4aba73de479c507c4bbc68776e0ba9c3c
MD5 677b69d8b95bcb008467e22736d8cf45
BLAKE2b-256 1a50573083a3cff7165f975e29f7af9b287186649f9274df0f1adec1f0c92c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24f98a6d3559dc0b62fe2885e2714347564f097ef39705e4c2bc7d30e5b5b0d6
MD5 c15a9c1f323e954d764927dc3a6a35cc
BLAKE2b-256 f440f01d04b1721d14d50629182a5a56c673b5017d30f1023c428ae36550c47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70a26a113795f09eb6cd1db64baf8c08e6e5dc54836d10257378ede2730422c6
MD5 a695c94e4d2ff4ac5d34b2823ea1d916
BLAKE2b-256 978121dcc2e0b40c6fd7687ce3aea9cbbdb84927d3c54716b59d821862a75314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 558632d56e575bb4f70bd69c1fd3994fb2d7acc07de38a5070696a7ab81a6f1a
MD5 9d12b55d63dad8219773c77cd4934d60
BLAKE2b-256 f29b1110c0e0ab24562e82cdb7591872de8474b56ff9068834ba6b0c95d5fb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d9196c00eea9a794234aef2a090d48df0dbece5ab479138cbb29a4ddd97a947
MD5 ab3fa16b8a5aa2297a5cd0f30c6b1612
BLAKE2b-256 d85559e3fed009feb69a3e8187e4abb2a87639cb7de202410eef8bcdc159302c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1762d23402865a5fad0f8920a772d1801bbdcf8084f090aed5e047080fab6159
MD5 f0ee6721b1e10dcadc5f1ab0bdc83b94
BLAKE2b-256 4e79a60ea2a2ac3251002295d39e5159a95c643310b661b176c318a96c7e7cd6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b09eb1618ec7655205d070af4543b0d12d6b7f9f311969e758798fcb0e108908
MD5 1ab306a86f4a7ee828c2aac1020b0b0a
BLAKE2b-256 0507dfe0d011258d44f2187b1ef0e854dd173e32c542975e887bf29308d57773

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 90310fabb095b20009e349cafd50a45bfa95c6312dffa597543bde05bb8f04ee
MD5 006697f79f25133f75f9c0e26ec7e908
BLAKE2b-256 305dfb7ead1ec60975c52fa694f4d50f92dfaa09e7696a188e4c7e3c5e3d26b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 344aca86de5636480f467da2926b7bc6faba4d9219109013cc8fed3225570ed1
MD5 77f005f9b1e0e04d40fc77d588678cb1
BLAKE2b-256 681b856af41c7127deb2209e5b0226371a5714c709d498e7aec3c77c137cef91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 198fdc6247e1e2f571b94c6ba1c6ebc6a373abf2babe9e9284465ef871f5c647
MD5 3dc6733cbf3dfe1d89345c5acd3344b6
BLAKE2b-256 935b831c545662855b6fbc86a9606e8a0014c4a1eb7b40b259bb6647d9e2dc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d51554567c163556d5baabf8b58d71d3490119b3f3056a37339ba889e724bcac
MD5 1b658374f6fe28dd5ce6287307aaf2e8
BLAKE2b-256 ae3c1320380242b955819f2f7d23542fc9c5b2a2ce4a262d86780631c733e076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 65d9ccceed5c8d037ad5deabd949f8014917a75d604295e56afa9a3afa0a4818
MD5 00953a919042e61d23d19af98a5ed3a9
BLAKE2b-256 7784397c0ca3b39e2aac1d667d749973be0754f4202168f255adbe5397f088ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4742298b539f30126f2b3ef9a3959d550953f142d2629b7f329e9c93e8f9d601
MD5 a5575bb675669ea2aff44f57be567579
BLAKE2b-256 a7390d6a13f06ba92eabf3b0cb475b8d598fc56109bd76184a57cb920ce0349c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe73d2f4c4b8305e9275e0d77ba4ce49d72ecf74ea24a87a044341af92466d67
MD5 b5f388b80f03ec1c77c12bdb1511b152
BLAKE2b-256 2996a0f745bf402da0ac97835b026921782639d53976400fa2450a83970642e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0da8c2c8b4b3b79e22b378f0ef3cdb55c3d2cd5720c5dd030b8671abffffb02a
MD5 1eda37a769bff185d92a87fa0fcd035b
BLAKE2b-256 3ed343fc5c19fa832d8e958db385a876c865b67deb997a8880a926376f536420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59dff0f8147ec3e93509a7e6c01289ba239a623b18a96a8d086552884e65fcb4
MD5 10f2d988c53ce0a9fa6777f880edf328
BLAKE2b-256 cfed346fd85c3e6148424ca66d2cfe0f87a12bb9337de9bd9db085007b32c328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56ddc9a8cd2f3c56d556fb93f07786d2606efcb703339b5588a2161ded41e35a
MD5 25645a6425d7334c343d43345da9068f
BLAKE2b-256 2228ff10f2b2b695757ed3ce56e9371fe111f4a78868ab0997fc20401c080c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32f03308cbd52a7e2fb137cfaf895f10d62986700cf3d45010a19606c8c9efef
MD5 6c9a765af7096198f6d361dab31d5de7
BLAKE2b-256 919e8a6b6f2820ce23ae28c3c5e40d0908761035a91f1544580a7b2b7a7e96c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33e7723a9b1e5a016f5ec6df713eb175afd415c3d55547020881bd401b4d4774
MD5 7c0c96662ba9e8a1132e6e82e00974cb
BLAKE2b-256 31014763c3983148c4fbc3adabcdedb38daee4b78608bdbb0d2a7fe82fc1ccf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cabba9e2ac67012ec2c5e3b47614fd96f170a07e7fe354b891523078135d74c
MD5 3b56288b00081fb5d74e17f02a63711e
BLAKE2b-256 c7bc540c93f2f7c69da38844e7f017c7c6affd9400c49a4be9f68dc06ae40da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a18e3224faa0ee91e9a83a9d5a52d7cf26ecc0f44f72b2f92f92bc0609ef9cb4
MD5 1291139869d8169c80445e67925dada6
BLAKE2b-256 da1da43ec5aabccefe24301272b06689f5db157bc02be0832cdbec5930b1aa74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 af3f1098a752a1482e4e28473ed6aa8a718b9023d16e5ff165922f162a2f60b5
MD5 d4400cf0512e172132c9ba788bf8d427
BLAKE2b-256 afd05e29f48aa3a7097ea63601de79bbe7571825683e4d29384bd13fdb744348

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 74ea327a34e097a7068c0a1a3270da80251c92c17b5dbb83a9c9d12fec5003d4
MD5 991e2c0a05ba0a979bfa377fdc8f38d7
BLAKE2b-256 db0058fcf0e8949cb57c50f125990fb18b648bef9412fc598ab2db9da8b2cb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd8222bda40ab649526b76f0317e46b10c6bc5ab8c2faf6bfd6b4d533d3eb2f
MD5 9ade182bdc8e0a937309c76aab0cd6d0
BLAKE2b-256 f4522c92ed0c648e0f0fe43580e302ce63139fd3a625f82be03ab44dc164afb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5fd650d8768fb31538fb8ed986a538219d9b9038e71a71e9852b6d0e9cf994a7
MD5 ecbcc8c673f40b5d149a4b73178ef762
BLAKE2b-256 bb84251f57313a33ee19ba18cbabbe88f172546121f9e3e6ea43ca6c06fc1d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98d09c6a43f7e9e75ea15f84a7be6d5d8f009c2e354591d7ee940588a0dbaab3
MD5 7ef96d03a5dbd5dbb2bfc609a6e37e90
BLAKE2b-256 777a24b0f91a6e9059f4119c2ae6bae5e59789bd59f2e31195e8b1bc69b68ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5ba94467ea49777cd2d4d964d6fd98219feb12ea4dd6af78c82dbe12a2af16f
MD5 da4672436e8b2f7cc21be40d039a29df
BLAKE2b-256 6b9e42816a2a18c1d98bb237764b32db087c76b522443ffecba067eb4c8d424c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c578c7660a639fa8dbde2603d4327925f76af015cf75a74140a9776dd13fd947
MD5 f3fa0700567f045dd3c1e7354e318646
BLAKE2b-256 18f87bd5ce637fb91645f6504431e2a52e1c44ef02d132d17ed80d217f7c40c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daace1df0da5edf67d52f087b861ab8bcbaa7f65b4fb06f823f28e60fe25066a
MD5 3e5c1f6435918e9b3848977fc5a2d865
BLAKE2b-256 4e82f77c44650ba57b2ad8573050bfac1e7709806d5c70a00e63c8e98dac73bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15d8a3c4d1b6838e8231245603373a62f0dea52c984a4a10a841e39b0e65bd7d
MD5 f801df698f438dbd4461bf0f30e9fc1c
BLAKE2b-256 53282abdeae73df0577c555f4528bfedb07d7478485b575a8b0916f00265c4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e5c4365d925a6f812aa8cb53c9014ff7672f5fef2a90386acf48868925d9f95
MD5 83ba9aca271b0f416f6083bb68bf104a
BLAKE2b-256 f52685bc86ecb7bffd553dea4203af5a83fd18dd334c455ec27cd426e2d1ddcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6ca54ee44f81f7722e17e183faab3e956543ece15673134b24c1faa082f5836
MD5 64aa76aa9f5a914a503418195fc57ad2
BLAKE2b-256 2ebfb56259c825549653b51194e0aefe6ee3f99ba1130f6d95a82e3cddcf43c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65416b91e589988e3bc7b2f670ab7d8d8a843f83c3b8ea2398da81c8706a210f
MD5 53b52a5657683964f11a7a3f5e38e0ea
BLAKE2b-256 5c93204cd43116d464cd7ed5a929f2e1ea32f99405c6776222fd42a6efecf892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81dc98dd13af956d6e67cea8512014ddf0782bbfa817d82743d5e74c7dae9e8a
MD5 38b323b088a122e3de6724e783886cb6
BLAKE2b-256 9c4e2e7f5c4bb5771903486a8de192433045ca6a34939cf7daa7486163841187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7a27e2083839fbfa67ad51803df64e9aad2a581c6514f8a3bafdf8848e1b371a
MD5 bfd42dea5328b7148d82877d413e77a5
BLAKE2b-256 ac2f6bfef63d147deba70b1f0ee46c5d67fa07aa660892f273ca64009cce2fe2

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