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:
    with pybit7z.lib7zip_context() as lib:
        extractor = pybit7z.BitFileExtractor(lib, 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:
    with pybit7z.lib7zip_context() as lib:
        # Opening the archive
        archive = pybit7z.BitArchiveReader(lib, "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:
    with pybit7z.lib7zip_context() as lib:
        compressor = pybit7z.BitFileCompressor(lib, 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(lib, 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:
    with pybit7z.lib7zip_context() as lib:
        archive = pybit7z.BitArchiveWriter(lib, 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:
    with pybit7z.lib7zip_context() as lib:
        arc = pybit7z.BitArchiveReader(lib, "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.5.tar.gz (78.0 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.5-cp313-cp313-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pybit7z-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp313-cp313-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pybit7z-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp312-cp312-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pybit7z-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp311-cp311-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp311-cp311-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pybit7z-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp310-cp310-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp310-cp310-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pybit7z-0.3.5-cp39-cp39-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp39-cp39-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp39-cp39-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pybit7z-0.3.5-cp38-cp38-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pybit7z-0.3.5-cp38-cp38-musllinux_1_2_s390x.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

pybit7z-0.3.5-cp38-cp38-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.3.5-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.5.tar.gz.

File metadata

  • Download URL: pybit7z-0.3.5.tar.gz
  • Upload date:
  • Size: 78.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5.tar.gz
Algorithm Hash digest
SHA256 3b80fe4f33f8b991b0092c9fe1f2aefc5a83276e1a339c42175301ff406288ca
MD5 9c1fc238181ebdd29d0598c22a7dd02b
BLAKE2b-256 05278ab1334f3ce14f2eb7dde86c464c68f216bf6bb9ca5468400b24202b51a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 13dd48c721265520e2fc85c0acd0cc79f6e6a57885a5148f90a45e53a4d3e494
MD5 48272d2d46855c28eceaa804f1673daf
BLAKE2b-256 3fca548efc5e2d73db9dee39d4d7d9a3ce2b117fbf215ba865fcee3d79c77390

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e27c5e2119280a3ad9678d65adc85553bce305b9c02d12507524bb61f9e42e4
MD5 501f3ccf6c211959e48463baa6f37ce3
BLAKE2b-256 a9710b6a3ecce06a989644377023b693d6844755c2150cffb8106e94b463d844

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7b202a01e93380c585c1e0562d5dde5697ec5640cd4a711f2ad4c7eb44cfe3c3
MD5 1e82d3cc9f67e367f3cdac902e22258b
BLAKE2b-256 ecb09a28bc6a394730bfc5aa2bf6e86abd6d5fe8fe520f9948ac28687f30229e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f5526e00c9519d8c45dbfafc6b4f0b900636166d8430e0dde28ee152023c9b8
MD5 08fbc53ab40c8fbb1c850c14194ef41b
BLAKE2b-256 1018d8b928695d71bb8ad88632741c557d6e74543d1d175710054501e03abdd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a0912e4eac640f67ff1f436e16293615c5e399f5bb1d6a695976e561b9156e53
MD5 492730431c9aa64dfebffd6ea62e90cd
BLAKE2b-256 299713fba1cf45f1484628f8c6e462ec841e0601cafbad5c828a6dcd6569fb97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eae310ffc6ddf18f5ded8fdcac5b24e622ecefb6d9144796be2458d2a6cc9dbd
MD5 bcf74f80372fc037ccb5bafd0003439a
BLAKE2b-256 a8d40bc7be23a2a095f2a3625b1e2a72f69aef774fe7405cfc50ee154420645b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e898df6e97da0338ac0403385e2eb2b2d4f7304341d7fff4e3e867f46c6db37
MD5 feb897b63ed7cc057ac2a50db2c93242
BLAKE2b-256 1a3369e859edf125bafb653becbb272fb57335f0aeba1cd82a37362c650b11dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd245cb47f16210ced82528eb8077b1640a35b7047450c9d2b33f762d4e454ee
MD5 52d5ceacfea64659da4b30a4a0c796c1
BLAKE2b-256 20c5a6be34c68af0f49b65caa4a42138f7682c9766b95f4411f762170bf2c608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3625cb4e2b9c59f6aff4b02540370b2601c4af3bdded63abe8e073e8bcdc5d5
MD5 fb19c31091e19db70e51d2a6afb7663e
BLAKE2b-256 22587349de3db6c013b4168616b20a1140349975ebc378e02cb7fc5291f353fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3342c42a609d88c8f82ed465fefe6a7759eebef09bd661abf83b8b3016f9c41
MD5 d9a6c62c94f19cdb778ea69bdf68be89
BLAKE2b-256 7478dd34a5290c8573a2ac9e930968c0543c15635e021a8a0dee771af6a13e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3c23eca5bc24e2521fe18719781ffb79ace2c9a5d3cb5cb425b54103099a987
MD5 3a61291e55dd55d3002dc5c659b11b65
BLAKE2b-256 4c30839b2d853ef88d023f30d723c612246c456a9117df8364c7c6c1ddee9b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a09749e0cabd65fa74ab67bd961b2ffa3cefa87180402c3d1245dacec261b4c7
MD5 7d6fa9941d90a4539aa3144ea71452b9
BLAKE2b-256 06cca092bae79e00192f79107d279296878e44a600942efadd47b06904d0364f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 290559c41a88b5a9a6dcbd4e14a3ccfab7e43113f7d968619b7c52931c45d6ad
MD5 26f9c2b17755dc314788e343f32d052e
BLAKE2b-256 14e86cdff376f87fe678f3bd59309f08a6437129173fb0a83c746ec327756dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7113a92a8eb8216458b7a3d3a69dd941b57befae38ac86762ce526198be0c3a6
MD5 e2244e2f8f8be4bc44c4286ac4d87389
BLAKE2b-256 a4524b0ee23980d86748f6e2cb62b0a227125289d76796a5912c35c43e135b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6bc46c04c08bc1f5da5d485cee9a2342d9f66f5f86c70ecf019546be432bf818
MD5 bfc47297b410177cb937359bd3ee41b6
BLAKE2b-256 367e749f79c6ac573ddd3f014c928f52914c4f9ef6d5cc57161a8abe7861495b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7f88d3af0f920912e4cf7039c80f2373e00af738d706041535fe83af7e44f0ae
MD5 df66bdce90df90ea954b7f7ea244a593
BLAKE2b-256 a91d92245c5b706200f9fbee7ab1c1e9584c3a38e410502279d4ac09273ff17c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7521d27224c0740280aca3cd05352aa534dbdd605fca23cea8df35b33d6efdf
MD5 d28d7e1265281974068eed3c4452cc85
BLAKE2b-256 5521212c790c5747ff2c54836a327820511756b359ed21e8962096313bc1a69d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2f3b74dd8e7ce5c3b0e7da39c4beaa3c60a5fedb3530a3f8c88cc0889353946e
MD5 a7ff5b9e54c02048b95b7298614b47b0
BLAKE2b-256 170e992a8a5030df1d6b4c55b3c20a8ec2f363d018e27a25f98fb313718c94c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3718f8c534c5282eb1cf73fc494784f24db07f50af728bf8e2f228efd9e1a20
MD5 6abb0dd3a88f5d85ab3bed714d2c780f
BLAKE2b-256 b0b8ea69f992729edcbe0f5ae237423959ea9cdfcc3073e73e58512264c0bd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 42e9603cc110ba30724eccb76fa0b6ac198b31c0cf65d8e582ee685fe948fefc
MD5 bf1cce9ffddce6b7ef38735e997ea73d
BLAKE2b-256 6baa216928765014014a2a539ac1dd6a61500aac1ab2a6872c67da0d47e27e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b235e30e587ddb6b3e131b55eeba93090890b9dc9e089b84c75e6beb086b4ec
MD5 359306b9324f26ee8a8df632f5f04d67
BLAKE2b-256 c5d4fced40f64c722c36c9854582404c5477ba1ed55f01527e75a121a76b281b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54031fbbace7c831ec8e08f603cc1822bd0322edc38c937a92ac263642d8bcfa
MD5 900feeda190894bb858a6a49c27caf45
BLAKE2b-256 15511f67e2012bcc8151f0cfbaff719ead927a876ffe99c0250a47ba13954e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 071e640c165e0de40d95bef99773a9c1ef72da21c6a483b49f80cb50a9b147ee
MD5 f4d919d76536de4f503175e0ff0924e8
BLAKE2b-256 0b2439dc608e222604fa6025615a398688d168b813936884c559f10e9aa2e869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9b3ea7f186587fbab2389e757786703e73385c40ab72b4b3cfe9f2afcfab93a
MD5 e46a797663a14c293344177ee3b5ab01
BLAKE2b-256 6fedebafa0a27b8fae098b91432440637fb3629ef333826a3ab93c22eb0d5e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9c8b545ad7fcb4b17ac68cfc1e7c2b38a5b6acaf1fb9b32ca43031241ff252d
MD5 44690e6d80160eddf28304f4a56e9dd8
BLAKE2b-256 3877a7ab6fa86e63d411031801233dd193646eb7ee978e147a94a4ee207cfa23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b99f6ea3abb8a08bde49ff107f9823c4317a04c3274accc77e19509f91797a26
MD5 e1b2b7fc7edfd87e98c1a71c01b49db5
BLAKE2b-256 a002657fe1408e0339f9dea42dff8bcf1ed4f23eddeb3f81f46cfdd8fd4c42f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c7a5d4e67b7427f858c371c8b2ccb12fedb2f5b389afc36a38c02273d572fd5
MD5 9d21f3e83dc810927cda3eba37ffeb86
BLAKE2b-256 d9e454e09681183ea9154774a24232ca5f0d57469d6d3bd307e8b6d1107ffec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df10b87c9acd268ae83b40f48cb5ad166b84843185fb98f5dbd61f8ab062e67e
MD5 3f3de26bf7bd1e9b4caa68aee916d9ca
BLAKE2b-256 4e1f95f1972b9a7345a4ad97fa3577b9c93ac09a63de5e64f4187b729367a2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 598a039ba2ddca8c7713e9e1c7d4f81fb9aa236accaa991e76f7d32d1a69855b
MD5 44d3bcf851afe03980e6293f90807902
BLAKE2b-256 e2ace75590a9e35f66462724ca37b1eebf4d94258b0cbe5076d511499d28db72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 400c871d194da99bac7c8752a3a99e2a5a18d4b80625dd22a5e5f4fcc37e229b
MD5 68c124f86e7f34063ae1e6964310b8ba
BLAKE2b-256 60ac7274860383ebd206e8cc4586453f3a63d4a38f7b4da73be09587ee4bb4a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 326f15ebc082841adcca30f54039cb6ea26cec6b791326a142707eb9b073a132
MD5 b95f5e65e9e0930628f19d79197700f1
BLAKE2b-256 88b493297622adc3dfbe5b407b6bc947df29a9d545ec2dbb949a0959cf4bd034

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ac20154039f7c748b20c15b753ce093cb698b76bc42cfaef6fb1ea3b0422418
MD5 03a5759c7eda24acabbb10ffbcc55d8e
BLAKE2b-256 26373391e9ae6cab9deb995e06696a7d191b5954dad242a36b5ed50195772b50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 442f7bb2e55cad9dbd50704ab99323754df417aa940573be76c3ce340bfca945
MD5 00355e439df6fc641252f75ddee3bc54
BLAKE2b-256 e0b5e6be33d84db1ee43d6b1e6a0d72794084b4640f74c0c9d4e06e83a076114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d11ff627b52f4e40713d0e19a55aef7515970ff9bd36d2b87289e673f533833
MD5 a5f16865b0a603e5e188fd838792af9e
BLAKE2b-256 0901ded2e8eaba1f5111a8b722e48dd6c87d7d6be2ff287ad4a739be3d5df4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 79db7c2fd4d98dd2db4efe4fbcd646fd4c8c9c432de586672e69fa1d89e8c13c
MD5 caf03e0195298dd6d832ece6538af300
BLAKE2b-256 ff7e7167e7ad6bf5c47188ab9770f232643fd6f5ab7ab7c32a72bede939dffa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3bd660e539ae377cbfee2f3a69511d16e2b01fc5bc1486204764bc16dfc5052d
MD5 7ef837d08dbf39edf3e04d83a8b5c5e1
BLAKE2b-256 f4c666c82205aca12fbc72bc43edc23a3b7f14686f3fe409d2402a422c88fb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a740f74853de6b0b28b7b8b60091f2c77bbc787e185477e4bef0d5e91e75ebaf
MD5 055bbd3ee86d6052d47e4c8466e5a2f5
BLAKE2b-256 085ca73d17df0b9096382c52a09b31df340171ae05f099d0b50a0edf38330635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60ef236f8d821e2de026d3ed18624c38ce9dcaa31834d74b0bf0a9f693de0bce
MD5 f3e0f6f9d5072d4b3a1c63a5ef356003
BLAKE2b-256 38077b239601a169cfeda7d2eaec70861930facced3581bfa775121e5d82a640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2549c52dbf6d5712cad5fc3f9bf0b32b520c61b0bef04736946a2e016e6132e
MD5 8aca1f52381eac0282a7c12e9652084b
BLAKE2b-256 84f67eb9458d36114f188cea74486af3dc4fec1d079ab0e595f4ced837bd60d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fc3b674e5381e564cf87794a41d0495fd76ca966d54c19ce925f987c328b3b1
MD5 28a3806a93defdd690473abadee8132e
BLAKE2b-256 f5821c39c563ffa2eb31a62bf744ef53588911910b5b251831b4d0b37069e40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a6428112d91db11354ea5e50fdea5a7758b500c626701ac1a962b951471465c
MD5 65351f5dd66c2b420f80046162229d42
BLAKE2b-256 c220ef3e9d3d5d9cfc8dbc717a3a92db51093ee8871b3d88860dbfe32c4fedfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0eac3665a398a77dca1315800043c9834bef3b23a3d92c320e1de002d36b601
MD5 6c783a9b63185e3728a92d8e0667dac8
BLAKE2b-256 f1e31a9634028e3279b73be5b44aa41b1a270a015a19f86a4272c17746cf38a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b73f65cfd2e873d79b4566938811a47e1049cda008d2f464a1026db7d38cf13
MD5 1f8ec038e49560af9180b5040771d5be
BLAKE2b-256 d30d7db07f6ce95330f11d63c946fc7bcba9ae89a7de78d7e489c5ff350e129f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08f642d2128d2770973356748488010b732d2a706abdaaa7c5635247d35fa5d4
MD5 27577251fe9bd810eccbbf0a6229839a
BLAKE2b-256 d43ef70f8713fefea87e1fdfb7c553b90d227457c156e885b1d0313488dacabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0196a1bcc9f3175222cfd472fb9eae56126f3dec5714a2d88185cb894d6a3987
MD5 978d17f96817830de7bbf73d08c1388c
BLAKE2b-256 1cebe79ff46242934de6ffb7e24c0d2004d6ff95a347504057a421d9812f21e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 66f91bbe5073f644367b095a4fb340bfee15fc510838594cd84a32e0130f6506
MD5 2266e5f1e52b039e3cf4163f577a84f6
BLAKE2b-256 3530b4e1b65ca5fa3c15d26b922c64640c962b0a04551eb19a3fb8cc69efcae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ba326d611677dde9c4f25ae4787a279808ca05ea8f378ccdfb9831adce2b92d
MD5 f83807ee8dd81207ef93baa0fa655994
BLAKE2b-256 f7fb5ea133d6e836a72ec786c11ae0d63af7f0faa70dcd409a85be22f6f0691a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 656e8aae688fa61d72688c88b214a533a575816441a2f4336788aad0ebb6186f
MD5 86ca7ec0b77cd2d64951c0e53f9b197f
BLAKE2b-256 f16d017174b79e6fcf9ebd403d43e82b40b921f77237041fb51c95e4714bcde0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19fe23f5e0b34423a582dc227f3b62a66d5ad8968c42ec06358e0ee0d15e6027
MD5 75e1c6dc92a731f8e0959036f9aa9539
BLAKE2b-256 ce32402eddcf1d878b62424a071345c8910576288591210edcd4cb40173b0a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 400ab1eae12129131d1ad6daad96ac153f498c93d0a37867aab62a13cd3c4702
MD5 85e12b7b4e55919225375f253e5d65ea
BLAKE2b-256 5c6781aaeb372bce7fe5bea000aa3da0805cf8c99a48951b0cf36d89dc7a6b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f35d9ac1338e2acacc0a1b6dfae1c8ee291c03a8f75cc364aa59944771fcecca
MD5 ba53c5f11cd609d65aebdd9ef89c9845
BLAKE2b-256 0a51da1b03485bb6227bb4cac86d959e9513f3181fbcfa30fcda676839284afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 226322bc2c1efb77e33f21a95b8fae27d793444b120e30d2312302656b8eed04
MD5 4e5db7cbb5b8fb3a2029ca575f4df655
BLAKE2b-256 493e8aa1ee91d435dfd3ff7857e6794139a98c323e54a5e71c7addd3dd89a97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a739e1a2d835cfa034541696e8332563f0e530561df17159b63791f45f2e7c2
MD5 be6a040e97a4f4b7f0c2c2782331a81e
BLAKE2b-256 f78473da18268cecd5169543fed75409d9f4ae2e38d50ccf18ffcbc88b9b61a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7433f6add5fed2d83504c2ab0a88532cbac6a3fe079227219fb417aa9af1a481
MD5 f8019d32f4839da558adc5da7893c555
BLAKE2b-256 734627fed8b5389cff11a4fbb0ea1cd255bbe779fd21f83bcccef58ed91cd9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ece356b68b836a3537a18fc4ddee2ac88968d24d7a29d84eed022714160750ad
MD5 6c43b6a67ae725cd8321a87d654c85ce
BLAKE2b-256 4dc6abb0a976fb3f6a10e4875fb147e8666b0eb9a4d05414b364e1f3720e6c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2164a98aa88164226260e38d863faedddd14b168fc5f1349b9667c2e23c23840
MD5 1ba2004ab1c358c4a025c3f69b84f539
BLAKE2b-256 011cb77e71d2624324035488526233ebda2c7160fefde764bb8fe410b930e96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a153a070f870e2d99c08682253e194db73e57f3e31027e563f46e04309595a89
MD5 99ee67b5177d5aa2e602c85e1f8abd9b
BLAKE2b-256 08b057d5fc5a8d4284f7dae2d5261545cf09566eba052dfcdb92be456634d709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b972346c6ce71963242900eef033592c2cf14a85b1316830923d7bb7cbf92f2
MD5 2c37386d2386407d10278f18be902662
BLAKE2b-256 5f5cb79fd7eeaa9eb72355a9301f8947f169e6cb9280f5f78cf4eb7bdd21faa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d4bd947c5070382a659705f4ddcaf0216456623b41a04db0652b2c700e78fc4
MD5 a387edbb6325c72bf3848124778ae91b
BLAKE2b-256 7aa9994ebd3d90229f0ce695d7ae8b42e8268d8205baa038bee2204624ed349f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 365293ae96484521dd27166ccd382c078ec3fb153d1ec3068eea6ab8a05eacdd
MD5 cc5f7596c0243c5fcdc6c7874354f264
BLAKE2b-256 189f6402193446b309c5d87ba5b0bcf02be1b6f1d847ab68cba76d8d61939548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 010568806f9c7ccd3f866c7daf86220aecc928028bef42ee1bbf1307e7539526
MD5 82ce0a6bea26e11e14d32b23eb76fc36
BLAKE2b-256 522c7e0dedffdb2a4c6db6f389f5f38512106fb89824c81d3f51e254a3b7dfcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 831ce775a7f546c13dbddd1740f1988976b40b9727e89b4cc85eb994bbf03a32
MD5 72e98a78478b55ad3232344e78ba6d58
BLAKE2b-256 1fd37d02d8dd871421d4f81e70786131941a10d5e2ff30357636b1799261ab44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60b5f5574b9e85c6275f982df132556865fe8c2726dec63c0a33dcc4904aa1a7
MD5 8bc7d2dcab3f867aab6511255556e202
BLAKE2b-256 d2fca74ba36c91a400079a7901f50b07ff4a78d7f4a0fb8062287d8474758904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 477ceb59b2ab68a8e3323e4a1086748ea04afa76b816c1f5a211fb09e614a3a8
MD5 1fdd44ba636d5e89fa1eac9dc4f9e872
BLAKE2b-256 7cb829de9c80f4a672f56c06d90d4eb8062b4aacfa2dc8357b154a69cfc88d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e80d24d0df606cae9d435d170f68b89bc55a3064f3088daa32dcdae34c01f37c
MD5 52b53a30a2b8e2f6847d899ede5b77ce
BLAKE2b-256 c7c259ae138096252d723ee3a81c89e076a205a654725af31f7aa3753b71f961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 42cb6e90e2ce6414fc49584407c6152d1f135e397fbaafb031e07153466c0a41
MD5 8641a068b0c52fa3fd5fe7d1aed89228
BLAKE2b-256 02c2f922e8b6d186f39f5d3441d5e97cadc2fe529dce9df1263c61aff10c4ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab33f716e03996312808e89fb57a5e3f281cba3b5fff4677b0e56d67a61bbc44
MD5 3b3b402d20c5ab10c11eff366f2bea6e
BLAKE2b-256 0574000cd0660f4b396d355f26cec462d0b8de2d0af8ebcddb0d05cfef20d6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e5102e1ad6f8fafef499b2d95312cb3cbf093a491c583c21c24c7b7df8528c8
MD5 1417a6528da8beb06eadbfce1981026d
BLAKE2b-256 71e03efbe10db87f9487b0d5e66db226a5a3845373f9ba08f7a3701b51f8ad0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cf029c04cd0c8bac7cdefb404df9f235645745502bc50185fdf2aa1079b23bf
MD5 44b668ffa52fcbfe45e29feade7f27c7
BLAKE2b-256 a3a97894233001de7803e43ec316a2343dfda1924e802a8d33fe89cfc89004ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cf64b35b32a73ee0e47b6fc9e1af97b165ee545cd27834acf6efc83ab76fc29
MD5 ea2f2e50b937557fe66a49c8e49bad0d
BLAKE2b-256 3c891943f1d5b15e0ffe57318a188718229a1523736d13403854655bd07e6f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 261a70d9eb2bcc0e96dca2398b6f86ccc340d7d4b1147ba9b028ce1701972fc1
MD5 66d7a8b0803f47a20a691c85d6f56f27
BLAKE2b-256 fbeea8d8ed43c3012ea3495520721509cd4e5724c841993bdb798667275bb3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d94a9d7b9d5387c0a6ab974d7d2f717978a00af9eb1e744d09e71e246af868f9
MD5 56fa2e06bb66ecf9f4108f984892ac0f
BLAKE2b-256 df6f50ebbc55831b9d289227204a305d70553d68561402ec5bd99bef9c68cb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a0ce04891f73ec7c54a7b463c75d48183118ee8c2cbc42f60525b8ee406e8eb
MD5 b09c320ad4cc8b12f2e8e61b8c72c2fb
BLAKE2b-256 d7590e83d4e6df31d3e51a2f7f2a52fdae1ee6adcd55bb66f6a011e7bc6c1904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 489b226dff165c1acbc5fa2f3d8ca76de8237d90eed7483843a55344a8b38891
MD5 b9add0fc9409d713b1b06ddb132ff068
BLAKE2b-256 35060efa6f83d5f97c283a0d26e7124215b6fe1861baa5c2beafb50bad09d269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1dffcdd49bcc0522a717ebeb11ed236e7f07cd3aa8943c73c5fffbf3f7c85136
MD5 3951fc7b5e05a90ee56e827494ddc775
BLAKE2b-256 e2ae1b2e62a44922c906f1eb246b87565d5fc7a247219c322cb15e0bbadcbcfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5dc2d250abefe11851db321e67a0e61e4e4864e092bea536c676e7ff678bb172
MD5 3024dbd900ee562d9997a830ab464f9f
BLAKE2b-256 f27fd30cf4c58dabc16863c7a2cdba51c617f858104c95bfdda5188d064da395

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.3.5-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.1.0 CPython/3.12.9

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 35a951b5994be26155694cfd24df4f3eb1d1a2b4b2067f031780e283ef345134
MD5 89710fbaf442cd12f23a0c42d63f743a
BLAKE2b-256 f0519c1fec02a3dd071a8b267b93cd07d91f221bd45602b20eadbfd78b13b08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc49f230fa20af516ff5b5da448eb171ba9ef1e9b68f3b5687fcfb1286764485
MD5 995a52cfe245fa1b87d0cefaef10303e
BLAKE2b-256 21a9ec410bfddb35f2075453031f4f3ab86154f46d7f964dc68e99a0a2b63e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 10dfc8c8e411d1710d95bb22b0f4d25b389db7257be9e8ca256bdfa548525744
MD5 df63fd16143b1e76bb507caf03940021
BLAKE2b-256 56b4cc83175754c3515d1d9635326af7d662d240192f19488acbcd85a272a371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc483fb1f648579ada4131e917fa8f524cdbc78d467591187ef015ee516e6df4
MD5 40fb688c09d864091aaa3cce1e0e16a2
BLAKE2b-256 aefbbd1af57c9dee28d67bd490bd3f052104a1b6b71577a139c304edece92bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26979419afbe99b23abcafd52c96eb8810061f1885ba4c73ef1348db2b59384d
MD5 08383ec1b0c58c8df12236275c307bbc
BLAKE2b-256 5dc8d22c3cf1f4d12d10ca7d3a84c57bd21a4d9e1e1a2d266d853ad42cb63b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a948a23fd01e93c5cade690bfb1c52eb29b04b77b5eb3840f66e139f11908082
MD5 73bb47fbe3cbe20da5e930b3e4e9dd8e
BLAKE2b-256 9040b80e6977689cd8f77902d8efe46c681ae9be5868cb333657fc0d49138383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 138010348c1c7632a9fe177b61b2473b2a929bce0ffbf85b11fea663c13e4af3
MD5 66cebd212d149397a22dbf7d48060259
BLAKE2b-256 de49fc985b526224e91b2c357683133fa162b651041233a23244597d792eb35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ace521a14d00e6bd0967f8dcc88801d0720f7faa577074a1027db90ab295f238
MD5 46942b67cc5d4751361e71bccfeaf1af
BLAKE2b-256 db43a69e86bf9e6c4a3b5da48e8ac7c1bc943082d922bdd87c387c52ffeebc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 988ff5d51a439a77c25bb56ef2642ecadf041eca248eaf1b761f487cff6f564a
MD5 91fb2a166ce82f17d18af4b3d979d0c7
BLAKE2b-256 b4efc6be13f6bbaa726a50484513f06b452caf70bd0aa3d7ae9c952c0d22e1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ebd36a992bbf85f18073b9fa12679eb87691ae49a86d1139b85509e757f1594
MD5 40d0e8789751833e788fcdc0615e6e72
BLAKE2b-256 02d6e883eae5a904591e9548a79f4e3a1c11e2bbe92784b597ff6f2722b80243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f06ca872f3736df69a26f20904b9567f657620804f61982de1d1e41f85657db9
MD5 4278f5aaf7191b4030430d8811253db0
BLAKE2b-256 d09929a3615a881abe6d91a70c657fac051a3eeaff3fac2818def6a256733942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdbfa9c0a19e86d63d89401c2aecc1199a903002c2e9033f3649fbec7e0f6d6a
MD5 9630611c9496e41762b8e8009a2a97ba
BLAKE2b-256 cfa118ea4a1d7bccb545f0fd5a30865cad9b3a5036be943c92f555275d23d8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.3.5-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 811debfce013257a6fb89e5abd61a3566b219fd61c957b4a98c1df3700e1a58f
MD5 1ef378e8e16a380f7544da089a254db7
BLAKE2b-256 fdec7009a8b699951eaad4a8ae859d2dfed4fe15ccae6a247180f9b5eb667e37

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