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.4.0.tar.gz (80.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pybit7z-0.4.0-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pybit7z-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pybit7z-0.4.0-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pybit7z-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybit7z-0.4.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.4.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.4.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.4.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.4.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.4.0-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybit7z-0.4.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.4.0.tar.gz.

File metadata

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

File hashes

Hashes for pybit7z-0.4.0.tar.gz
Algorithm Hash digest
SHA256 e30b3a0ec00bcc1e3f17e4bcb9f8cee0fa09875c399797f872722ee5fdcfab46
MD5 3ca27ec19fc5c0255c43372a11065d93
BLAKE2b-256 d0e7a0268c766b8c14f921934c342350a034f7dda46e21bf659fd79ffe55b4c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 859c50bb8e859ce4e3620c3d59b0dc47c03cd35b330da2e62a81eec298d93321
MD5 aae727b884da67277e16b44d8d4a0d98
BLAKE2b-256 b3b07773bbc07c651abeb82c56bdb63f8e7b1120afc0b553c11e640caf184c1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b75880a9b19aa6629b4e7e8ce88b05dc34de28d2ed5a93a784dc86b66433c4d
MD5 44cbe471c0e3bc43d538b312aa5704e9
BLAKE2b-256 d31f50780ff48629af73a42f3c445c7844324bb418c951089507b7efd02cd9d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 311d032b046b25099e12d002ba49e9667d8bb45245cfe1fd2c38731b5dbce343
MD5 5ac40b4b349980059d75c645cb2dddfb
BLAKE2b-256 f3503af4984db38f192356a361b8f7d918e5dbcee56d7e915632d44754e69387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8509bdbc125f4fdcf0df9cd26c46e40909c33b83f328559c6c6fa4918a077280
MD5 fa0d5e03a05613ebc560587e5aca9a44
BLAKE2b-256 cf86fa9f3a399808e2b5b31b71918f96da2ddd5f689ec6c67ebfc78956589a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c871230a4c349f0cda74505e89f3bd1eb6f7a0131e7b060f483ab1a3c4be086c
MD5 91d5e15b10df9a8f1695f36a8f2a18fc
BLAKE2b-256 cacf231e9bf5e8866225ceccd9fa77a3708b925538bf26199244c577de383c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25bb45e547d43ea223bd96a4646d3116658039ac509bc96593497d2a18549d1d
MD5 108ae8e781493a27d3614c4d18d4d7dd
BLAKE2b-256 97021fbfe93ae15397ca6926e3341c8e3a7ec70c76d6896e19d4e34421430eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c09ec267497b8d863c53b77057f8c16bfa383dd9b6743b489dd8bcf294f9aa73
MD5 c6311f9fcc4452fb8d413c8373906134
BLAKE2b-256 627f1d5522a3f188775453427e1fba83a886714bdc66356af44f2784234886d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f056b1009b93a2e45f78c064ba40dee2c89d1f2a8fe46ac5f26892208257801
MD5 26fd2ada950b880836d5bc16fbf3a1ba
BLAKE2b-256 eadbd513934d06952703f51ad8c0cfc5b0efaff734fdbd8b8f3b3afb11cf996d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2069966a26c2fcb924475efb47b8edc7df16a847f2a19e0a14015f52de1700a
MD5 7db0efe904d93f2446b906d61b2fa969
BLAKE2b-256 d0f1ff756b4561dcabc6917b8195d3d5248b2b52488a536c493e32c950f001ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f2756e4d843025658c9e6826f2736f3401129098462eceb908d666134fbb69e
MD5 90458a083cbe18ea8c57492054234559
BLAKE2b-256 743d6b8e35161ddbc3908a89cc54c67f0a5c729dbfa635a5f09898598e79c65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d890f26c7cb1bb3b16d24eea0d965fc14d14fe6cab7716888b2c2761641c9e2
MD5 c35771dbd33779ab6971025454291fa4
BLAKE2b-256 36200589fc77a33a2c7977ddd424dfe800bfce6bcfb9c5baeb7ca5fff7070ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 349fe3baaad4d543ed4ee81daf62a1a119d536f3a9228011b076803c37b02e9a
MD5 5aef63456d1b7efabf3c61cc107aa11e
BLAKE2b-256 3ef95c6467de1bce8e16152c32e9f50efc2a9efe16b280f3051f2d9ee5abb530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af62d88f757312f61621ae8d59d1069b67a8de9ebd24ed88efc07352f760b425
MD5 7c1194abf1573bda5dc18c4cbc68ede7
BLAKE2b-256 62dab1f7f8444acab3ae27592d8ddcd64899c0b967448dc08debade1aac7c539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a4583df856f80b3f51e8a856bfa2d72f9226a1eb7398be803430d388b923e29
MD5 80f2fbd6a26fdb92d2212d4a64023903
BLAKE2b-256 7ebadaf2d3df0a93dca35dbb536ca09129e663d43a0104b5318b236c9337885b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e78d3511b09e2de8407322a93c3cf917d7835c1d95a4b6095b641c76be7d85a8
MD5 fbf05b2eae4133728ef21534857b13ac
BLAKE2b-256 87da976f1dfdaf7dd398fc0d4905a51b1859841fc2a7d8ccf72b980e644a7ee5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5886e451c8bbf447f4078b5107220d2daa41b04d027af6db409dab1f7679a930
MD5 747c98aa7187dae12a6f1c4f38ba68ea
BLAKE2b-256 40d98c1f58f6a55994a87fee3776a5abcdf79aaf8bae31e7444e39cbc12cddee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b8ef027d236c6c470aa3286d35e8c22f1d8d1e8a77de851add2dcb10b627abd2
MD5 4130d7b3dc609fc1e1d8710adfacecbc
BLAKE2b-256 357434e04ba90a3f3e66983350c430b65109dd21c0ecaafae480a82ad7463dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybit7z-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cd597f11dba5f0a8de5718a07521b62ec1f9920452a3f91fc71f4792e3c5d293
MD5 18293d609f4e96f374d15dc1c6f4a4b3
BLAKE2b-256 aaefe44768c03dda63351a52156ca93095fbbc44c3afe356454f1bb36ee1a3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e244c34e49fda5e68872cd5532d65607509ce91c994d497355334642f9504e96
MD5 d482b5444bee4e30235b6b4bb2279a37
BLAKE2b-256 90e68fbf5a4bd1189a6d6e479ae8c043d9c68b9276ed2bae88d4fd77efb42f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e2b571feba342a09e2829e717e1fed76d12239e672fac43cdff4c7be67ec7637
MD5 7f83c1abde624d3a4c7376a031fccd2f
BLAKE2b-256 3ebfcdacebcea778ffc3e13152b220abf2cac6bb316e22dca016f474d97c1361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b302edefcc900ce5f5e8b7eb3dc9b912c57c920dafd7a6060ee4959676a0ea8b
MD5 e4a6d1409ee0208ca97a9bbc020817c4
BLAKE2b-256 ff07810dfebb1523f239cbde99fd4eda4a796ad1708f24b08216606b3f2290ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 481c4674ed32016a5f192c858654604f6cda93c2b128b8126bba35a7175db6c4
MD5 d4e78752af31f76931e6dc20cee8906e
BLAKE2b-256 d4d51b4fb643aab7d5396a10da97a8ff7338fce92924a9e962545e64c173dcf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dc463284ac89c940e9699726f9e44d590d264ad8e5b5dd93d3bdd6300d2a57e
MD5 8e713e0c65d843a28df786b094f5a935
BLAKE2b-256 5729bc2532d834f5b3d82023c55aab813d39be22a2f9e34d48a89a93ed5833dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8b520ff073270cc4df7555679b7b9f2775955f534e32ac27d441ff024f05bf8
MD5 516fd8bf5bae053b0c0401db49116366
BLAKE2b-256 f708d65a6f7a5f27e34f767b49c3e10e8714e69fc081eb49d28435e2a9246093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 373a8f24d52ee7a6e6101d97db36a563249fd44b6d2576cd7b33811c8e0fa083
MD5 72efe1d61a876bfa12ba9015e08ff6de
BLAKE2b-256 97eac58cc454384897440a2b0ef516778363a6ba4c2817fbb0c4cc8326b40a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25cc83dd41ae1416d9ea0e46dfd0b10393346b1aa6e938b68c1098261e8b3227
MD5 7dc3f1e676c6e3f7461a0ebcd970b567
BLAKE2b-256 634f83569a42ce48f0971210a8953f4ca62898161de69cd5b34ae198a1ace42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f320f119d1ee433ae4c7806e61442ba8db33cea2a43be0a9cbf3ee6c8ebb321
MD5 2651d54492e893b7f344ca3d0ea6d654
BLAKE2b-256 2025d3126b86b89a07752703141e07d64cee541752fd381bab3a3ac692f95237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dff559181609a412b7bb428ed3912f16141f669e1fadbecf5fa4afff7d30f97c
MD5 4747b217c69215e23188a0f35ea102c9
BLAKE2b-256 274e2297c6b36a2e0d279db2dd8329f7dce06371547fa8cee5c59ed135fe316d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d36b9c0c62e0ea4ada3740ef49b318829f24c8c6ad75c631cc949c79df0710ad
MD5 c0d06d55891851110bf80b04e804f891
BLAKE2b-256 152a9601b259a38ce403c326ecdcdfe14f3db85a5b6ad0cdb1cd0b3adf871c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c55e8da3d41813375e8f64ca8e8983ff003a85aaadd9b352278e63a1a1e8341
MD5 82f50b827ab8a17db811c8aa1cf9ec9c
BLAKE2b-256 c802d44bf0b5ba3c44bf22ff563112f09d3123d780251b29881a4775676a3792

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 68fb97e74128011850fa578b507b94ef41de13b30cda271f4b04b6b5b36f7f8d
MD5 64e0b57287e8fda494c508a50b251a27
BLAKE2b-256 fe82611307e7e271521441d50fb487a1c38f9ea5b948ae27a87ed06ebb4a13e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cea067ddabd05d0b07a85fd13d30d58515da11e13531b32c7fd19a75ce4588e9
MD5 eaf14ae90ada171cffd012310e07da23
BLAKE2b-256 dab8c847c7188b2c7d51b46d43c54a70b6bc2dff514f074c485b96340cb074fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a55a6cd8d4681be1ac8946502bb6bab85caeed0b3aaf8e9e67cf0eac98b90b4
MD5 e7eedad2ac21adf7865b601cb277e8fa
BLAKE2b-256 ff47895ef81793ac880fb8c5343bd0463129b5400bad03a4561708cb4a61c1a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09dd48031004f50ca6530e64b5400416f22161a15915b94f91a1167ee18dc764
MD5 67ebb65bfd876965d57f84d64d2999cc
BLAKE2b-256 634e9e6a3b79ae1856988930278a5623f70a489858cae400f28fd00fb4153089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8954504e475e1538560cd7f286c67b569b6114ab8531f3e8aa5b01fed9f8f114
MD5 c96203fac4aed0b91a23be15b18ff382
BLAKE2b-256 d36eb0b6e453e9dc581a85b709c41d6b2668be2616e4e487e4d3a0124b602d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 257c7910b8d8149e91f32dff858f6404c368a7fff8025aea5f9388bb7b73e5f0
MD5 766c9fc98a676bd769f44d88e2ac6d6f
BLAKE2b-256 0f25a8bc7fad1f29260700774eae0a9bd83bd8f6aca340a5cdda03c5b6845432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ccf9bfd92febe6a07c43d2edd3b5157ab61d4469640bb57517cbd0c21664c2
MD5 5b66a7cce4120e6c1ac8afdf6dd303a7
BLAKE2b-256 8ec0722a05770d606586be68db2ceb931b63f2d376d875270fa1a6eb7eec2435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a282590c46e499912cb58a8911037b752201d300fc6f61993186328c762168c6
MD5 cff9c6aeb638af70f9bd0c60f32302e9
BLAKE2b-256 5c41b361599e437018b1266c0171d8885a112ad65b1b8cd92a12ba416ece25e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75a35a75dc2f34d7c2d64713896bc770b947af59cfae03d20dd43c6189f9c053
MD5 94a778ec7c3849a4c064f061402e7c57
BLAKE2b-256 0a27284045344a32bef81a14a9401c4df1ff45bc0b627923f9b27c9d20932363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bae721c8f59d489395ef630f009f54b3df61dd3c2bd6383506a1c66978450d76
MD5 20480744a2d20d262cc7176aabf58882
BLAKE2b-256 8da7c407ecd09f300d44aba561796dd9ad7523d703e2ff7bf3b23f0840061b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6edb462ae779cfa36f9acf046d0799031627e727e0120c0dfab534f4448a7c2d
MD5 078d6cf1465c101aabcb14ac3a0a9906
BLAKE2b-256 b92f136fd60c753838dbe70aaa00deee77662d588ce081a19052ae17fb608456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bb02347eef151c0b2b5ca4f1d89184ed098bd76a2ba0bfee73e2792fbf23706
MD5 c1d6d921a28b64ff3333ed01ac4a5009
BLAKE2b-256 03237a8912a23a75626239842c5ee6cd99600f82893a739da8ffb3069cddb0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ea1bdeb896d4160ffbe7815ba2ca11b0de648948f242cdbc6442550593a2cd3
MD5 fd926a96bcee400c815f8329378b752b
BLAKE2b-256 c0899a8510b9e0d31ea4c6511bfa4f9b6e842c6a9a014e7eb538da663fb49252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71ed35bd4a8a6dc533584a5e261fcbd70dd9a9b05f99f029e906d1bb90165811
MD5 190ac954796016860caf3a37776f4904
BLAKE2b-256 63c989ce67df62372fed89a8cd4f0e6fe9ec6a73c0e8be29991930ad0d16c549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2df8d766e311583074a1c702d472b3dbb4201d0bfc323dc9fb60021be5da69e2
MD5 821908577510eca93fe0b8fe2c074bec
BLAKE2b-256 e4cb2a68d02d36e5b128258cc166f37dac631b04642d35f1c1ae9e908aefcaf5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 114ed333c51132fd9a0aa2db8b3abcf6f8aeba09ec33ee4bc2824f6e5ce3b167
MD5 6726676d723899ade3205239c740e254
BLAKE2b-256 54989bb1afa749f725ba13fc7638935d4f399c0af6cbc6ea940795e31df9aac0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44060161dfd8da888f1c77327e870b1befd562a702537928cd1130066bc8d02b
MD5 b5ac3e9899383e96bbbfc8fbe0b7576c
BLAKE2b-256 96ae12f4823646cefb3f4dae2226764b157859f1a5cdb334b2f7ecfd001072a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3432fa7e3865dd2b08e5a5c16bbf079d2cc57504f7b7781b0fd37214caeb4e6
MD5 2b982e1e28170d4e88299c817aa8c511
BLAKE2b-256 e9330718e0fd5602cabc50e3cd89f0d99dc7acb33b7bc83265e97bdc3cf19d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4d8e252a19396b0571e6813719132b64fdf2b845fd48211c5388887e06fdccb
MD5 7a42c0e657696c49b524181f95e3cac1
BLAKE2b-256 508468aebeef1b2797f79baa88f11cdb7161cc151ccd5dece3f4dffc5ba1074f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4f74c507afb90dd63c3871fdabcea50c53007c3dd80173cb14136c2b13f69928
MD5 cd55968bf62e160977c1fe299f415c0e
BLAKE2b-256 4e6adb4b2240bb752462d25c364eba3904256f557bcfedabffc0f7d222a96950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ae7c6e2f5106b24e83b48c49343d6736fa687151c4839ae155a5efc741dedd55
MD5 c883b218b652560ae448ecfb4dc1f7eb
BLAKE2b-256 f8d5c2b8698af2f393dcc20e4ec04e5fb961bed556a46a24de4c8bdd24924ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9dfb33ef6120d65641e7086f4e0cc9887606b270024b8c9df4e6d6d59780114d
MD5 5734ed245da3079b063239ae06c8b773
BLAKE2b-256 101d121c5b5b043fd97e967566c44638e925b9787ee916dcfaaa8c0d89f63992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f26ff02da8488f08c8b2b872f6af0991c0903bf7a19b2275d54b7a43807fb7fa
MD5 e6095c0a483c49bbfa20e62d5af299b0
BLAKE2b-256 6b17d1b278f2fa7fa9a1bb795967049c666f8a2052ba8610de3fa408fa889208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d6bcb430ed06a52a278c3f69ec9929963cbef1057d5586e0283aeac25af9af7
MD5 8b08fa24cdd51c42c3e93108c914ba6c
BLAKE2b-256 bb7b2357771732e3a556e85104db57745bf0626f6155e8fda7c2507b441ee5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 607b9294b88a8c12ce9822164e4d3568f7553f3a8c041fe1a1459c754cfd7337
MD5 6187853699cb690efa54212eed1aca37
BLAKE2b-256 34dbd30fe91e73aec1eb4bdc051c7e5df6ff12bcdb1e947aa3f415247958861c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8325cea23f40e3660475e70bb8027c175b7b9a9d82edd27ef2a00b9b7c89c0f7
MD5 80dc71006592b9352ecbba6c742cbce8
BLAKE2b-256 a4e397875559fcc0d983260ca4036b5e3a6085358a169d5ec36ff99c75453a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4195a6b4459cfb3eaecb70d1efb0b73c828bfcaa9036b379e2e780fa3fe66d3
MD5 fe378e189acb5f0feb1365f97065289b
BLAKE2b-256 46907d6de5c5e0a4ec72a7c2b27e4dcb8f0e1367286817cb1befdd86a7b092a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8135bba1cfc3b034cb0b705b09e9e8a9792079eaa720b3451776fe4b39552c6a
MD5 52db11b3680df87f96aaec669516b6a6
BLAKE2b-256 f731ceda9687f7db979a9923662f04a7eb295769505462e78b37cf15bce134f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3a4dece3cc87b8c2a81bf51b643a6a08e35beb0ae6e3fab4458b2ba5819ef61
MD5 0c2c6a5614e794b6be23a0acd0c9e5ac
BLAKE2b-256 af9458d726383532389624f99a38371cf52fb8b59f2f99b1127735be560fe41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e364fbbcffca5bfcda6a7ea21d4e6f7808c6b2e38767f882b2399b2851407da
MD5 c14f157e0f0b38ad044b40179b6363af
BLAKE2b-256 40fd5353b38fab16badd9216716c30168b75c53c356ef6429166c1809b4af98e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6bf093638b17581a172c2d58aee63cb1148678f461ac1a1995226d4bc7896bbd
MD5 888421266bae0a4e4bda9dc59297bc12
BLAKE2b-256 503a1b98477bef8ee9b7863370d21e081c9ab051e8063c8b359e3cccd8bfc879

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 140c9dfc8350799652138a07e70544e29217e4e407b0779cff2fedae04f49fcb
MD5 a6f41c43793e80aadcc03d3077e7b30f
BLAKE2b-256 3e328442ed08d21cc377779504f5aaade1673b43e0f96828c65142afbd4345ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4141090746509d189c40960d10d1e508322223f75ad9f43428c2c520fdd7d244
MD5 870307313c947bd24b26662009336dc4
BLAKE2b-256 3a1dd57885d2049c378dddd4e00b57eabd442c40e5d238d94263718132736368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43874c565da03b933c5b115873df5b19d07090325086857a3e0b6ba05bd9ea15
MD5 72fe8f7f2a0bc6001f7b947d9b83ba97
BLAKE2b-256 aeafcb44d9025dd6674331c60c96c94733de2573c89bf7ecc1214b93dcd9ec22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45c0493fdd07479063cbaed4c9ccc9d218dd16053cbb653b99e2dd6c05b21a80
MD5 9458e2f8a2d26431424edd9ed5643f35
BLAKE2b-256 09a6220465d49ed7dc41b7fa02e0708670c3b0dc42109e13b2d78ffbb85ccafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2f57969fa582eddf56c054bd7b158540eeb3bd9684d296bb0ce2f35209557f1
MD5 f95bb298f0117fff26b9ce11a19b9af4
BLAKE2b-256 a09736e16353c8f3bfb47de97967179fa3b10d5299b4bbce291dbba862fe4bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f6a616ed3b381d159eb33f353e1dd62631324dd14d63d335bdb4afa3875897a
MD5 632297bab44cd3e2fe678bc1535a8e9a
BLAKE2b-256 94bbd9aa836bf384eab85697b92053beae4fed5495a89f177b71faf25b7e2f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a73dd91082e6839152e8285d9ccfb81d903656596c8b648775ea07efb2a9f03f
MD5 0e4d2a265f12b12e6208e3fac5dd7bc6
BLAKE2b-256 47bcb065605794efa90dd85129c5fc602f630d149986844755c5f77833a8fc08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b33b3a7aaaad3fafe6e5483b6d67f844d9d92998af78efbe96fdae26043f05e
MD5 6bd1c2d2326c5fbdcdcb6f5c2bb898c8
BLAKE2b-256 f5a8b1a8033308788bfa4aa9541874a591f279fd3ce21fcda34499b84db4014d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6eff092a2ccda819221d140615f5fa0dfbd2875e4611774ec2c880c70c4d5754
MD5 536b12076f89ffe365ba7a022d145ad5
BLAKE2b-256 7aba2624a72668ad1f2ade3a5657ec2153d0f78529109a8ec01c319d4058e228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 102f684ad483aedf56fec3bf209bdf759e1af01d9032f80ab422c59198b06275
MD5 8d313ece2a3fa1048d3ae20d3bd9000e
BLAKE2b-256 735515a2b9f5a8845b169809007ee6a3951035a09cf563d2301a6d40c84b5d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e212af8deaed376479eea0dac518e08d28ce535afbf0cfcd870f86f29220a73
MD5 e7381662eae27239235b520bbdb9502e
BLAKE2b-256 288e1da60cbceb349ea0036ac41c56794251d0200798192d4d8ff4412658c0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 709f2c5f0e247d14f34857cfc4a7e38ca202f71a0c4dacb0189299ac2479d5d3
MD5 afffdccbd4e4d6d74a4d2e9e2e576bfa
BLAKE2b-256 5eaa56a920ccdcc53d5c524315f7733f56c7bab5474026df94c4a3e50b10a3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda4f708c6648a462dfd56d9f108b36a4b52047016b9faaf6ed5e77e80813a91
MD5 86bd661e56121a4096277b2778c820c2
BLAKE2b-256 bc528b03f3c5b3e0ab8f09fa1d488d12fa29eefcfe307bb3ecefafcf4ee1920f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 99100dd28c8b2fb54c5eb0a5b8444ffc90104367e2190c8a38f479f3dc7512d5
MD5 e33c2e36d4ec027389b2a55083c0daf2
BLAKE2b-256 6a8280d5c138737846122595e92830fb7276f2cfe4a8ded64f1f97b5825d8464

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 662cf50a3e1cacc468686df97fb155b8baf317c37af6e81c31ba5d8104d77cd1
MD5 d4c42cbddbfd7a6145ecfb36c3e2e8d5
BLAKE2b-256 40a62d57072e664c56b154ddca4ce10cca75003a9b81a3946d609b337b23d2f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 31de2de839738df707937e9ee5825b9d682444108ac46e2661fa075b83aaf093
MD5 4b3309a033d61278bf640c312441e9fe
BLAKE2b-256 0189a1679ea2885b158442b3463161066314b8bfb16bb2debd160bdf4404e6c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fce7dcfda804392c88582938d28fd71078776552ebf318b75be70c933757c487
MD5 54fe0d9688c9d082957170072fcd2bb4
BLAKE2b-256 2f4fd1994e8d0cc66bfa0cfd7f0bde40a841180c5901decd2dc4cb2f697b760e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 181987f95bc378c8e692d399c47437a8734cd5fb58b491fa106c10e4a8dd0936
MD5 2606bfdd01836cdfe1d82be023abc838
BLAKE2b-256 8f955964802dcbc9110293a7c833366db31bcb51645ca665f7d128440c231d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e8d8b8b143945b72add3d2a6790703b84afe7d450dcbe05a793630cf5f1722ed
MD5 d1ff632eee218f0b52499bb9394d7b33
BLAKE2b-256 3c675bd673384c906fa644ab84b2b69de2e0986250fa281fd11abc777f0aa18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fde3ac60cdf31ebe5b09a390be02f4ca259defef5370ee35d6bbfc78123b9ed6
MD5 c287956c8ceee093cd452170c91b9aa2
BLAKE2b-256 0c58e6049f005f73cc926f9ff8996f4d8ad83887ff9b7c60b5c0c57501d94dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 923a87530d73521d31006b8bdf16d0608ae39737ef670c8aea9266bf4d9c4c4b
MD5 5913af90c45a0f33b18c80bb2d9b264f
BLAKE2b-256 bee84a5b9147a46011e51131fd9d02c3215fb872f7636db04de9022c8125fe8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14f7a989187a29bad486834c06c12bde21a532ffe5daf7c8701c9bcfbe3ce326
MD5 0c13a0410574b7acdd75cda58cb0e4a7
BLAKE2b-256 9e8dade14972ed3ae22666c0f59ebee16eef2e89f245f62fe83f91773fdcd74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26de4d7e56a85d823dac4db5dc8812cd0dfd52abea03a5fcfd311c0aa2efcd93
MD5 d75c90e929b3599493eb6c9957302a89
BLAKE2b-256 e54b2e7848712c895e3b0e7eade6721b132ec44ef074157c6bf1f5b1efbd4960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 242048a92dc47a2b2cfcb6de3d5e915604b26b6df57da32a8447ee8e4feed18b
MD5 0bca7811aa84c9abb04690281b9455f6
BLAKE2b-256 6f34cad6d22675b7c68781b152ba60c130bc16943c88b0f0425522ba4a4d1fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1f01a4300ace604e9dad61d4e8cebdd0ff5dbc3f32bfe4148115cbaed6dd45b
MD5 50e58654698a3143619b1d809296f2ae
BLAKE2b-256 a8778168c94b1283f3ae809ac0090b46a69e1eacfba35a681e8ca30b0bff8bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2405273930866a0fae7c13e5ed8a44426ba630c9806d0621a09b31cda452ce0
MD5 0b7328089e1c306e08632f64c1fe70c9
BLAKE2b-256 c2096ddfac2d516f25a9b18249c9b1c3a01a133816620d5de43b33215243a8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c55014ec8497862e9453d6536b339e4115a4c08a9d1eff79f2856c9d9343ae3
MD5 747053126b95a44b1e213adfab871da5
BLAKE2b-256 9c2fc0982381100e34f398818db95e1e32ee2d52c63cd6306875cab5a131ad91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybit7z-0.4.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb505dd8c87a3fd33f1f2fb77b7e8de8bd6769394ffad0944fe610c674d9d105
MD5 fe8d868877634ac7d13af2b4636748b4
BLAKE2b-256 14c19763717616f65d88cec7d8bdc6344158fc6aed8fc1b9b72b41a3b2a374bc

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