Skip to main content

binary diff and patch using the BSDIFF4-format

Project description

The code is mostly derived from cx_bsdiff (written by Anthony Tuininga, http://cx-bsdiff.sourceforge.net/). The cx_bsdiff code in turn was derived from bsdiff, the standalone utility produced for BSD which can be found at http://www.daemonology.net/bsdiff. In addition to the two functions (diff and patch) cx_bsdiff provides, this package includes:

  • an interface to the BSDIFF4-format

  • command line interfaces: bsdiff4 and bspatch4

  • tests

The bsdiff4 package defines the following high level functions:

diff(src_bytes, dst_bytes) -> bytes

Return a BSDIFF4-format patch (from src_bytes to dst_bytes) as bytes.

patch(src_bytes, patch_bytes) -> bytes

Apply the BSDIFF4-format patch_bytes to src_bytes and return the bytes.

file_diff(src_path, dst_path, patch_path)

Write a BSDIFF4-format patch (from the file src_path to the file dst_path) to the file patch_path.

file_patch(src_path, dst_path, patch_path)

Apply the BSDIFF4-format file patch_path to the file src_path and write the result to the file dst_path.

file_patch_inplace(path, patch_path)

Apply the BSDIFF4-format file patch_path to the file path in place.

Example:

>>> import bsdiff4
>>> a = 100000 * b'a'
>>> b = bytearray(a)
>>> b[100:106] = b' diff '
>>> p = bsdiff4.diff(a, bytes(b))
>>> len(p)
154
>>> bsdiff4.patch(a, p) == b
True

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

bsdiff4-1.2.5.tar.gz (13.2 kB view details)

Uploaded Source

Built Distributions

bsdiff4-1.2.5-pp310-pypy310_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPy Windows x86-64

bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (16.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

bsdiff4-1.2.5-pp39-pypy39_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPy Windows x86-64

bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (16.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

bsdiff4-1.2.5-pp38-pypy38_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPy Windows x86-64

bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (15.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

bsdiff4-1.2.5-pp37-pypy37_pp73-win_amd64.whl (19.0 kB view details)

Uploaded PyPy Windows x86-64

bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (17.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (17.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (15.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

bsdiff4-1.2.5-cp313-cp313-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

bsdiff4-1.2.5-cp313-cp313-win32.whl (17.9 kB view details)

Uploaded CPython 3.13 Windows x86

bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_s390x.whl (35.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_ppc64le.whl (35.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_i686.whl (37.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (33.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (33.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (35.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (35.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp313-cp313-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp313-cp313-macosx_10_13_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

bsdiff4-1.2.5-cp313-cp313-macosx_10_13_universal2.whl (23.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp312-cp312-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

bsdiff4-1.2.5-cp312-cp312-win32.whl (17.9 kB view details)

Uploaded CPython 3.12 Windows x86

bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_s390x.whl (35.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_ppc64le.whl (35.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_i686.whl (37.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (33.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (35.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (35.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp312-cp312-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp312-cp312-macosx_10_13_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

bsdiff4-1.2.5-cp312-cp312-macosx_10_13_universal2.whl (23.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp311-cp311-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

bsdiff4-1.2.5-cp311-cp311-win32.whl (17.8 kB view details)

Uploaded CPython 3.11 Windows x86

bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (33.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_s390x.whl (35.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_ppc64le.whl (35.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_i686.whl (37.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (33.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (35.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (35.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp311-cp311-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp311-cp311-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

bsdiff4-1.2.5-cp311-cp311-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp310-cp310-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

bsdiff4-1.2.5-cp310-cp310-win32.whl (17.8 kB view details)

Uploaded CPython 3.10 Windows x86

bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (31.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_s390x.whl (33.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_i686.whl (35.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (32.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (32.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp310-cp310-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp310-cp310-macosx_10_9_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

bsdiff4-1.2.5-cp310-cp310-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp39-cp39-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

bsdiff4-1.2.5-cp39-cp39-win32.whl (17.8 kB view details)

Uploaded CPython 3.9 Windows x86

bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_s390x.whl (33.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_ppc64le.whl (34.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_i686.whl (35.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (31.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp39-cp39-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp39-cp39-macosx_10_9_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

bsdiff4-1.2.5-cp39-cp39-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp38-cp38-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

bsdiff4-1.2.5-cp38-cp38-win32.whl (17.8 kB view details)

Uploaded CPython 3.8 Windows x86

bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (31.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_s390x.whl (33.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_i686.whl (35.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (32.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (34.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp38-cp38-macosx_11_0_arm64.whl (16.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

bsdiff4-1.2.5-cp38-cp38-macosx_10_9_x86_64.whl (16.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

bsdiff4-1.2.5-cp38-cp38-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

bsdiff4-1.2.5-cp37-cp37m-win32.whl (17.8 kB view details)

Uploaded CPython 3.7m Windows x86

bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_x86_64.whl (31.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_s390x.whl (34.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_ppc64le.whl (34.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_i686.whl (36.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_aarch64.whl (32.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (33.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (34.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (35.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl (16.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

bsdiff4-1.2.5-cp36-cp36m-win32.whl (17.8 kB view details)

Uploaded CPython 3.6m Windows x86

bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_s390x.whl (33.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ s390x

bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_ppc64le.whl (33.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ppc64le

bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_i686.whl (35.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_aarch64.whl (31.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (31.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (33.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

bsdiff4-1.2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bsdiff4-1.2.5-cp36-cp36m-macosx_10_9_x86_64.whl (16.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file bsdiff4-1.2.5.tar.gz.

File metadata

  • Download URL: bsdiff4-1.2.5.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5.tar.gz
Algorithm Hash digest
SHA256 cdd83f820ecb8f1ef67a4e5f0b152c61d327caf7abf35aa9a763413915b21368
MD5 6fae66687d99305e2bf15887c9f80cf9
BLAKE2b-256 4349262497fc308aa998d7431130cb8526b16aa43f2cca500d0182fb68689d99

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf8242f77b37118543ab21d8b67bcf97714606b924fc1cb25cff0112c4a60c1a
MD5 b1421e93cbee5c8ccc1f585605f2eea5
BLAKE2b-256 bc74eda685ed1d48579e36d99580388e6221fd1cda210fd9fce1059c103e3e70

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fc138c088e78021eca3c45e40fc305adf10101ea366bd36e708f14acf8f68c3
MD5 35a8b04a3548e63e4b63d4aee57ebefb
BLAKE2b-256 e9f21c82c714f72a426ed0c38c1a42b8add05cb63593c46a672aafbc0b26b4f7

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13a4b255b20dfbd4d4b11d55583b8d047fdc9cb1f9596028ecd7929356c7c25a
MD5 d5eb0a68a98e0fabbcefa9018c8191e5
BLAKE2b-256 26a6d97e341a33f67ef8283d0fdc108957d5e5bc0dc59125d0a8d1f35a87f5cb

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e05855666e8a8365f546b582b0ad13bcd64962ca820318608aa4b235e417f9a6
MD5 e27974293d19a93bd683755515347758
BLAKE2b-256 17057a4a260d6f1f011508ae163a34452d8294098705a03366df658815a99b8b

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 171e422a5f9bc8f70ae455ba18046c7ac48d669603e9b5c935b4c6f8e484d766
MD5 f2ae45a94377b11057a9d1ad9508c6cd
BLAKE2b-256 b86cb1b07e7c0c1765780eadae77233619a29555132c269bc92b7cf007d8314d

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0cfe96024314545d70502dcc4db8ba7d88123ecc9858e9fa68369a9451303a31
MD5 c98febf1265544299d320a2863d53b53
BLAKE2b-256 905fe410762d32fa8c11d36d6b213aa9c35a964ee46b461dd85cfc0ebd1b1411

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11b2bdd4658d2690bbb4c68406b9d7df0dee12bf64f7509fbee8603d5dc47802
MD5 99548c70df3cdff5b52b7cf866b0b814
BLAKE2b-256 c7611e7405911e9d3bc519757f84a0710cb0b03c746a3154e94a4988b9306989

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cdfb8988171237ccf99bbe951755119fd2174817ab47e8bf89de370efcdd70a
MD5 6bfec585a9cc01fb41f8499d365d4165
BLAKE2b-256 ebb0f284ff54d93df659972cea449b1aa1bc0429ffee604d0b91c7f7e23aeae7

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b863c8a36cda52e9529c88bdbd8cd12187e277c56f65595801af8c1bb2e01fd
MD5 893098c6b04156b906715d8b61661dc6
BLAKE2b-256 e7ce666a0cd34da7e5198a00e2f406fd2311b2ceb2bd73c13f4f20945b970127

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a904425b517adf07e8b94f4de2f2dbae3b6a19d7d0da15e2c7a072be2e85274d
MD5 d48b9c8607e490a6fdd5296cd4c5c3ee
BLAKE2b-256 7f0ce25c098f54cabbb359cd52a2faa1ee393b8e8f0edf76bdad95f594601951

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 119bc05db163842102af32abc095ca7e8223e826a5e16d70c46b7e700fcd3a3f
MD5 66d92e8c71da4ec657add0193e979e8f
BLAKE2b-256 3b6ff2aae3ce7d7a1b49d2690c215f71b393bf117f061abd70f273e9c8f4c009

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a86e3493cabf9d217c48a041b6c0859cdea953d391b385f7128569836ecaa0bc
MD5 c135a4c061890f83cd8a8cebb21adc25
BLAKE2b-256 add195c74ba209162641faed8a6055aa137a9463ec73cc1ecb88f371af582484

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86d4c3db24395b61fec82d9e6e0cf38414850f81513c62036d9379b538bfab29
MD5 c2fb7a3d00fb17c005b1987236b03c5a
BLAKE2b-256 60255b80e00c015736ee0c3c6bfffc133bf930ca8cda577a71a9d07039b930aa

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c09fe4c33012db681da53c41246041f250aea6787e710666de99653ca43e5af
MD5 136d0b4fa76da3ac17dc50d86cd427b5
BLAKE2b-256 ea11f3b744d45e0f51744b8780d9fa54e38e30e3507621ed6df0cb15d08cdc41

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64caae49da5826b29d4c5e475176cd7f5186a89d910c264304e5796ea1a1b587
MD5 af6f972ac4a7388f991ceb230a77f875
BLAKE2b-256 444b0438428828e320d8ef91c7e3790139a3b98b53b501183e0126350e8510d2

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 781f95d2666279e26d7ea2a9ec1e6fa7355c082f043ce26ca51d80af964b22c8
MD5 7431be45c7ea5e03c294b0d0217a5951
BLAKE2b-256 e2c9877ecd42cf42dbc38e41da6c337525dae80e99b8c60e9761266b81b7a1e0

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4bdace959df85a0f5537a28b0bd62f8c77d305b17b20aa76f1d79d7036c05a0
MD5 eaf980a294acd7a08859bef2b6d36d70
BLAKE2b-256 0cf79ca0c10248a911c97a58b69bc03bd1c498c049b60f96920c1953dc5c9f04

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da464b0f9e253bacddf16b2d4fe708f5c860c74aa0505b47958bf8a9b380822e
MD5 2364cc9fd3f3ca4f9c1a559f072f0d2c
BLAKE2b-256 d5f1e1d081949757b261dc4456a8fea33423447f71eb420783e21f4e29e79d56

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc732641d933f68896a6ba9b988d042b5acdee8bde1efebaca1182b1e43b6631
MD5 c837fb7815c844f7de07140002d97724
BLAKE2b-256 45e768e83594c1069703a3fd54bbd6a410d1075629d630ea762b05100b196474

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88d1bce0c5e4054552a8d75cb4be70b185c5d21ed8a757bbf8588c4aab325183
MD5 ae192cb07d085a0a82765623fe758300
BLAKE2b-256 95e456b904455186edeb48f5b747143cbe5f6efa0420150885b52962c45f72ca

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 356be3b347e30d55d794cc69ff230de0ae57bb4c331010e48065cf93b42cfd88
MD5 01da92b4aebbf56ae89cb6be24fb9419
BLAKE2b-256 be44577794e9ce712bcd99f86963cea9e808143e01eb08cc22a6c00a3f6a5b5a

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9bbecd8d81b922346dd2d40600f093b19d22ad2b3e917d806175f642662dc092
MD5 54020a001e95cc25a8f091443569de84
BLAKE2b-256 dc50f65e472d90d63109be0cc29db78b3acef5a603da62f85cd4c93d6318673b

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e4dcbac1305261fa0e11223d4d7c7798a6e59f08957018a210ed5843dec159b
MD5 ddf0d2546bdd737c9d2467970c355be2
BLAKE2b-256 cf5331afc9a4b723f28653c83d9c27dfc8044c864f9f0e761c85abbd2e818675

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ff3006428be553bb897001b88921439a8b6da138c59be789b1278c54ad3629db
MD5 8acf62c214b317998c657d375d8123c8
BLAKE2b-256 818bd296150ab3e4745ce37a7f99b13551d6329ea31ab937d3913272f324d1a2

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d143f8c0ba3b5cd9d194615a9181ee2da277bc83233d5dc3c03d0229169dca69
MD5 f04bf20d10ae22917b63cecfcc964afa
BLAKE2b-256 59e7c7d5aaf2f864400f3253ba41d673aa538a95da00940dc4ce344816e6ade5

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a27d37b0dd82ea6abdbd02e6f03ebbe359670a8c5e3832d9c3e6b88080f072b7
MD5 2b7ce4dfffc7e7707dd51fbfe6117627
BLAKE2b-256 16df21781ae8aa18c950141391efded6877ef299ac3d71244aa0d34b2a346b6e

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db48ac3f3c68c36dd6d5f66aa107029620a4fc2e0388f9daf7eed3920954ecbf
MD5 41954dbc3dcf89ca776590e01547ba15
BLAKE2b-256 9f9ece246fe3f68f00a694792766ccfe115c5b4e73280a3b1e7f85437c3981f6

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33431aa6649af3dfd230338073d9a0c72983bde94aade6b7eb7bfe431d86afa4
MD5 6b86a8ad77476a002fcce9f0523624c3
BLAKE2b-256 755f4e67e05d4c29483328387b7c074e600df54fa11b1f7ea1074a398d1b1593

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57f93cf9809de800f1be2960613c1ca30005700a4bdf23fdc5c96e37c28fb0dd
MD5 fd59af1c3bca128f947c617da4f511ea
BLAKE2b-256 dc6c2812c757c407b636c769514f9dcb2ec2b2c00aee7c244b4f057f4b3cb409

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc70a0177065c9e36694abca5900f0d609ed370809f14ecf8656395a296b34b6
MD5 ebcceb8917f6b7f27384b117ebcef4dd
BLAKE2b-256 8c4d86bedac3f89055c8ca9ba2810e69113bf01f7a9664cac6eb4ae466fa69a6

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 486fb51f07db3fd859e84e10ff1c06eb9e28e7a55c32775bde629d3380d13d2c
MD5 1a319b9a447a1ade4abab23c0fd57ef9
BLAKE2b-256 5ec346764448ced1dab54ed31062d76748614803685185b72a4f92c4737152c6

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6893743ef5fe4fddd084f95c7e2ad6b92c0ca8a9bd0fa8e708c6d51b741e0d8e
MD5 616b3ab87b00f9ad7766e7705c26a696
BLAKE2b-256 fe420943480296bc57b2af2385fbf56c955e8ee2477d24fdd683ff6fa48cba55

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74f77430c429165819cbdf784c129d98c02e2afbfb75d71967d11f24db2975fd
MD5 b67afe06dd6f0a68c9a20f01db9615f7
BLAKE2b-256 a08f6f0f729c8473766d0c0f82b1b026928caf961eecce91431b6a6bde86be61

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b3042e621ffa51a513f3caae9b4747c7310b9ceab2b63984817b4572901e7052
MD5 1504503d1f4523cf877afaf81f44f93b
BLAKE2b-256 73551af294c1d66bf71a5be24a711db26ebb5b18685e020c7a730b5579929c14

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5329c8464541bad8763d470d5a2299f8861a73b98ef24cd9d91cfcf57f27d07c
MD5 9b0e8dc153c020826ea580d6c993563e
BLAKE2b-256 8cd975cfc4eb6d0aeef4d5bb1bab7e77c4ece314e5a17afd3d0ed50f223020a4

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09b71891e6dcc69bd01bad8c0a9efa00892f7c2ed30691ca446516720fca627e
MD5 6028a8dc14630ab482df9ca008b0b8c6
BLAKE2b-256 069534b5c33b81f4e448eaf390b76179dd14eaace01279d464cdff67d92eb532

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 17.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb3c53590c6d9f4d7a25d54d8faadffc61c1e936d6e8e78fe7c166c6380ae990
MD5 a1da76662d045533d9211c58d0f2caf4
BLAKE2b-256 e52c81786a602b12b4b442c3a4ab21a0c17ab6c8d9b76faa74c914a332e0752f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23ec1eb3a03f14590c08a63155270603b1c0e29232dd56477b35c0849da48729
MD5 a7b51537c11e457efcc37ad7d6e38665
BLAKE2b-256 7ed18b5bd563fef552e40561f89f77cfd5dabd623500d0d801aebd641d54db81

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d1f306fcbeb34a653a8d4523e21c2334c383e78a6b1ef41def3f4ee69ea38b87
MD5 db88beff0482a7fae29392d9b2a9b8bf
BLAKE2b-256 9710ff43a2291708edb2b5b5dcd194992c6f5966f721fde4a6ca339314a6e264

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7ada17d3add30997db8c54a9ccb7ab6fe04a08f50701374e74d0cc4114b3d2d5
MD5 1c62541e264117ce54a4a3a44f51e7b2
BLAKE2b-256 e10a0e7d2145d1d110b767d559843ebf36df838cd9c700aced3927b3da58c641

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d159dcf662eddd80e31e9cae08ff3720e320705f220b7918ee47d120664f1413
MD5 d980e8e17a3220efc55787f221faef4e
BLAKE2b-256 d6657bea1dfe3ee619ceaaf5ea84075b544b4342db73be33be6aa620df800679

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dab9ca726686358c7cab958a04834b3f9e27e92461fa03adf1db79472d403767
MD5 8a040ee74a76bd07975d49729f78e8fd
BLAKE2b-256 20a48e250d74c00311b636ef3514a41d0bf9d0456bb4bcc0f076dc6007fa328f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db3d926508b6aad3d79a7c35e90c6c7b8ee38cecba659c15a970f03ebe9ee04f
MD5 82a927d389fd84edd1fcbd5347c9df18
BLAKE2b-256 57f63c8678505d4b9b2b4827bc2854d574bd29839e316e644dec4e4597f4b309

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0a5b3839513fd5099e8b231e5851ec39940378791961c323c92b1b34c82ae79
MD5 6ab849c8d40974ff4be7db77f7cbe786
BLAKE2b-256 574143faa4fe26f8916db71420b31fe2edec044069cad89ce911480ef89e3fca

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 553dea742d3310f9b12d0c1fd015405a10984a68b0f673cd034644e3b0c1e61e
MD5 ee4d1ccf2057f7d443c020dab60c595a
BLAKE2b-256 9c34e20aff8a4bdcfeb8d34ff3d31ca22762e92e061930da334d406eba05541c

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51ca7ae15d2d8fe1b3e49673dd6cfdb2c6c7bbdb4b260b4eb17177dabd4fbb68
MD5 d759b14635206ced4f59623f7e321812
BLAKE2b-256 7d5880dbbb7ec94e541f8f53ec30e4c45ae485b6d29f94004bb03ba71a5eaff4

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea49b033ce6e863d668fe7a73c6525ce6d1526a412321e5c6a886280211d395c
MD5 d991402034ca09f10d9eabcc087dea03
BLAKE2b-256 11d4ee038abb8659d168e61972f8054f56aae4211d981cd08ccacca9cac55286

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4044c41dc1b0097e54aac5768c46491136d92cb9eb14c3c000d890339598b734
MD5 19bfeea0534e5f2f9fcb6351f4b044ec
BLAKE2b-256 d0f2f229d1383c12b62d7c132700ebade7ee8e0bb1b873ea25a6dbf9bbccb708

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d56d0e120270ca6c346b8f1f89f7d7b5d3fad4b150992d56309577426b42e5f
MD5 939ccaad4934fcef590ae2d61d7280c5
BLAKE2b-256 83a0458d07d82e02ed6ddda4386e83a57a0166e99a9ac9cb0d6b2a7344e26f97

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 39d04bc5a4c069d4ac2bd036843e2e4f81390ee7ec41699b5e54ccf01142c607
MD5 e527bd94cbf23c5edec64fc94bfc3020
BLAKE2b-256 dded6baddf240a4087ee27d751b80638b44c3dff0198092896fa5ae23fd588a1

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 558017a5edf90760f77a3f662e38cbf220cce51971c49269ca4335e4fd7a33d1
MD5 d08beeea557cb079b104af9afd966268
BLAKE2b-256 6c93deb365af18ef8c593b84204b0c89c184e71e5fb79c17a80dc2a573559fbd

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90cee803fad4d0672dff2af558a5ed7ca30858462bcf03f617be455e9517d7e1
MD5 10fddd6b5429ec968de189c52129d7c8
BLAKE2b-256 584e0c9f97223e92ca25da9e55b64c29870be06391a45ed26cde452f237dea51

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e05bbba2d6a442b1af106b23fd46f48e4238d935579cfc1095bc0740d75396f
MD5 da203c9c114e3faa032140fd1cc65021
BLAKE2b-256 604d8d52bae964829673363fe604b50f91575fc493055cc6d8c774a1951339d3

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bd4e7e02774175a3306f03d67ad0882816ef35ed0c8cb40e657cc974c0409f2b
MD5 b2b45dd17dd8556e366efbae0c7517e6
BLAKE2b-256 649989459ef9c8b2628d473866c60545291a488b4726e9e3764cea45f7a4443f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f9f8d5d95a10eb2dd914075e219260085601f2d8584b788b759997124b758e5
MD5 41bfbaade9302a1c27962bdf632cf6a5
BLAKE2b-256 b07fbffd3f7d1cb0cda69dca5063c8cad284609edf1e2149c09c1485ae97a31e

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6cb13d2cf148bc2074fc01047608fcca4057c96df285ffc3b6bfe1c3c147c932
MD5 98a90beb2128e063de500ca644ecf250
BLAKE2b-256 939ca4dbf618bb7cc66655a2cea9e54dcf743d60f98e79e5716f6fbc474100e1

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 517bac79163c633b8a2408412f7505b3b7484f492c1f0c40b175d0f1b8760d0c
MD5 62f3dd7e9f4b82bd80491c7817fbba09
BLAKE2b-256 2d459bd07d703a76bbf69a637f588079d7d111aca0f14d56317e0d219894f708

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba0bb9942b48be05917bce5e8f317569528155b71d20a1b65997155b23c99184
MD5 7179b247153f646eb99c535dab80aa65
BLAKE2b-256 65ef66ad7c365bc95c6b84561db8a2d77744f89e566e149f3919eb8603e2a454

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 184849027da80f59fcb26b3751c8aaf296c4262d5b4777d3e2e24781f60179a3
MD5 f9cad5c2a0a8d90debcea8a4bd44e330
BLAKE2b-256 6602573773cc3cd69c62b7dc6f3242826ae58a68ae6c0f4085daf95154a43fed

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9fbfff88ab502f3d46db72aef3e35e1c76d8e98672eef2235c16d7e0d181018
MD5 f639fa32f7325c11133352b28b31dec7
BLAKE2b-256 a414722e55a0ed0e80f9cf168200ec8379ee9b17b8ca1a02aa9be271f39d73e7

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a736a2e6336f33a25082032856ed1d137fadf352f239643f3d8bedf4feed4a1d
MD5 d6379704cf41c25a61e2df8ac2484cef
BLAKE2b-256 e3518d21cc56467262fda88efb60e843e2f19bd0da78142093585d1608579427

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c437276656b5e59f09e9059121a442bf68f091556873ae361f3ba1a33f5f052d
MD5 42fd64747a04a9a851afd69438735d9b
BLAKE2b-256 eb9287c75b136529d9ae01941b61cf9ce4affa109e1b806d0e9f37c2f6169aab

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f949548e51f50389599a5524ed034ddc81341d88636a46fb6cf07bb8c5925e
MD5 e6791c89029aed2496173e5a581d43ad
BLAKE2b-256 e434d3ae785a54dafc0fca181caf242cbfc9cce044285f1d6b76c4ec73e74526

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d1179db21d48c9d041d3dbc455727bdfddfdbd69b1bf9dc3bdadb70f3be322d
MD5 e4e19c814b6895337a31482a4687bcc6
BLAKE2b-256 6ce979bd58c04480398bd424e55cb9e6d70c6b5515334b66ff99a804c17790fe

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 595363a6965bef3f1ae3f88f36b57681feb6befc5fb1280bcfe2b320c4a59f83
MD5 dcb5b3c157a20f06e5a954bc221d3286
BLAKE2b-256 eab098351e0aaf07ead24dba914055c1d88f0163d645e71acdc97a8b804ce20d

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c89c82a39f0908646b5cf1d98ae63f5de533e71d477e1f0bc40cb07f74b6c3b
MD5 3fd397cea9fe17b343dd51b044a42889
BLAKE2b-256 8b93f13bd831b8c895cf40d64569492417c49fd788b95d18f276f31dbe047f93

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40099bf37734bd6f8d1d78c40bc3088afcf8b4f5eb221a11edba2e215fb8361b
MD5 9aa3354091977877ca71c6097a78d85c
BLAKE2b-256 5048950d96ccf38a1e20856f2c1ddd315e3381ebedffba694acb8620723190dc

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f695619a93612628717fbfcd5f0caafcb328cbe9427475ad07c0f77bc87a36fb
MD5 67e9fb75dcb116ff89a0a1c280b5ad35
BLAKE2b-256 6701eb9c32a285b9bdf76f058c2565d8d24ca400058516f77d3fab8686d97935

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 02fb3247358948d8e919bf419858928e149272e425d66a8a455c7dd836ecdf47
MD5 753e45e5c1cf4322d773cbc200985bc0
BLAKE2b-256 9cbb59753848a4e78023663cb3fd4e69bbef0dde80f821183ddae92f92afe0ca

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d67cd5f159f1715ebf9a7daa4a5e6a23d2eb5a9f9a5edd6ee863b5ce9d3714eb
MD5 049ff917d07f32fc058556340c056d84
BLAKE2b-256 57ef2dbba7755035800c5f39a0915d339e94b4177d44f69212c73611c575c629

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7aba25f40e075de828b665c530b76451ac8892f171e69da76b29bb763d6102fc
MD5 5515fca5783440b25333298cc13d6b91
BLAKE2b-256 8f1c076e2078c151d14f9138f0d2867ba6aaa756d2cf029ca79c0a5739fc6165

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3593e6acb80bd46a2100fc8f052cc3b4959644034cd8addef85a2678df934d84
MD5 0a141a09a0cf563209e727b91857cfff
BLAKE2b-256 d5cbd4d4d3d0ad80ddb806bcd12c86be15c91f74bdd914857e96a875a342edb0

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad47697c0d1196db648030472b348aacab8a0e2f36ac579ac4da428f55045f0
MD5 6aeb7e2b5922f1fc941abbc830977e10
BLAKE2b-256 7cefa0fd9d23287e7b00237d6565ecc45acaacd89969978113ed4fd17ed3e639

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5011ac2535e78cf69b199a09c6da1b740b013d47688f2465e0ba0b5827c3473
MD5 a468371f8394905f9aa1fac775a4a6b9
BLAKE2b-256 5a89e9e1f5c0378a05d5f176a1772b167cb4b94d9dd7044e065d0cda3ce0cd01

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 032788193b499937db61d87cd31021ec88022c8e1d3ae4ddd87f5f6bbae5008b
MD5 765593a22b36186547bd295fbaa6cc40
BLAKE2b-256 34c9638956dc4579b086b91083e11e141d50144922464d661ba1caf971a37270

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94df7e60c9616bf60e0ed2809cdb53acc8fdb2cf98a04ac792cc029df84d12f9
MD5 2c23981816eb1330d31bd440a92a66f2
BLAKE2b-256 a95d08513378355185b4ef6560d6cc02d9e617f3b89617cd101aa0f4c5d41cf1

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3ca480e8443a9a626d0d89b946c63b4d98a32a248b354a3d34da840f28aa80b
MD5 a41303433f23442fb6a952f3cd5cf219
BLAKE2b-256 4a087ac947d45fd34e511ccbfef6fb39816deb36ec3c8179303a7db4e96e84ec

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5493e92715978ee3580ab0879ece7f2c0cc6f8a9e275d3772919ea239c0b1d
MD5 e7db3fd6cabe03193ff9bf9d9ab01376
BLAKE2b-256 dd92cf8f073a34dc07518a981a29aa750491bba07ff4a79d2dd6afd31a02339e

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51f48107f90a8efcc371c9f2ed3d9d4dfcbe68cdbb9125fddc9045a33d1dc861
MD5 263a9e1256bee7a7f98b003f5cc39c8b
BLAKE2b-256 bb38a3597308433f4f845653ca87e062497946820c22d65708e9ed66158a2b9c

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a52844855f385ad032f6394abedad292b23e5db0f0dc0673920b4db1f52a5962
MD5 b068b7122f813fa104bc544b654fd535
BLAKE2b-256 aadac6bda0c14698f057ab8ba8e14b4ae9042f845ff55ddfb2c72162e573cc3f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e73fdb283260a10d3775a8fc2105ce9a4a34f117d25efd2de9f7e122ece04ec
MD5 9319b87b4878185ff7dc724def4b5119
BLAKE2b-256 eac87acf90451c54fed94fb0d44a173fa30cfb7932bfd3d15875139e6a474541

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 333ccbceadeee7a8c333f17e9b1feef47b4d2a98a1025a69387ff082800d8fae
MD5 de4c86557225d88ef87691a22a41a040
BLAKE2b-256 f7216222036d3dc1d8c78bf3a6798733f034bb469c4605de405d2a5536a9184a

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c7e6e8f40a0b963f4e25133b180a4ca699513cef2c96117d6dd4f7a4e690f55
MD5 dcd308fc12c83a1662783b464c90c02a
BLAKE2b-256 ff6343f4453fc93b65726e6f076cf352944773f01ad1fbeeb2971c9b3ea45221

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a4283c8064d085ff15531411710ab3f59bd2c453f59dd23ecdc07779ea816d0f
MD5 a4e3b7a8cf2d7765c543d87242290cc8
BLAKE2b-256 ab9efaa3ed59a751a01ab60efa000481740f2f8cc9b241efc59ebcc994ccddb9

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c57c94094bc53050be89054bdca21ff273db144deec7c4873fe142c5ca2d5d4a
MD5 1806bcd0b617f1c09718be6bb57181bc
BLAKE2b-256 ee572f3f60d8d82b51896110f55b6eb12b6b25d9091b03a22e5bd18e9bd0e29b

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7db06e4ab7108ee9c68b7231d5103a893a47706c4b93d35294dbe19030ca19d4
MD5 6474e4111b192714d2265ab12960cb8b
BLAKE2b-256 570f6ffebbcb8e1de08cedc7c3cada5c4608c43fc29a96f87eb637a4b75104a9

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66103afcd2179f7814b1c93d8729b571a7b5b99719f3a0df7960017415e6cd03
MD5 6ef2039e356ef940ec6bd67343c5c451
BLAKE2b-256 ab75be20ecea96faf51e656e5912b003712f7af848b69b6309d03e8d88d85517

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69b9911106245be308a6adfeceda6db6fb920ff144ed40365ce649ab06ef22d
MD5 5ad9262b54514791c3cff243d05ca31e
BLAKE2b-256 fb39aec383a5af6ea12862cac2c92afc45d7a80b0a0b756fbef54bd4b3471bf4

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1931dee6c9968dfaae6593f3536ed4471f560478a0999b9fef6e8db3ab53ea74
MD5 317921ef18254d1d965e80cc8f966dbd
BLAKE2b-256 cf01d00cdb2ee32fdb732e633be50970f9e7c44e37a3b18bff570e65bc752b26

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54e5cbf400a4f24cf12f7e86123d5bc450fc4b6a02bf5e8ccebfdb1e998b518b
MD5 4290a386e81f8f9bf520c75a6d7447fc
BLAKE2b-256 c4d1aa1c02d2dacfb207b665ded28f5ca1c895b5dbb9e0405f0c8efc741ca60c

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e452d42c30c6786f2176b6e5d75d533ac4f553e0c5746b252909ec822aee8a80
MD5 309893c923e12a70b46e0f8956c995db
BLAKE2b-256 57f6a740900e642cf084707e4143fb4f73a621892fa48ef34cfda11573956192

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c3115f1c4321ba54822a0774f98ce273eb4d82c7df169a703b50ae5664ae6e8
MD5 c004344e19340e4cb9c90f230602f717
BLAKE2b-256 93905610679026e23a0a91c794fc0bbc63f2a28ac237e3ceeb5e18bd9ac48faf

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4789819c8a0167c0044ef9092a7c9443fa200dbef80195b8b2d8f7417d69114
MD5 ecf02c98d4e072ab28b74ef526f888ac
BLAKE2b-256 7f5cd6fee700e7feae886ef3f3df0f817db59faaf4769a41bfc18aba08808cdd

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40e11269dca59c9417cb50a9e8e7d640b282859f5d5514d526349ce19991dd84
MD5 267d0708518188c061a5e430a7318adb
BLAKE2b-256 909599daf54b82c8e5c2cbc0eb76ca2c8a058676270eca5b832af91abef807ea

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 65cd42b45da0b11c9021f23015be44a3fce60820891a0952407ff5bd02fac15e
MD5 3188a7772db051137dfb71c6b1a92190
BLAKE2b-256 0eb3e1c4290528eea651fb6984caf242b1ec7b9b8f81ac2f1733e8162743e371

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e929e1cb338cdb38e552c390b5816d48726f9427d9515b4a4a833c77fedb482
MD5 99bb47b4e00ec8eba42629d2fb179893
BLAKE2b-256 a08755f4f5af2deb936b1da0b18a18b04eb96942d906f4f2915d47ebc364be93

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d5760497cde72b0db08b139736582727d722ceae57079f369ecd452279b7718
MD5 1f0258932ef2c1b2ae76c7586cecf231
BLAKE2b-256 1680e0741a28a52c06152837067fc4f246ab6cf0be3d9d3d90594f857ff4e825

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04356c371c0e28431c48e347ac980a5b810f4b254c40565e971e23b9887a92dc
MD5 f3d5bf0039b21b1bbcdce91f3f939306
BLAKE2b-256 79413509ea4fe8625b295e272e3b74d40e9953fc4cf222c783debff83d16f93e

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e1b3cbc6a401f9cdeab2f6d123524e323c441fd4f7d3486a1a8d0b464889c5ea
MD5 808d71d645f64d9cadbf6dff3aa8c11e
BLAKE2b-256 09775bfb9053a973fb1587ab57e74b2816c8539730e574d7fdddb97e221833c0

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50c672fa20c73a59c997414a5072a4aaaed3c4a7ae6b92519c3590cbe7c3a7e3
MD5 e2d697400c49c09c5febe9d0e998bfde
BLAKE2b-256 5d4c6c11b384d50bf8684946a16e14469461a76204bb1d5051c7b0a458442285

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19c29ad32117df45b550fc5d9adefc09ed2969c4c4da7eb247615a3cca8a3e43
MD5 66c7e136947f83e637f674509a8a88f8
BLAKE2b-256 a9bafa53ac1af3a3de3381ca143d0cbc449c0b0b173277e1505e913102713750

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2b327898f86c9d240a679779383362da0536b2b816b0e64bd0075534fcd237d
MD5 dcac0061ce862b0dd035e7b14c603068
BLAKE2b-256 a5db2afc3fbc7a410036a642724ecc1a98caf5517ac2446a2d53dc589b382cec

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b63a7c060129a207a3913a17b24cc3770db6d8e68ff5aa7874eb2eef50d82b
MD5 9ca4fe841015a12128f4fb6edd39409a
BLAKE2b-256 814fbe1269bb88c084f3a98bbc5c070eefca3f67c1cf19a3ae6922a88969ef70

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98200c08008f665655ae8c1340ebf4db46a120c2d3f60c6f477a82de753eb981
MD5 326604a22e58e27e8b296a99a0df7953
BLAKE2b-256 919ccdfabecc3e3db79e9f4fbf4de8f3111f5d80002a29055cb05efa5dfce125

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea7f77436a2296828cd7d1e04f29922a5c4c348862117f59fabf7baaf410db66
MD5 c42b4361cf02c14f7b1ca5546fbb5bf4
BLAKE2b-256 905a15d1a5f7d4e04da4899f996dfd5c88a6d0710fd1a4d39275add7e5c40c8d

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cac38084be81629e3edc9a53de49c0fe99dd5add672805866b67d0ef7afe70b2
MD5 21f3106a1b9533b5711abaa527b64e7d
BLAKE2b-256 61735fddea6b5da0fde835d5106a3067f4593deefc1bab0ae29eb39bd651f5b1

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d7513aa71a5c1890dbd3755df35aecf9c0495fd66086eca63742f84e39485a9
MD5 2f9a9118e1885d010809a26959a52499
BLAKE2b-256 e63ea281a0fbf2ebbb947df7acfb81569ebdd6ab34304db2c3217b53de6f5d47

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c43829213924e06fa2734c6fea79ec4a6db99e81cdb4a0e92461a9ce2c082d41
MD5 9980c14261f2df6f3c4769798e1ce086
BLAKE2b-256 0e5727ab3ea8621e82d2ffff954f11d1a23415019ab34bbdb031ec7f49211ad6

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce793692c71c0df0203a06970e2a98824d4d9c2c870b97244c7860dbc2c6dc85
MD5 4d771f7b98a119b592bc7754ccaaa0d8
BLAKE2b-256 98500edee4869424a62e0c70eb2144fc9193f39a22b08b460553545259e41678

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b55bab011a26ef3345ad82ee42ed6a492e36cc712727191443deff2214283e70
MD5 c03ba104bc2a93e14c813e62028002c6
BLAKE2b-256 c74a63d7d7fc85f400386af8cd83f86a3111b8426b63e3fb51f4c17deff9e515

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 07a032fcb6300bad517699526ba1b6ee72f0ad48581a80009699968e9dec1541
MD5 34d80098f4ea8cf1f76c011944dea243
BLAKE2b-256 bab2449b9d2193d6cff66a7949383921c2ac722181f55aec2e81cefefecb489c

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 19d938a56a507e30b69187842091eca99311565f949445a1cafa95a91010ae36
MD5 86799cbb07979440b2b9cec8287f8a03
BLAKE2b-256 dd2404f61859d0e97e400f216645bfa78d79392a79e2714eacc147b7446c223f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23960e06ffbd85c5f23777f6c794112f03cb8c234a4ed7b65531d93837270fe2
MD5 83381303c55a108abb17bab6a26db51e
BLAKE2b-256 ceb8cb0f94c69bbf3a1ad243bde70199121faf3594ae233b0f7ff65fed1a4a13

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a06892b13d8669b5b0786ea3c82644168a4161c5398e16136bbb639d5ff59e4
MD5 430727223eab304ad0a230ef55a49cdc
BLAKE2b-256 749e744c424fae1ee478d9f27181069130f4c36bb741443bd711b147e309c6fa

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c6f37d57ce92428d3ccd2369ae4c4496bbc173d69e0a612eb1eb2f3c5ce251d
MD5 3f0a851224ff21ff2775bcc1497b5887
BLAKE2b-256 a4d5ede07d0d0e6ec1a209e8e75c7e3cb22ed5ec85bf3c91e271fb630a0ec38f

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd3729c576f991b0a98cd6a59e9821cd72abd10f882c5eaa4d0900fb832515f7
MD5 5532cfa86fc423b12eb5e9b9d2cecf07
BLAKE2b-256 358bf5361207270d29c722a764d80cd36b326c426e3cbc2ba8b745658ecf5aa5

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9be545e0b6695ba7a56876adfaf90cd8c1c5aba85b8849ebb6d05431a17d395e
MD5 84c6f6ab3b9f3ead0e259cccedb2b86b
BLAKE2b-256 554407db918ea13e16431b71de443d7c2bd6308f7ef90156915800261fdce725

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ef16be85bcdd8f32623bdda4db9a097a73f3d355b86224dcaf7a25c5b844e46
MD5 f7048db71572e97f6f7ef9ad30869e73
BLAKE2b-256 b99258b853faaeff6ce1a23c2d26aaa87f3b151415e3080e09b240add5bb74bb

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82860f84b0b996b17a10568555789d1e9aa51501649fdba924e44b69a7a24dc6
MD5 e566538d5d60f9806e99ebc73a3e510b
BLAKE2b-256 77653969559450b83d3ec346e1a04b5e1978d707bb9c1161c1b107a33254b5d5

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8812ad4503daeef57068b3a88e79ec8db9ba2dcd7b42926fdbb1c9342d5acdd8
MD5 64c38ef3b96d0a01cca182ad9a6431b2
BLAKE2b-256 be93aae83af868819e18514b5ce23b93bb8bfdf58c4e4599cb38bbd2350bbc18

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbe6930c3723a52603ec6f6c94a695698afa233ac12d01ec03f3e5e615f56c16
MD5 09110ea6292ba51cefaae96773e1aa90
BLAKE2b-256 4902a8c2a578f381fad6f2fdf8edc47eedd70770205018b60e084f80ed904352

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4828714385b700c9ec79af6118eadc0db8a9342bf51d2975e44db9a7f6f9cc7a
MD5 444f37ec3e8c5a3fdb3593a8561dbb87
BLAKE2b-256 9735ec1bc6c6ce39ef7e538e2ffe9efa470737eb1efa3b21d530be9e1e13cd14

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ce4ea2ccd4ed175cfb6019bd37ead0832880bbf2632d8cf771d83c7fb923a78
MD5 ff9236ea1c2d3efeca4a97dc077a4a6a
BLAKE2b-256 5cb047f85e6364e1effab65dd40c09f9588af4bdb3a78166c246a7ce76a5e716

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a52e16412af2866347befb9975a72caee1dd09b8396004988f6251d27ff57af0
MD5 02fb2a4746e4b8e8fe7b7fa59de3b394
BLAKE2b-256 7a7bee4f6d32a0a23c9ea77da5e38e5bf5ab3365ff3ace935b25c2eab69c9a52

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: bsdiff4-1.2.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4690a1c355b92ae1a2aabc7ecb20a669295266ec4bc923be62ea35475bf2abd2
MD5 5bcacac4485143add45f819864ed75fc
BLAKE2b-256 8282149c4e12f4080d8c5830c942e459c654e3488730280edfb92db0f3dadc6e

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 534cf1f221e41b9c6a2721ab2d25f419aac056ec5225bc403d01aebae202be92
MD5 8fb71e22017c4cdce8bc8a23a2886407
BLAKE2b-256 14ba475a5fd4144b9a8c82983af9203afcb8fbb84fda8c2efd19008cf651c18c

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e3b4faec43a8f91e7858dfe476ea564c54876f76146fdb8534d23fcae9bda9a5
MD5 2a02ec4957dc85f7e150983a46bfe8b9
BLAKE2b-256 ce2a6b91490958935350d0ead4c92f131f05702d78b3d2f3ab945d3b8f2d4ebf

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bf22cd199652a5c32bec7830fd7d9cef5c79d204efefe867074da14d4d9c128c
MD5 79f0b72ceba8acb1ff7637490daf2889
BLAKE2b-256 10b299dc0f3cd557abfcedeb9040afbef659f7ccd7f12dad5d23d2cd963acc5a

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 259af1e39fa3451defed97d5947bf585ea7d1ccc2399be466b8cb7f0cec6ca43
MD5 7849dc31c5bd43220e770d79ac728dd9
BLAKE2b-256 7b66344e905bba0af4a00bc8f5db5e5ebe1232227f9518f058393859212c6a27

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f318cabc68a601a6325aaccd883b3878041680cf360134f24ecf84eab88d495
MD5 781337d9a2d3f742ca88308f40dae59c
BLAKE2b-256 52c9bcdcc5619c3a7c08f8a23b91efd92d4a89c2312376dfb5473e6db2139b2b

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d4fd4bc45b5ab66fc0a919f1bd85124a2d1fa0c0950bd642fffeb4267e478b9
MD5 6400d0c6919b10322e6f2fa3ff1a50e9
BLAKE2b-256 6d9c45fcd30afb0addd04afcbfc80d9c95c43d391351fbe64ab507df9897c04d

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5da1e7683cacd9603cf2459f01b484ba851f0bf5759dd9624c57bbb1f556e7ed
MD5 372c2365b4484e8ac770db7f05a70318
BLAKE2b-256 fdf412a90dc02f7c0d410de15d817d286b101382cd64a5d35105a454d4e0e55b

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c592b81a0c000ebb719ad4ad21e9d89d3790006683569e6bbebd00087aeccb5
MD5 2cccb7e63fc3fc223a81d6ba66fc8ea2
BLAKE2b-256 ca5626cd0b8363faedc2be4760ba7626f89a8022fdefec4a79218cd24572c966

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d672523f0aa016b86d9e358e21b75addcaf7496d7affb9bfb273e09979c9b330
MD5 9df0a19f391c4b0c7838c1a393070c78
BLAKE2b-256 598993be6699d3bd672eb00db89e4b000b5c34d34c473f1341b558337e631d42

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09647015871b3b1b5ea8936002339433dcd3c2f0c42cca14e8aef0d0caaedd51
MD5 69fe66993e1f5c8f59e8e94df19d3f96
BLAKE2b-256 09755c8def8d52d19d54e71c0a096a82741821e93ace5aea0b607d4ffdee8643

See more details on using hashes here.

Provenance

File details

Details for the file bsdiff4-1.2.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bsdiff4-1.2.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80597dc68692e0f9f71fd5387082c79ec8207fe1a447f8a6cd63ceff9db1c0c3
MD5 e3ad5c58fe15187659f4c793bd2e177d
BLAKE2b-256 37fefe6f8fe57ef8455cabf379ebc5ffafeb2bf17893269a06af120c2a90b635

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page