=======================================================
bsdiff4: binary diff and patch using the BSDIFF4-format
=======================================================
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:
.. code-block:: python
>>> 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
Raw data
{
"_id": null,
"home_page": "https://github.com/ilanschnell/bsdiff4",
"name": "bsdiff4",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Ilan Schnell",
"author_email": "ilanschnell@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/53/b9/4559ede9a4c8c4451688303544da84654643fdc7f28790aca85be80b4b7c/bsdiff4-1.2.6.tar.gz",
"platform": null,
"description": "=======================================================\nbsdiff4: binary diff and patch using the BSDIFF4-format\n=======================================================\n\nThe code is mostly derived from cx_bsdiff (written by Anthony Tuininga,\nhttp://cx-bsdiff.sourceforge.net/). The cx_bsdiff code in turn was derived\nfrom bsdiff, the standalone utility produced for BSD which can be found\nat http://www.daemonology.net/bsdiff.\nIn addition to the two functions (diff and patch) cx_bsdiff provides, this\npackage includes:\n\n* an interface to the BSDIFF4-format\n* command line interfaces: bsdiff4 and bspatch4\n* tests\n\n\nThe bsdiff4 package defines the following high level functions:\n\n``diff(src_bytes, dst_bytes)`` -> bytes\n Return a BSDIFF4-format patch (from ``src_bytes`` to ``dst_bytes``) as\n bytes.\n\n``patch(src_bytes, patch_bytes)`` -> bytes\n Apply the BSDIFF4-format ``patch_bytes`` to ``src_bytes`` and return\n the bytes.\n\n``file_diff(src_path, dst_path, patch_path)``\n Write a BSDIFF4-format patch (from the file ``src_path`` to the\n file ``dst_path``) to the file ``patch_path``.\n\n``file_patch(src_path, dst_path, patch_path)``\n Apply the BSDIFF4-format file ``patch_path`` to the file ``src_path``\n and write the result to the file ``dst_path``.\n\n``file_patch_inplace(path, patch_path)``\n Apply the BSDIFF4-format file ``patch_path`` to the file ``path``\n in place.\n\n\nExample:\n\n.. code-block:: python\n\n >>> import bsdiff4\n >>> a = 100000 * b'a'\n >>> b = bytearray(a)\n >>> b[100:106] = b' diff '\n >>> p = bsdiff4.diff(a, bytes(b))\n >>> len(p)\n 154\n >>> bsdiff4.patch(a, p) == b\n True\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "binary diff and patch using the BSDIFF4-format",
"version": "1.2.6",
"project_urls": {
"Homepage": "https://github.com/ilanschnell/bsdiff4"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a9e361c89b6fa5594ec5453b62aae8814c5c49d74eac5897ce939fa44cbb6d2b",
"md5": "c499e0b4baddfa434369be3dc986c0f6",
"sha256": "c5af4fe780e859491beaf641e34c0e965f5f65fcd96b2d7860ca297b3fc91a53"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c499e0b4baddfa434369be3dc986c0f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 16213,
"upload_time": "2025-02-19T17:39:31",
"upload_time_iso_8601": "2025-02-19T17:39:31.121800Z",
"url": "https://files.pythonhosted.org/packages/a9/e3/61c89b6fa5594ec5453b62aae8814c5c49d74eac5897ce939fa44cbb6d2b/bsdiff4-1.2.6-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a4f43b5c2ce34ab614e8fa8aaa2f00336e1ab33b1219aa619117cfe22235762",
"md5": "58f5b2e94a6b05b7f94c0a1d269a673a",
"sha256": "139d4a4a3eef2c6bb85ce5e18de27a0ebae11eacac3b3ff4423986f13a21c375"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "58f5b2e94a6b05b7f94c0a1d269a673a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 16034,
"upload_time": "2025-02-19T17:39:33",
"upload_time_iso_8601": "2025-02-19T17:39:33.170107Z",
"url": "https://files.pythonhosted.org/packages/2a/4f/43b5c2ce34ab614e8fa8aaa2f00336e1ab33b1219aa619117cfe22235762/bsdiff4-1.2.6-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "adf645a31bbe00da13a2d6371cdbee03f3f68a9f19e98c66cb8d38acf115409d",
"md5": "b8bec237a5cfca80fa9807cfeb0eddf7",
"sha256": "ab903d1a7f3158d77a139fc42540c52b778510158337daf81bbd06b18ad2cd9b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b8bec237a5cfca80fa9807cfeb0eddf7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 32012,
"upload_time": "2025-02-19T17:39:35",
"upload_time_iso_8601": "2025-02-19T17:39:35.374961Z",
"url": "https://files.pythonhosted.org/packages/ad/f6/45a31bbe00da13a2d6371cdbee03f3f68a9f19e98c66cb8d38acf115409d/bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "889a563f3060b17abac1056938383578017bb7dec6a7316bc52a281c39b3cb88",
"md5": "50b326b201cc6a70fd77fe4eb4271ef5",
"sha256": "bce6c2ab32c7fa53f971c05ca5f8428408efc7f87527a84c7e62f32a4d6d2d4d"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "50b326b201cc6a70fd77fe4eb4271ef5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 34072,
"upload_time": "2025-02-19T17:39:37",
"upload_time_iso_8601": "2025-02-19T17:39:37.241591Z",
"url": "https://files.pythonhosted.org/packages/88/9a/563f3060b17abac1056938383578017bb7dec6a7316bc52a281c39b3cb88/bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e08d5657d9c1034bb9c5fdc2a962d863993a3c98a57bc8577b319c8c6f53a9bb",
"md5": "85844a3c021b01614fe9af73c6a614f1",
"sha256": "899aec9c1c2fe23d143563af9aa9ccda5c79166886f58263a96f3fe89eb1ad3b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "85844a3c021b01614fe9af73c6a614f1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 32000,
"upload_time": "2025-02-19T17:39:38",
"upload_time_iso_8601": "2025-02-19T17:39:38.478541Z",
"url": "https://files.pythonhosted.org/packages/e0/8d/5657d9c1034bb9c5fdc2a962d863993a3c98a57bc8577b319c8c6f53a9bb/bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5567e0c3fdf6f06b84cc0282900f468a32f3367b533f343d22b5e9fc934f16b",
"md5": "91b755a1934aa6afa782ed3d76223726",
"sha256": "c07ec6b37098aa1abef8b1ce7132925ba79755581dddfb7fd86c6226a7302877"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "91b755a1934aa6afa782ed3d76223726",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 31485,
"upload_time": "2025-02-19T17:39:41",
"upload_time_iso_8601": "2025-02-19T17:39:41.404949Z",
"url": "https://files.pythonhosted.org/packages/f5/56/7e0c3fdf6f06b84cc0282900f468a32f3367b533f343d22b5e9fc934f16b/bsdiff4-1.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e05ec97119ad48eaac1fc18a385fe77319d54148af0e269e2fc3e70e93bba80e",
"md5": "b794d09c12024095f68d66c1a7c1f0a6",
"sha256": "6be63ba562c94a3b4b1e3ff1e2b264da34be9dc1e9cd997875bfe11851045f75"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b794d09c12024095f68d66c1a7c1f0a6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 34280,
"upload_time": "2025-02-19T17:39:43",
"upload_time_iso_8601": "2025-02-19T17:39:43.084289Z",
"url": "https://files.pythonhosted.org/packages/e0/5e/c97119ad48eaac1fc18a385fe77319d54148af0e269e2fc3e70e93bba80e/bsdiff4-1.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4d1be25015a4f53f719cc79cec50549ec901d285aa0efdd32912a2a8b172722",
"md5": "fabf6f78f9c733024b569cef714a82ff",
"sha256": "7d3c163daa68218a2ee8e6fa462c2748e7a85831c768600b206e0b16efcf7a47"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fabf6f78f9c733024b569cef714a82ff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 32047,
"upload_time": "2025-02-19T17:39:44",
"upload_time_iso_8601": "2025-02-19T17:39:44.277954Z",
"url": "https://files.pythonhosted.org/packages/b4/d1/be25015a4f53f719cc79cec50549ec901d285aa0efdd32912a2a8b172722/bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fb4d39b5ab00bee25f603d4ba8a1da3f5d0843dfb50b1faffd8bb6e2b741da6",
"md5": "5feac9dd770963593f397114765d36fa",
"sha256": "b8ee881d162dd8a5f0c75f6b79547fddafc63ae713b852cef04f9358c9d8cc1e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5feac9dd770963593f397114765d36fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 35589,
"upload_time": "2025-02-19T17:39:45",
"upload_time_iso_8601": "2025-02-19T17:39:45.381049Z",
"url": "https://files.pythonhosted.org/packages/6f/b4/d39b5ab00bee25f603d4ba8a1da3f5d0843dfb50b1faffd8bb6e2b741da6/bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d18ff282fafeb986708c10608f19ed54fbae98d476d473f79dfb2967f346aa36",
"md5": "cdd410117e999887adc11f56c1132f5b",
"sha256": "ed07a0ffa04758965680ed5307ea1a2c393740b44b03f4de6938b316847e6f8b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "cdd410117e999887adc11f56c1132f5b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 34109,
"upload_time": "2025-02-19T17:39:46",
"upload_time_iso_8601": "2025-02-19T17:39:46.580430Z",
"url": "https://files.pythonhosted.org/packages/d1/8f/f282fafeb986708c10608f19ed54fbae98d476d473f79dfb2967f346aa36/bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dfdc37ab67951f5cda29e8e8c9dc26ff2d9a894aaa2942a378e8aca930083c8",
"md5": "fffc551311def008794cb63c0ff5d52f",
"sha256": "bf055ebf32fffe93e9f803b8c9e5c13ddec4722bef970004815aedee85ebb7bd"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "fffc551311def008794cb63c0ff5d52f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 33629,
"upload_time": "2025-02-19T17:39:47",
"upload_time_iso_8601": "2025-02-19T17:39:47.650833Z",
"url": "https://files.pythonhosted.org/packages/9d/fd/c37ab67951f5cda29e8e8c9dc26ff2d9a894aaa2942a378e8aca930083c8/bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc4ba123309c61b89055d9bf19c9cff9baaf2da97a4d1c7fd7a6985da333d008",
"md5": "bfc8314c9144fb44162b81f4fb0cfcbd",
"sha256": "661e3c2ad174bfef21c53bc9eb28e221c9eb1a5fc68637f45e1d49c2778dd46a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bfc8314c9144fb44162b81f4fb0cfcbd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 31186,
"upload_time": "2025-02-19T17:39:49",
"upload_time_iso_8601": "2025-02-19T17:39:49.605507Z",
"url": "https://files.pythonhosted.org/packages/dc/4b/a123309c61b89055d9bf19c9cff9baaf2da97a4d1c7fd7a6985da333d008/bsdiff4-1.2.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebb53ac6340d1331af194063acb38071401815dc7a7e210822207504b469697e",
"md5": "a0d77fc463e8027b037ce2fe49219fb3",
"sha256": "bacc5460c473b4ef6c09ccea16df2afd31b2860b9838edb870fed19bf4212d71"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "a0d77fc463e8027b037ce2fe49219fb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 18260,
"upload_time": "2025-02-19T17:39:50",
"upload_time_iso_8601": "2025-02-19T17:39:50.679131Z",
"url": "https://files.pythonhosted.org/packages/eb/b5/3ac6340d1331af194063acb38071401815dc7a7e210822207504b469697e/bsdiff4-1.2.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c289e239c2a61b7751da63746c5f46f848f075ac5b4f8ed526d042389c49f280",
"md5": "6376d1b63fc4b0bfd51354f4a48ad9fa",
"sha256": "544234a2729c167c80f28804ef1deb4b82df8d35de0820ac30a540028c9c47d1"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6376d1b63fc4b0bfd51354f4a48ad9fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19529,
"upload_time": "2025-02-19T17:39:52",
"upload_time_iso_8601": "2025-02-19T17:39:52.444334Z",
"url": "https://files.pythonhosted.org/packages/c2/89/e239c2a61b7751da63746c5f46f848f075ac5b4f8ed526d042389c49f280/bsdiff4-1.2.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10086472d5c2527688b16ad2c2dd09e324281f5e78eea5e4dba5f65a7949f39c",
"md5": "2095e8ea62d4b8d1c8e0ead3730d80e6",
"sha256": "b151c28098b3c522b1735cdfe5e84e8f164f0ef4a592adb227d7a10727034673"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2095e8ea62d4b8d1c8e0ead3730d80e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 16212,
"upload_time": "2025-02-19T17:39:53",
"upload_time_iso_8601": "2025-02-19T17:39:53.399811Z",
"url": "https://files.pythonhosted.org/packages/10/08/6472d5c2527688b16ad2c2dd09e324281f5e78eea5e4dba5f65a7949f39c/bsdiff4-1.2.6-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33414d1fa5980c01faa0d5c578e41ce73b4df98cd74e33f92323880df0da035e",
"md5": "9581aaa1d7755b71a48d832608a938db",
"sha256": "29def064f6bcd13d0d7a82e5caa4848158b7f49c3a8fe44fbef3031456fb7dd2"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9581aaa1d7755b71a48d832608a938db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 16031,
"upload_time": "2025-02-19T17:39:54",
"upload_time_iso_8601": "2025-02-19T17:39:54.481543Z",
"url": "https://files.pythonhosted.org/packages/33/41/4d1fa5980c01faa0d5c578e41ce73b4df98cd74e33f92323880df0da035e/bsdiff4-1.2.6-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e41188f858a71eb529145b6706f8ac618fd9f719807f46e0cebe2ea482bfe78",
"md5": "cd253b0718f73e21d2f7cbd3e6d72911",
"sha256": "e6f4cf8e00116e14e9e6c3fb5747478022a27215a9a65ed223fed82d2cfbc4d3"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cd253b0718f73e21d2f7cbd3e6d72911",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 33763,
"upload_time": "2025-02-19T17:39:55",
"upload_time_iso_8601": "2025-02-19T17:39:55.438280Z",
"url": "https://files.pythonhosted.org/packages/9e/41/188f858a71eb529145b6706f8ac618fd9f719807f46e0cebe2ea482bfe78/bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27ea84cc364a0c0f6eb3e503bf1625aa62eb411aa7474d1c91ec201812295fcb",
"md5": "b37ffa0393f6a2965b7515404102a690",
"sha256": "897a260d30acc4df9803f500682eb7951fdc104a3e155787e1e581258f38df50"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b37ffa0393f6a2965b7515404102a690",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 35705,
"upload_time": "2025-02-19T17:39:56",
"upload_time_iso_8601": "2025-02-19T17:39:56.601529Z",
"url": "https://files.pythonhosted.org/packages/27/ea/84cc364a0c0f6eb3e503bf1625aa62eb411aa7474d1c91ec201812295fcb/bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe54c235fd3e95aa3a4ac53de83605723a149a33eb11aff64e49488132b857f8",
"md5": "175d8611d0315895a0bd1da56e821c59",
"sha256": "d994ee6113c3f030bb9f373e917f00db13c026c295fe9f314f23171935d88371"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "175d8611d0315895a0bd1da56e821c59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 33807,
"upload_time": "2025-02-19T17:39:57",
"upload_time_iso_8601": "2025-02-19T17:39:57.601236Z",
"url": "https://files.pythonhosted.org/packages/fe/54/c235fd3e95aa3a4ac53de83605723a149a33eb11aff64e49488132b857f8/bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d28b010d14d3ab321c1c35fc4145b020c1e76ed8a29a214ce6bcc093ddedee13",
"md5": "870fbf92b58599573ff42d3f3300a298",
"sha256": "ba5028a2aaa8e4cacb224031af9140e05d9c407ba15b59471380badcc4845777"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "870fbf92b58599573ff42d3f3300a298",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 33250,
"upload_time": "2025-02-19T17:39:58",
"upload_time_iso_8601": "2025-02-19T17:39:58.552239Z",
"url": "https://files.pythonhosted.org/packages/d2/8b/010d14d3ab321c1c35fc4145b020c1e76ed8a29a214ce6bcc093ddedee13/bsdiff4-1.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c91ae41950f7b823e8061520f3b28d47534b47f314b4148690c4a002d764bd7",
"md5": "37ba141e6afb14015a743f6289fe889b",
"sha256": "1edd3069dc14cecaa804faaae776a5d14f85217c41b3180b794e5fbf684d35dd"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "37ba141e6afb14015a743f6289fe889b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 35919,
"upload_time": "2025-02-19T17:40:00",
"upload_time_iso_8601": "2025-02-19T17:40:00.052118Z",
"url": "https://files.pythonhosted.org/packages/2c/91/ae41950f7b823e8061520f3b28d47534b47f314b4148690c4a002d764bd7/bsdiff4-1.2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6cb4f29c451e7718d4366a72f9a87a7f3cc76cb56cb5e9305eae087eab83f7a0",
"md5": "afdc292cfd10cf9462b2d6636a122dc6",
"sha256": "0fb562e451d5b3a7523c67ce04fe541d3a004914e5760a47116883972f5ff8bc"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "afdc292cfd10cf9462b2d6636a122dc6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 33740,
"upload_time": "2025-02-19T17:40:01",
"upload_time_iso_8601": "2025-02-19T17:40:01.893456Z",
"url": "https://files.pythonhosted.org/packages/6c/b4/f29c451e7718d4366a72f9a87a7f3cc76cb56cb5e9305eae087eab83f7a0/bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a73004b3c4511df3df0d5e591ecd7aaf92c851b22be200283428d3577f4400b",
"md5": "44ca1360d2bdb92710779f84305fe09d",
"sha256": "b7309380d8edbd3d46c4ed3930f7062b793bac8f004b32139db7af7c4612e241"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "44ca1360d2bdb92710779f84305fe09d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 37325,
"upload_time": "2025-02-19T17:40:02",
"upload_time_iso_8601": "2025-02-19T17:40:02.911395Z",
"url": "https://files.pythonhosted.org/packages/3a/73/004b3c4511df3df0d5e591ecd7aaf92c851b22be200283428d3577f4400b/bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9ea5fa1d331c4a2e73e4e90a851768749a9960cefcb443da3abaae69e891f06",
"md5": "c1b3ab92bfdee4c40dfcd3eea56f8349",
"sha256": "f2f7504f08181227717fee04f25169d5901322c29d3fd054e4cb61bd60b3ffb4"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c1b3ab92bfdee4c40dfcd3eea56f8349",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 35791,
"upload_time": "2025-02-19T17:40:03",
"upload_time_iso_8601": "2025-02-19T17:40:03.866341Z",
"url": "https://files.pythonhosted.org/packages/d9/ea/5fa1d331c4a2e73e4e90a851768749a9960cefcb443da3abaae69e891f06/bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10047616e8abec54562c86742c7bacaaba53c0c4733565ea00e8c5ffe2c5c9ce",
"md5": "432c1432aafd0614d246586867f3b4e5",
"sha256": "6ad599216e7ee3db5737951d06c43b8e65d5b0db5c42300e85f18d399ec0bc5e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "432c1432aafd0614d246586867f3b4e5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 35413,
"upload_time": "2025-02-19T17:40:05",
"upload_time_iso_8601": "2025-02-19T17:40:05.692541Z",
"url": "https://files.pythonhosted.org/packages/10/04/7616e8abec54562c86742c7bacaaba53c0c4733565ea00e8c5ffe2c5c9ce/bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6d63fff18a97e127cc783e02de3c934bca63fabc0d4a379e091973b006cbae6",
"md5": "e19a6f4af94dcea804a4527ee552dc9d",
"sha256": "cd133a9475c9dfba6243dd07f118ee58a0b7f136c00d316e2d92d3f82169bd9e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e19a6f4af94dcea804a4527ee552dc9d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 32939,
"upload_time": "2025-02-19T17:40:06",
"upload_time_iso_8601": "2025-02-19T17:40:06.639276Z",
"url": "https://files.pythonhosted.org/packages/c6/d6/3fff18a97e127cc783e02de3c934bca63fabc0d4a379e091973b006cbae6/bsdiff4-1.2.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36322943637e17eca717cdd091625d4198cf7a49dd7d235944a86f1a8a6134fe",
"md5": "445838784a22a7386d5bc779c6f43008",
"sha256": "403e8cc003451a8c4672c345a50aee3cf89d20983701e38fbbb67e07cb808c57"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "445838784a22a7386d5bc779c6f43008",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 18257,
"upload_time": "2025-02-19T17:40:07",
"upload_time_iso_8601": "2025-02-19T17:40:07.590167Z",
"url": "https://files.pythonhosted.org/packages/36/32/2943637e17eca717cdd091625d4198cf7a49dd7d235944a86f1a8a6134fe/bsdiff4-1.2.6-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1f883f087ab62bebde26956f084ab272e19d11db5df6700f4f48d29647235fd",
"md5": "aa0f37eeb511177a2fb2ade5ef19ed13",
"sha256": "164a059e1e07932f91d90471a4ef4dac749f2dee780f08501522805398b32ed8"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "aa0f37eeb511177a2fb2ade5ef19ed13",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19530,
"upload_time": "2025-02-19T17:40:08",
"upload_time_iso_8601": "2025-02-19T17:40:08.504599Z",
"url": "https://files.pythonhosted.org/packages/b1/f8/83f087ab62bebde26956f084ab272e19d11db5df6700f4f48d29647235fd/bsdiff4-1.2.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a58044dd110fb0a0160f5cacecbfb9904043c8179f8c14093e22b6d8c6b9391",
"md5": "b81e841605b53dcc1067e1cb8a6cc572",
"sha256": "69c5052e94ad991c397b5a46f8eab42f2e256c42aa5677896b7a3ea9e3d06adc"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "b81e841605b53dcc1067e1cb8a6cc572",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 16267,
"upload_time": "2025-02-19T17:40:10",
"upload_time_iso_8601": "2025-02-19T17:40:10.376590Z",
"url": "https://files.pythonhosted.org/packages/9a/58/044dd110fb0a0160f5cacecbfb9904043c8179f8c14093e22b6d8c6b9391/bsdiff4-1.2.6-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37a170b74154344486bac9bf438ec309ae502f07df8cd7ca713d58f658769ff4",
"md5": "0c2e6763ccf8ef1eb26de537f357f8ce",
"sha256": "223ae0fc9f386dcf919a09a2029c391a0f0afaf4a5892b9a6e1b622bf42e1ae5"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0c2e6763ccf8ef1eb26de537f357f8ce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 16090,
"upload_time": "2025-02-19T17:40:11",
"upload_time_iso_8601": "2025-02-19T17:40:11.334388Z",
"url": "https://files.pythonhosted.org/packages/37/a1/70b74154344486bac9bf438ec309ae502f07df8cd7ca713d58f658769ff4/bsdiff4-1.2.6-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a9036531261d8a150fcb8193fe2ad46d939b8a91549976424852f6a2a335689",
"md5": "8483c37d71d35bf0b54ce085e771902d",
"sha256": "48ea2298a281068d82b78454ee58ac7306ed38c9af55afddb04cf796df932d63"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8483c37d71d35bf0b54ce085e771902d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 33675,
"upload_time": "2025-02-19T17:40:13",
"upload_time_iso_8601": "2025-02-19T17:40:13.218866Z",
"url": "https://files.pythonhosted.org/packages/1a/90/36531261d8a150fcb8193fe2ad46d939b8a91549976424852f6a2a335689/bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a978b73b3684c63e88508ad308229f33a8a5be6c4762e4160f96e2a6fc46906",
"md5": "d5d7fd05762c47b877d77c2a6649adc4",
"sha256": "2534e286ef5ae58767b9b17be64742424ca1e52ec748b0d8f8e24eecd12bc28a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d5d7fd05762c47b877d77c2a6649adc4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 35648,
"upload_time": "2025-02-19T17:40:14",
"upload_time_iso_8601": "2025-02-19T17:40:14.296023Z",
"url": "https://files.pythonhosted.org/packages/4a/97/8b73b3684c63e88508ad308229f33a8a5be6c4762e4160f96e2a6fc46906/bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52390b1dd6494c743fa2c62bd7c35f5dec9f5802d01c1da1ef75a2e20a481ed4",
"md5": "e74d5eaebf37d9e61a8c5e9a40d2259d",
"sha256": "4ff079b0f4cf874af4b6816983557b6b9d45996f88736046653e2d2311fa1876"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e74d5eaebf37d9e61a8c5e9a40d2259d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 33772,
"upload_time": "2025-02-19T17:40:15",
"upload_time_iso_8601": "2025-02-19T17:40:15.341748Z",
"url": "https://files.pythonhosted.org/packages/52/39/0b1dd6494c743fa2c62bd7c35f5dec9f5802d01c1da1ef75a2e20a481ed4/bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "882398fc7482f957602c611203a9e485b9dbf4caf9d918e92453e3729cf5f0b4",
"md5": "ddf1a084e4f2ac92109c5d9fb27bc17d",
"sha256": "56c2728c96d1d4eb8e089e4797c018a56be3f905f440fb507773f44c567fcd38"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ddf1a084e4f2ac92109c5d9fb27bc17d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 33238,
"upload_time": "2025-02-19T17:40:16",
"upload_time_iso_8601": "2025-02-19T17:40:16.343634Z",
"url": "https://files.pythonhosted.org/packages/88/23/98fc7482f957602c611203a9e485b9dbf4caf9d918e92453e3729cf5f0b4/bsdiff4-1.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7504c3db957b7a324a3f25f721a82c288e9abe60059a0a2d2f9b3c19fb49cdb2",
"md5": "a3a0e3821c0804e2bfd15bc6deceacdc",
"sha256": "9deb9b3cdb4d327e43b8c7bd11ed3707587f1183b35fb8a4c06c4f34bce62c6a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a3a0e3821c0804e2bfd15bc6deceacdc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 35889,
"upload_time": "2025-02-19T17:40:18",
"upload_time_iso_8601": "2025-02-19T17:40:18.237242Z",
"url": "https://files.pythonhosted.org/packages/75/04/c3db957b7a324a3f25f721a82c288e9abe60059a0a2d2f9b3c19fb49cdb2/bsdiff4-1.2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3a873d2abfd98a33cd74a0fc491e527d734c222ae18b499a10689f3adbc8d5c",
"md5": "45630a5f4a31c24148640c5a33b726af",
"sha256": "e87c67b06ac96af6171b774dc8c03d2bde70c67c6488078eff44e0af4864acf6"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "45630a5f4a31c24148640c5a33b726af",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 33606,
"upload_time": "2025-02-19T17:40:21",
"upload_time_iso_8601": "2025-02-19T17:40:21.398603Z",
"url": "https://files.pythonhosted.org/packages/c3/a8/73d2abfd98a33cd74a0fc491e527d734c222ae18b499a10689f3adbc8d5c/bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bc3713b3bb3711b62e51f6f67d6d9f63098e4d3a51d8b91e52c962f5c01a2b7",
"md5": "29f38693683d917f3ec093e1391798d2",
"sha256": "04bb2948301ad48123d308bf2342c83cae81d7edb52d11bdde00266d89ca071e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "29f38693683d917f3ec093e1391798d2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 37211,
"upload_time": "2025-02-19T17:40:22",
"upload_time_iso_8601": "2025-02-19T17:40:22.365286Z",
"url": "https://files.pythonhosted.org/packages/6b/c3/713b3bb3711b62e51f6f67d6d9f63098e4d3a51d8b91e52c962f5c01a2b7/bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0bc540559695ea0bd3332c37ef8182fc0f96ceed838ae6b03ca9ddcd8cf0f7df",
"md5": "7b4d4d6185f623560d11c776842ef0cf",
"sha256": "43649a44fc21f017be902e19ccf7fb8bac6ef2d7f93d871bbc6bc49acec9ffee"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "7b4d4d6185f623560d11c776842ef0cf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 35750,
"upload_time": "2025-02-19T17:40:23",
"upload_time_iso_8601": "2025-02-19T17:40:23.554860Z",
"url": "https://files.pythonhosted.org/packages/0b/c5/40559695ea0bd3332c37ef8182fc0f96ceed838ae6b03ca9ddcd8cf0f7df/bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb9beb4683896119ec9d26d1eb3f12efc0d8a902451f4025db12c21c5a82992a",
"md5": "a769e6ac75cfc3fdf8cb2cb5c44767c9",
"sha256": "baa76ec557dc48847c3ed1ff5720b5095c439c868f7568da30dcabbabceb2b92"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a769e6ac75cfc3fdf8cb2cb5c44767c9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 35364,
"upload_time": "2025-02-19T17:40:24",
"upload_time_iso_8601": "2025-02-19T17:40:24.485423Z",
"url": "https://files.pythonhosted.org/packages/bb/9b/eb4683896119ec9d26d1eb3f12efc0d8a902451f4025db12c21c5a82992a/bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6ad0968b67aecf00873e0e5c07e97ba2300594505d4dbce62702b9f56a62d66",
"md5": "aafd1d2e272a0a9b3d04ce5053cf43ed",
"sha256": "701168e2931da777e6e72ae17f22eb519e9ce25ec5108d149c9da7b3b80e1184"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aafd1d2e272a0a9b3d04ce5053cf43ed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 32831,
"upload_time": "2025-02-19T17:40:25",
"upload_time_iso_8601": "2025-02-19T17:40:25.571726Z",
"url": "https://files.pythonhosted.org/packages/d6/ad/0968b67aecf00873e0e5c07e97ba2300594505d4dbce62702b9f56a62d66/bsdiff4-1.2.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c18adfcf72780f19cea1fe9948cbfb49890599424e94c752bf7d614093c0fc5",
"md5": "1804b0d51005bf368d12ad39b7e08232",
"sha256": "f9f2e5e716d35af3252f69a15afc2b166970c98596a1114af4c6d2834fe8e871"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "1804b0d51005bf368d12ad39b7e08232",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 18308,
"upload_time": "2025-02-19T17:40:26",
"upload_time_iso_8601": "2025-02-19T17:40:26.571320Z",
"url": "https://files.pythonhosted.org/packages/6c/18/adfcf72780f19cea1fe9948cbfb49890599424e94c752bf7d614093c0fc5/bsdiff4-1.2.6-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d5d31672172bb4566c1f1187fa28a1437125d4b5106bc55f9f7b9a75371094c",
"md5": "89d28839195f36c25f12ea9ac3acba1f",
"sha256": "0b29568d1e33e32ea075c12a696b32e4d6cea344d0270a2292075254efd86014"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "89d28839195f36c25f12ea9ac3acba1f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19553,
"upload_time": "2025-02-19T17:40:27",
"upload_time_iso_8601": "2025-02-19T17:40:27.592389Z",
"url": "https://files.pythonhosted.org/packages/9d/5d/31672172bb4566c1f1187fa28a1437125d4b5106bc55f9f7b9a75371094c/bsdiff4-1.2.6-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f56887d90b0e52ce7b5533a6f1390ab9a68215a70ba34848441730e215ffc1c",
"md5": "778893fb5e40a8761110d469b3b527c7",
"sha256": "a98d7975a670fc360d894ef2ec00294e6b7b19790c58457e40c8a5d57a1865b0"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "778893fb5e40a8761110d469b3b527c7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 16260,
"upload_time": "2025-02-19T17:40:28",
"upload_time_iso_8601": "2025-02-19T17:40:28.614701Z",
"url": "https://files.pythonhosted.org/packages/4f/56/887d90b0e52ce7b5533a6f1390ab9a68215a70ba34848441730e215ffc1c/bsdiff4-1.2.6-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d84c825a16932605d305501ed144ae5567a3dc90c9164a393c61cc0ed68df3f0",
"md5": "74710fea12206854f236fa39395168e8",
"sha256": "ee4417341712a4bf736694ce9ad3902b8c6fbd3425aadca44df9b66a51bbefa4"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "74710fea12206854f236fa39395168e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 16080,
"upload_time": "2025-02-19T17:40:29",
"upload_time_iso_8601": "2025-02-19T17:40:29.612369Z",
"url": "https://files.pythonhosted.org/packages/d8/4c/825a16932605d305501ed144ae5567a3dc90c9164a393c61cc0ed68df3f0/bsdiff4-1.2.6-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2e20cf538a786f47b08e26f3970a6f98c2b7b9d555c01e085425282944a2c7f",
"md5": "70612d5448525fd88653cfd9bbc1569d",
"sha256": "39ddfa2137de44c9743a611d71d263d0cc8c45e5b18ee84ca5ff6b6240be1740"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "70612d5448525fd88653cfd9bbc1569d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 33664,
"upload_time": "2025-02-19T17:40:31",
"upload_time_iso_8601": "2025-02-19T17:40:31.646297Z",
"url": "https://files.pythonhosted.org/packages/c2/e2/0cf538a786f47b08e26f3970a6f98c2b7b9d555c01e085425282944a2c7f/bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fc044ac255f1d16865e39ef941470e30bb5c362dd216b62837bb13880d1dd36",
"md5": "7edacc3f13c825d979d611de63ab2e3b",
"sha256": "6474d8f34f89d25fa1803c639cc8ed49121752a56a15b4cd21e9267154cdaf70"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7edacc3f13c825d979d611de63ab2e3b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 35648,
"upload_time": "2025-02-19T17:40:32",
"upload_time_iso_8601": "2025-02-19T17:40:32.793764Z",
"url": "https://files.pythonhosted.org/packages/1f/c0/44ac255f1d16865e39ef941470e30bb5c362dd216b62837bb13880d1dd36/bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb6bd5871af38cbb8527652b65463c3dd736b6250828d8d6daf48be712a2ebfe",
"md5": "f80b1b5ec9fa665a90123b54d7b795cf",
"sha256": "f8e9c876929c03ef5d448e2626e8b2961040c3a9f0dd3d483643dbccd0e7ff7a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f80b1b5ec9fa665a90123b54d7b795cf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 33792,
"upload_time": "2025-02-19T17:40:35",
"upload_time_iso_8601": "2025-02-19T17:40:35.498138Z",
"url": "https://files.pythonhosted.org/packages/cb/6b/d5871af38cbb8527652b65463c3dd736b6250828d8d6daf48be712a2ebfe/bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a1e7027849a6dc02b580e352b1528899053bd919029b185fbaa14c6f268180b",
"md5": "ef68fd514c407958483c2a2c56fe8f98",
"sha256": "46313f0eb8f63efb54a3c4219cd7b5b8a7795012b535f9d0838fe3f2b3349849"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ef68fd514c407958483c2a2c56fe8f98",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 33238,
"upload_time": "2025-02-19T17:40:37",
"upload_time_iso_8601": "2025-02-19T17:40:37.165425Z",
"url": "https://files.pythonhosted.org/packages/5a/1e/7027849a6dc02b580e352b1528899053bd919029b185fbaa14c6f268180b/bsdiff4-1.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97dfc4a3e2bb1c1f9f09c2c5f8a9025c67f5ec7fcc8949338e54cb2d4fba9009",
"md5": "a453550b6ba2e791fead8cacaf19605b",
"sha256": "f6b5757b1a83829f00ef34953c6865ea82e9c71126e465bc32d029c55da9e45b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a453550b6ba2e791fead8cacaf19605b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 35866,
"upload_time": "2025-02-19T17:40:38",
"upload_time_iso_8601": "2025-02-19T17:40:38.789596Z",
"url": "https://files.pythonhosted.org/packages/97/df/c4a3e2bb1c1f9f09c2c5f8a9025c67f5ec7fcc8949338e54cb2d4fba9009/bsdiff4-1.2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "830376a5aaaa0ccc282b239b3f148f6dd6033d37f79c1d1a89846b712224d132",
"md5": "bbe7c8702c794edb6e1d4d6f4280cc7f",
"sha256": "734552992ecc86749a8ef55d03f999f9a47576cc609d7d4d9a7aec274b43ee4d"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bbe7c8702c794edb6e1d4d6f4280cc7f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 33688,
"upload_time": "2025-02-19T17:40:39",
"upload_time_iso_8601": "2025-02-19T17:40:39.762993Z",
"url": "https://files.pythonhosted.org/packages/83/03/76a5aaaa0ccc282b239b3f148f6dd6033d37f79c1d1a89846b712224d132/bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3b3b240d4840a16d923c60e8e9eacf0777cf9378e30610037f6c85324daea85",
"md5": "221413daabd1615ce4a8d4a3042fb49b",
"sha256": "853c3221daac6f8d347f12eb0b73ca9dbb7db483e7b5f40b1e2fbb05730645a7"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "221413daabd1615ce4a8d4a3042fb49b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 37273,
"upload_time": "2025-02-19T17:40:41",
"upload_time_iso_8601": "2025-02-19T17:40:41.626644Z",
"url": "https://files.pythonhosted.org/packages/b3/b3/b240d4840a16d923c60e8e9eacf0777cf9378e30610037f6c85324daea85/bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d842223a09c4950a3e419ce94eb0af6d90c1ee562b9962ef2d72515f4ad6271",
"md5": "fb864f34f08a2c1e55fce7a1a30d5b0d",
"sha256": "94526dc11e56f330c2f4b1e2e9389b958a7891f6c86b5aac83bd9c7a90eb088a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "fb864f34f08a2c1e55fce7a1a30d5b0d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 35844,
"upload_time": "2025-02-19T17:40:42",
"upload_time_iso_8601": "2025-02-19T17:40:42.646172Z",
"url": "https://files.pythonhosted.org/packages/7d/84/2223a09c4950a3e419ce94eb0af6d90c1ee562b9962ef2d72515f4ad6271/bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "187bc02f703b449feb20b245eb803e7d446508b80d5b4065d1eb9cc75d02ae3b",
"md5": "3b0fda884fd17b93a0042df63fc0e6b8",
"sha256": "f5474e1d9253564ed0823e2685a403d9dfdbba3c7b70a80f5066d61427848253"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "3b0fda884fd17b93a0042df63fc0e6b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 35418,
"upload_time": "2025-02-19T17:40:44",
"upload_time_iso_8601": "2025-02-19T17:40:44.562669Z",
"url": "https://files.pythonhosted.org/packages/18/7b/c02f703b449feb20b245eb803e7d446508b80d5b4065d1eb9cc75d02ae3b/bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb52623ee28011b6935f0dfe67397ec27c2a900b9f0bda1b1ec2a5b174c53fb7",
"md5": "193aa3bbc6cc351d65f23d5b60297769",
"sha256": "5529731ac88151345a8bb76dad4fdb218af10a8a505161d1aa3d669e49cb7b77"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "193aa3bbc6cc351d65f23d5b60297769",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 32892,
"upload_time": "2025-02-19T17:40:45",
"upload_time_iso_8601": "2025-02-19T17:40:45.552979Z",
"url": "https://files.pythonhosted.org/packages/eb/52/623ee28011b6935f0dfe67397ec27c2a900b9f0bda1b1ec2a5b174c53fb7/bsdiff4-1.2.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "446ce740e347bb46ea08ceacf39df56c2ffd2bd20b95d458409ea303fbf2b946",
"md5": "35923d22986f9068001f0ff54b6eb05e",
"sha256": "c8089827c41b37f7c9192492742289929097c5ab2a6b3a120919fee27fbc01b8"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "35923d22986f9068001f0ff54b6eb05e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 18304,
"upload_time": "2025-02-19T17:40:47",
"upload_time_iso_8601": "2025-02-19T17:40:47.370702Z",
"url": "https://files.pythonhosted.org/packages/44/6c/e740e347bb46ea08ceacf39df56c2ffd2bd20b95d458409ea303fbf2b946/bsdiff4-1.2.6-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88d19be6f6124afab9837db1ffc5801ca1aa86f2077d4224ff729e88fabada71",
"md5": "66b9acbf5ab8a41178303c8ddb5b16bb",
"sha256": "37ff935ba714e0726584dad2bc4c063218b588b110115e8554ebc438ee7bccf3"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "66b9acbf5ab8a41178303c8ddb5b16bb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 19543,
"upload_time": "2025-02-19T17:40:48",
"upload_time_iso_8601": "2025-02-19T17:40:48.369051Z",
"url": "https://files.pythonhosted.org/packages/88/d1/9be6f6124afab9837db1ffc5801ca1aa86f2077d4224ff729e88fabada71/bsdiff4-1.2.6-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1871cc9993ec9c24a1094dea71b99135cf295fcacc2f890a6c610ac3390b1bd1",
"md5": "bdcda91e8690cd1a7b1e8e33fc2381f2",
"sha256": "59787e3f9aeed52128266d2898baf81d9d5af265993f947c5510d3eb3df52026"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "bdcda91e8690cd1a7b1e8e33fc2381f2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 15932,
"upload_time": "2025-02-19T17:40:50",
"upload_time_iso_8601": "2025-02-19T17:40:50.067619Z",
"url": "https://files.pythonhosted.org/packages/18/71/cc9993ec9c24a1094dea71b99135cf295fcacc2f890a6c610ac3390b1bd1/bsdiff4-1.2.6-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1a33c50a006c7e2d4ae83db612187359296bc05b5f027357943089781952483",
"md5": "5082d6cad3456ac4cdb7423e7b898219",
"sha256": "ba6e85116805318b5988b006029d40817777cbd372dea3d6f0274a408ee645c2"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5082d6cad3456ac4cdb7423e7b898219",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 31935,
"upload_time": "2025-02-19T17:40:51",
"upload_time_iso_8601": "2025-02-19T17:40:51.025606Z",
"url": "https://files.pythonhosted.org/packages/a1/a3/3c50a006c7e2d4ae83db612187359296bc05b5f027357943089781952483/bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55ba133d83b248d17cdae373d1eb9fdc7d14beb2e6c7ef537245c5e7a729a709",
"md5": "f63e20b503d65c888705edb9a3634348",
"sha256": "429ff66d8c1c813bc647fc5d975598853ce30632cb59ed0d1551aa6fd959233a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f63e20b503d65c888705edb9a3634348",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 33888,
"upload_time": "2025-02-19T17:40:52",
"upload_time_iso_8601": "2025-02-19T17:40:52.019874Z",
"url": "https://files.pythonhosted.org/packages/55/ba/133d83b248d17cdae373d1eb9fdc7d14beb2e6c7ef537245c5e7a729a709/bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be3f3254ac9197f440254b248251fd8f5cd79f62c0f1995268c849fde90a4962",
"md5": "3db5713ee6e1d2caffbff3aa0fd1ec9d",
"sha256": "c6ba69929a979ee6f3493a3c05ccb987c3cad25bc9da4e51472d93cf9a3480b2"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3db5713ee6e1d2caffbff3aa0fd1ec9d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 31930,
"upload_time": "2025-02-19T17:40:53",
"upload_time_iso_8601": "2025-02-19T17:40:53.035480Z",
"url": "https://files.pythonhosted.org/packages/be/3f/3254ac9197f440254b248251fd8f5cd79f62c0f1995268c849fde90a4962/bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "079886d2ec649f167e241beca057421e8965f105d90c7eebafcab175c4b1b939",
"md5": "d4942eeff20e58e9250b095264a22153",
"sha256": "25dcc0e78a32c26d813db0a810db85da9414b774cea572558fe33ff0442459e5"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d4942eeff20e58e9250b095264a22153",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 31341,
"upload_time": "2025-02-19T17:40:54",
"upload_time_iso_8601": "2025-02-19T17:40:54.058063Z",
"url": "https://files.pythonhosted.org/packages/07/98/86d2ec649f167e241beca057421e8965f105d90c7eebafcab175c4b1b939/bsdiff4-1.2.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "293c85b02575a8f8838f5c5fcaa5d3a4c708ea00c2d13f93be4eefefb1d862ae",
"md5": "025997e2c839b891e569bf1fdb757da5",
"sha256": "15e2278123c7ee7a348f7e76814f34b3c8062ca4f24492a7358c426d79507404"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "025997e2c839b891e569bf1fdb757da5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 34137,
"upload_time": "2025-02-19T17:40:55",
"upload_time_iso_8601": "2025-02-19T17:40:55.000468Z",
"url": "https://files.pythonhosted.org/packages/29/3c/85b02575a8f8838f5c5fcaa5d3a4c708ea00c2d13f93be4eefefb1d862ae/bsdiff4-1.2.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3132fbaeffa2572b855ecfcbbc7c6f96ef298c8e9ed64dd9189839a3715f676a",
"md5": "ee0cbcf5464f5b5024f6784f9faee3f8",
"sha256": "57f9a7cc99ee1938f84265e3b781cdc6c26d2691c7c95a2fe237ee65409e3b7b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ee0cbcf5464f5b5024f6784f9faee3f8",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 31437,
"upload_time": "2025-02-19T17:40:56",
"upload_time_iso_8601": "2025-02-19T17:40:56.020070Z",
"url": "https://files.pythonhosted.org/packages/31/32/fbaeffa2572b855ecfcbbc7c6f96ef298c8e9ed64dd9189839a3715f676a/bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3082c033516fe02f9f41196f5f930de551a9fcb5ed296c3c5967084c3cfabcd",
"md5": "84a78630a8e0d03154baf5aa088a3db1",
"sha256": "d09319e005e86170642c1060929c7b53e11ba71130fa0f7e9934d366b9b0fdd9"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "84a78630a8e0d03154baf5aa088a3db1",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 35071,
"upload_time": "2025-02-19T17:40:57",
"upload_time_iso_8601": "2025-02-19T17:40:57.009953Z",
"url": "https://files.pythonhosted.org/packages/d3/08/2c033516fe02f9f41196f5f930de551a9fcb5ed296c3c5967084c3cfabcd/bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3fb9574bf779688f3ec8b9f2250e8ba1f148e35e16992f2383180f2766ada1e",
"md5": "a3817b80b34eb1270f8aa4a91677ebd4",
"sha256": "d358a66f33075b3efebc91f60350fb2d334d2fe2d15b2aba7cfbb4cb12be2624"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "a3817b80b34eb1270f8aa4a91677ebd4",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 33390,
"upload_time": "2025-02-19T17:40:58",
"upload_time_iso_8601": "2025-02-19T17:40:58.097870Z",
"url": "https://files.pythonhosted.org/packages/e3/fb/9574bf779688f3ec8b9f2250e8ba1f148e35e16992f2383180f2766ada1e/bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8458596067f4d1cfe5dd3e9382eaaf2feefe80040662f16221d7e7ee5f98c7e0",
"md5": "7636b095c263c1e47f78321f64486af5",
"sha256": "b5f98e9f02a7bca85dd2ae5d728feb6279d745e0809978b6cde3ac5f82e25328"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "7636b095c263c1e47f78321f64486af5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 33070,
"upload_time": "2025-02-19T17:40:59",
"upload_time_iso_8601": "2025-02-19T17:40:59.147452Z",
"url": "https://files.pythonhosted.org/packages/84/58/596067f4d1cfe5dd3e9382eaaf2feefe80040662f16221d7e7ee5f98c7e0/bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7930f35b0e552db7ac457b1df54538e08e8aee373f7f2eb3f2d6c06e9532504c",
"md5": "a5d24dd97669572c94402b77e3d1a169",
"sha256": "bc1efdaea5a18b8a5cd149baf275cdb5c294d7143556042ce28116cf1e6c70cc"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a5d24dd97669572c94402b77e3d1a169",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 30550,
"upload_time": "2025-02-19T17:41:00",
"upload_time_iso_8601": "2025-02-19T17:41:00.190491Z",
"url": "https://files.pythonhosted.org/packages/79/30/f35b0e552db7ac457b1df54538e08e8aee373f7f2eb3f2d6c06e9532504c/bsdiff4-1.2.6-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ac77e1da9eb7c6b922c4433cb8bf6df9128aac9f611ccdc64d31ae4cb7f86c1",
"md5": "4c237c09ffef82518b746223bfd09780",
"sha256": "5ae913b3fe59867b2ba204846059817fdbd84c62e72f299656baf3371b48cddb"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "4c237c09ffef82518b746223bfd09780",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 18235,
"upload_time": "2025-02-19T17:41:01",
"upload_time_iso_8601": "2025-02-19T17:41:01.162790Z",
"url": "https://files.pythonhosted.org/packages/5a/c7/7e1da9eb7c6b922c4433cb8bf6df9128aac9f611ccdc64d31ae4cb7f86c1/bsdiff4-1.2.6-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3046605a0249d639aa0da3319e59e9b00b7f48d0143dfe8a679c34bdeadbe895",
"md5": "84afef1a931df083e2529e9b4565610c",
"sha256": "6c94e978fc35c5ae97fce0a76b694885d11726f76e7b90df86c019c53e10494a"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "84afef1a931df083e2529e9b4565610c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 19573,
"upload_time": "2025-02-19T17:41:02",
"upload_time_iso_8601": "2025-02-19T17:41:02.261504Z",
"url": "https://files.pythonhosted.org/packages/30/46/605a0249d639aa0da3319e59e9b00b7f48d0143dfe8a679c34bdeadbe895/bsdiff4-1.2.6-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3ac15e9aee23a04206be1901a4a2f7aeb0fedd85470108cc6e60afc388a95d2",
"md5": "32fd933fd58947ae1a87d971c3f1aee2",
"sha256": "7a39e96b6bdecadde9ec25a0588047c823eef2410870e275bc1d9079e7a9b763"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "32fd933fd58947ae1a87d971c3f1aee2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 16147,
"upload_time": "2025-02-19T17:41:04",
"upload_time_iso_8601": "2025-02-19T17:41:04.142209Z",
"url": "https://files.pythonhosted.org/packages/e3/ac/15e9aee23a04206be1901a4a2f7aeb0fedd85470108cc6e60afc388a95d2/bsdiff4-1.2.6-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1561c44ba8da97d1e45aea7d5305eca2c89225cdb6c85dd3db71525aca4f8735",
"md5": "f31c89a71026fcbcecbe9ece15d87bf4",
"sha256": "8ddd94137e3bfb71e2a5efae179f8aa1660192f822835e0bfd857b6e31158c06"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f31c89a71026fcbcecbe9ece15d87bf4",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 32960,
"upload_time": "2025-02-19T17:41:05",
"upload_time_iso_8601": "2025-02-19T17:41:05.124030Z",
"url": "https://files.pythonhosted.org/packages/15/61/c44ba8da97d1e45aea7d5305eca2c89225cdb6c85dd3db71525aca4f8735/bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01dfa2c5df7b52b884d8346d1a2d4afe0ff8fe1d16f2c299e4c3675bed77a655",
"md5": "20a117ae12183241df8983d578859ccf",
"sha256": "b713db1ab30d4cc4b2d01551360617907dd43313bfe0b64fa96e6e30b98cfb8e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "20a117ae12183241df8983d578859ccf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 34864,
"upload_time": "2025-02-19T17:41:06",
"upload_time_iso_8601": "2025-02-19T17:41:06.097596Z",
"url": "https://files.pythonhosted.org/packages/01/df/a2c5df7b52b884d8346d1a2d4afe0ff8fe1d16f2c299e4c3675bed77a655/bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f39a4512f89a69f7b2c10d18d4c5e19b495582696bf468ab48bab7784a5bcedb",
"md5": "931b108099c2066ca674e3cb0e9eb7ba",
"sha256": "4679a032f803aa3e9cb64d2c9fd1740de8902ef746a2f41dbed60da8615935de"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "931b108099c2066ca674e3cb0e9eb7ba",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 32992,
"upload_time": "2025-02-19T17:41:07",
"upload_time_iso_8601": "2025-02-19T17:41:07.146175Z",
"url": "https://files.pythonhosted.org/packages/f3/9a/4512f89a69f7b2c10d18d4c5e19b495582696bf468ab48bab7784a5bcedb/bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e50b2ad9156e56828f4dc30d514562e17139c5838a99d28f808048b339bcbb15",
"md5": "e5c7d6cb394fb033966bfef75ae09d79",
"sha256": "2a800adc653fcad0f700dbe4efe4bbbc00a70be78a9f356a9a2b8816b8586c6b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e5c7d6cb394fb033966bfef75ae09d79",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 32388,
"upload_time": "2025-02-19T17:41:08",
"upload_time_iso_8601": "2025-02-19T17:41:08.196970Z",
"url": "https://files.pythonhosted.org/packages/e5/0b/2ad9156e56828f4dc30d514562e17139c5838a99d28f808048b339bcbb15/bsdiff4-1.2.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "960eab78ef38f065c23a22e1aca7f388c1d1ff9abf6ab6bbe25364d7a3f4f9ca",
"md5": "486b53c47e9cf9bf49a4443d3d741ba9",
"sha256": "88c1bf726f31d8b9ff78a63e2f0c99ae7b7ec0ed8197ee5faec857df60362a8b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "486b53c47e9cf9bf49a4443d3d741ba9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 35098,
"upload_time": "2025-02-19T17:41:09",
"upload_time_iso_8601": "2025-02-19T17:41:09.260019Z",
"url": "https://files.pythonhosted.org/packages/96/0e/ab78ef38f065c23a22e1aca7f388c1d1ff9abf6ab6bbe25364d7a3f4f9ca/bsdiff4-1.2.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccbd97aa34e8ecaa76d783ec518d3836e9aae67ffbfbd78297bcd33a1eae96f8",
"md5": "d711e379deaf52677f87928d72c0df42",
"sha256": "3096347c559028d85dd04d62f482315f58ce747f30b2cc762001e4625ef48f1e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d711e379deaf52677f87928d72c0df42",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 32445,
"upload_time": "2025-02-19T17:41:10",
"upload_time_iso_8601": "2025-02-19T17:41:10.328836Z",
"url": "https://files.pythonhosted.org/packages/cc/bd/97aa34e8ecaa76d783ec518d3836e9aae67ffbfbd78297bcd33a1eae96f8/bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "610c7c85c175a4860eb3fbfa16818f8268708436d7f458558d8c9eaee818a37b",
"md5": "c30df19d90e1b0f827278dd24177e360",
"sha256": "6d002c09b4113bbc19889aa0df63adeb8eb3e8969aa843e4304a3a526e34ac36"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c30df19d90e1b0f827278dd24177e360",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 36022,
"upload_time": "2025-02-19T17:41:11",
"upload_time_iso_8601": "2025-02-19T17:41:11.359340Z",
"url": "https://files.pythonhosted.org/packages/61/0c/7c85c175a4860eb3fbfa16818f8268708436d7f458558d8c9eaee818a37b/bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff62963f5a5b3942f4ed5b2a7059cbd1b62b459b76f8a7870e0c0836235935d2",
"md5": "b13b826abbd715b987d8527c869d309d",
"sha256": "b6afa0d97cb80cb087f8d1015fa7e64fd3d938b4ea6a0d76dbfca8af506636a7"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "b13b826abbd715b987d8527c869d309d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 34392,
"upload_time": "2025-02-19T17:41:13",
"upload_time_iso_8601": "2025-02-19T17:41:13.266413Z",
"url": "https://files.pythonhosted.org/packages/ff/62/963f5a5b3942f4ed5b2a7059cbd1b62b459b76f8a7870e0c0836235935d2/bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf6f22f2c26507e80aced026389d0e31fed7606660c459101c77751aeb817648",
"md5": "0d1f0b6b32f48aec0bdf322ddcaae55b",
"sha256": "ccb7054260db3e9c63d990a7974ed36080f02e7da90d6cb03d8175101c19b4ee"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "0d1f0b6b32f48aec0bdf322ddcaae55b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 34131,
"upload_time": "2025-02-19T17:41:14",
"upload_time_iso_8601": "2025-02-19T17:41:14.292445Z",
"url": "https://files.pythonhosted.org/packages/bf/6f/22f2c26507e80aced026389d0e31fed7606660c459101c77751aeb817648/bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ad71a9f6c3ccd28843d43e319a82aa0f04483e43aabd12f986d6351ff45195f",
"md5": "1add0a85e4c53c627cae9ef518e4f609",
"sha256": "a6566630c592fcf0b35bc507328ddf4b22732ece7a6a3657c6dcfddd532ed13b"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1add0a85e4c53c627cae9ef518e4f609",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 31600,
"upload_time": "2025-02-19T17:41:15",
"upload_time_iso_8601": "2025-02-19T17:41:15.332862Z",
"url": "https://files.pythonhosted.org/packages/3a/d7/1a9f6c3ccd28843d43e319a82aa0f04483e43aabd12f986d6351ff45195f/bsdiff4-1.2.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "900287f05e990a506f0024380dc07b7fe135cd63d81826108bc4349a8743ac60",
"md5": "a6a0f004350674e7afe614e6f4be52a0",
"sha256": "6ddadb8cde9a764891713f86b8e4a20a29bf9b46e830e5235aac49776b61db9e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "a6a0f004350674e7afe614e6f4be52a0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 18186,
"upload_time": "2025-02-19T17:41:17",
"upload_time_iso_8601": "2025-02-19T17:41:17.161328Z",
"url": "https://files.pythonhosted.org/packages/90/02/87f05e990a506f0024380dc07b7fe135cd63d81826108bc4349a8743ac60/bsdiff4-1.2.6-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dafce6e95604dbee7f5ced62309295adcc4befe627a151e3c8a6c279b59f35c8",
"md5": "668a52319b6fbf4bfaf1aa15dc3e1f32",
"sha256": "51706c27ad6064d92a11e75774e402b7872904e293f3b7518ab8bb49459b4772"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "668a52319b6fbf4bfaf1aa15dc3e1f32",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19466,
"upload_time": "2025-02-19T17:41:18",
"upload_time_iso_8601": "2025-02-19T17:41:18.700411Z",
"url": "https://files.pythonhosted.org/packages/da/fc/e6e95604dbee7f5ced62309295adcc4befe627a151e3c8a6c279b59f35c8/bsdiff4-1.2.6-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d3bd911d9a30815ca9026487a6d62b6067528d2fb6984f1db78977978efe85c",
"md5": "c63baecd026072bd191f910dc1e38a24",
"sha256": "402eff417dc0dd1cebc2dd8fb59047e20a038f6566481214356068b4e329ac27"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c63baecd026072bd191f910dc1e38a24",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 16171,
"upload_time": "2025-02-19T17:41:19",
"upload_time_iso_8601": "2025-02-19T17:41:19.743198Z",
"url": "https://files.pythonhosted.org/packages/9d/3b/d911d9a30815ca9026487a6d62b6067528d2fb6984f1db78977978efe85c/bsdiff4-1.2.6-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5b526cbc52324a0faeaa7c49a6ade90a302fa8b1c35a9ec83dd20325b826761",
"md5": "f382b31712c194690b5d4cc82eaf7e7d",
"sha256": "93b45e7fa990cdef0627a0d78c8380f03c71e4b770748b2305b980785f1928a9"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f382b31712c194690b5d4cc82eaf7e7d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 15983,
"upload_time": "2025-02-19T17:41:20",
"upload_time_iso_8601": "2025-02-19T17:41:20.890575Z",
"url": "https://files.pythonhosted.org/packages/a5/b5/26cbc52324a0faeaa7c49a6ade90a302fa8b1c35a9ec83dd20325b826761/bsdiff4-1.2.6-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef7183ae91177d153efe38e95b038fa1f7561d82e0205b8ef4a98b463f9d2bb2",
"md5": "1ceab74649d1bef38d862a5151ad5684",
"sha256": "dffcf41411c2c2e47a009b7436c9c9f0499f29ff9ecf703461284c738889f10d"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1ceab74649d1bef38d862a5151ad5684",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 32458,
"upload_time": "2025-02-19T17:41:23",
"upload_time_iso_8601": "2025-02-19T17:41:23.570094Z",
"url": "https://files.pythonhosted.org/packages/ef/71/83ae91177d153efe38e95b038fa1f7561d82e0205b8ef4a98b463f9d2bb2/bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba0af8c9cf227cc259fdf322d23400d5777d7e9030e66361203363fbefc1caa2",
"md5": "00c278e41ed2f3dfd0258371e99c373f",
"sha256": "e6f5f03db181cdc341563c25b2e30079c67c639b7fe7439720f3b83140fc6555"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "00c278e41ed2f3dfd0258371e99c373f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 34513,
"upload_time": "2025-02-19T17:41:25",
"upload_time_iso_8601": "2025-02-19T17:41:25.551609Z",
"url": "https://files.pythonhosted.org/packages/ba/0a/f8c9cf227cc259fdf322d23400d5777d7e9030e66361203363fbefc1caa2/bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b47202bca10bdb089c664767bfb67ae32c760c63bfd8eb30512b494a6edc9ac",
"md5": "7b1c52fd5c9cbf3da85ca462e4cf8570",
"sha256": "f39e910ea74f94c8826549857e0a92b7dd863551ea5c6d74b5d2f6218ac74fce"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7b1c52fd5c9cbf3da85ca462e4cf8570",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 32413,
"upload_time": "2025-02-19T17:41:28",
"upload_time_iso_8601": "2025-02-19T17:41:28.757361Z",
"url": "https://files.pythonhosted.org/packages/4b/47/202bca10bdb089c664767bfb67ae32c760c63bfd8eb30512b494a6edc9ac/bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce78ed9c881f2d1258aa992e5a013e0f0d5c707fa01880458955d4a7435f8ef2",
"md5": "4c3658fb90104459016abe06434d7ebe",
"sha256": "e87394a601ccd383474d8dbe10187ed2da45d2ae6b631268ec674385725e50b5"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4c3658fb90104459016abe06434d7ebe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 31946,
"upload_time": "2025-02-19T17:41:32",
"upload_time_iso_8601": "2025-02-19T17:41:32.613138Z",
"url": "https://files.pythonhosted.org/packages/ce/78/ed9c881f2d1258aa992e5a013e0f0d5c707fa01880458955d4a7435f8ef2/bsdiff4-1.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f81a7273ff11cf6586afbbd77f0dcc830d3b7d70dad95f59007f4162cbde3537",
"md5": "54b0ad6ccf7cd3295ef5915c7873420f",
"sha256": "6892a9fbd5ff661398185f1f63132694f3e26f7b1dc2126e19bd0498e91cc6c2"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "54b0ad6ccf7cd3295ef5915c7873420f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 34691,
"upload_time": "2025-02-19T17:41:34",
"upload_time_iso_8601": "2025-02-19T17:41:34.449714Z",
"url": "https://files.pythonhosted.org/packages/f8/1a/7273ff11cf6586afbbd77f0dcc830d3b7d70dad95f59007f4162cbde3537/bsdiff4-1.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01f494df6b71d4de84060d6dffd2d0409368c81c2a96167e07e52598bafe62de",
"md5": "9f0c9f2f1fdd8b576886b035ab9a5f6c",
"sha256": "f1fdcd710127f36aafadb4cb6de60b3f79f3609f2c65533d349fe15a5340c7a3"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9f0c9f2f1fdd8b576886b035ab9a5f6c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 31913,
"upload_time": "2025-02-19T17:41:35",
"upload_time_iso_8601": "2025-02-19T17:41:35.461496Z",
"url": "https://files.pythonhosted.org/packages/01/f4/94df6b71d4de84060d6dffd2d0409368c81c2a96167e07e52598bafe62de/bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03ada8af514359e5041aecf3708a965b2a8f90c80fe5f1de91d254302cd92d2c",
"md5": "9a24c129fff829db62c45daa1b065907",
"sha256": "724bfdb9a99d89d89bc6e2a9b8b01fd9a1b5ac13397903c0fa13d7f2c57be2dd"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9a24c129fff829db62c45daa1b065907",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 35492,
"upload_time": "2025-02-19T17:41:36",
"upload_time_iso_8601": "2025-02-19T17:41:36.432303Z",
"url": "https://files.pythonhosted.org/packages/03/ad/a8af514359e5041aecf3708a965b2a8f90c80fe5f1de91d254302cd92d2c/bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14a9abf79b54b1e0de95f6db531ab15abe31bdd6018325e0c3de34784ad6aacc",
"md5": "8b662d79987bbab1f71d87a32c3f9efd",
"sha256": "cd5c20cd03673c8f44a3fca4a032accde0f492c55401dea77af957d55f2bd580"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b662d79987bbab1f71d87a32c3f9efd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 34037,
"upload_time": "2025-02-19T17:41:37",
"upload_time_iso_8601": "2025-02-19T17:41:37.424327Z",
"url": "https://files.pythonhosted.org/packages/14/a9/abf79b54b1e0de95f6db531ab15abe31bdd6018325e0c3de34784ad6aacc/bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d393f7a5ea73dfd7528882ef0fe2290e24fcd56f9aa07adbb2216520f0cff384",
"md5": "aa42a32dc3a1daaf448c91339720d5e6",
"sha256": "8a46a3f579247a2f9b7a2b49e6176be7903bf15b0b156fbda6bdbb47bf717bff"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "aa42a32dc3a1daaf448c91339720d5e6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 33482,
"upload_time": "2025-02-19T17:41:38",
"upload_time_iso_8601": "2025-02-19T17:41:38.384899Z",
"url": "https://files.pythonhosted.org/packages/d3/93/f7a5ea73dfd7528882ef0fe2290e24fcd56f9aa07adbb2216520f0cff384/bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e60b1fb6f1f2a95ff5acd4081d0ff3b6d5fcbd62352394125ea5334d5dd5dbb1",
"md5": "016f3af1a4ec2b316e12f97a3d98a250",
"sha256": "8708f83282f41a253b1b2436e337a3d934373e92fbc1a39ea7565d7b2f03c70e"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "016f3af1a4ec2b316e12f97a3d98a250",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 31053,
"upload_time": "2025-02-19T17:41:39",
"upload_time_iso_8601": "2025-02-19T17:41:39.417436Z",
"url": "https://files.pythonhosted.org/packages/e6/0b/1fb6f1f2a95ff5acd4081d0ff3b6d5fcbd62352394125ea5334d5dd5dbb1/bsdiff4-1.2.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b61ec31190d3edb13772b822094986d2c090d9a423da96d640b8859ebfdef3e9",
"md5": "515f495cdf8874aeb60bef79bb17e886",
"sha256": "af3cfbc97923ff31d5f028a0c2ebfcae28a50fa571be6cee660bee4d82dc66f9"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "515f495cdf8874aeb60bef79bb17e886",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 18210,
"upload_time": "2025-02-19T17:41:40",
"upload_time_iso_8601": "2025-02-19T17:41:40.441698Z",
"url": "https://files.pythonhosted.org/packages/b6/1e/c31190d3edb13772b822094986d2c090d9a423da96d640b8859ebfdef3e9/bsdiff4-1.2.6-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bc96e39788d39f92d3fb743044ccb9b111bdb3e6bb6a58fbdfe6cb1f1c56a10",
"md5": "82ccfd0af5944cf5202fe701b5349923",
"sha256": "216325b9f2966c288740ea5cfc3e8a606922458a9a81f74b710a8d21cd4f86ea"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "82ccfd0af5944cf5202fe701b5349923",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19479,
"upload_time": "2025-02-19T17:41:42",
"upload_time_iso_8601": "2025-02-19T17:41:42.388027Z",
"url": "https://files.pythonhosted.org/packages/6b/c9/6e39788d39f92d3fb743044ccb9b111bdb3e6bb6a58fbdfe6cb1f1c56a10/bsdiff4-1.2.6-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46ed1d8a6e8ade41e9984b843a503411369e072fca0628148c35d291eec64036",
"md5": "97c7452421e073e90890f2cd8037f4ee",
"sha256": "25575a769f22cb3f8abad34902f98b1351356578fb8ee9e87bee77f97358fd11"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "97c7452421e073e90890f2cd8037f4ee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 16210,
"upload_time": "2025-02-19T17:41:43",
"upload_time_iso_8601": "2025-02-19T17:41:43.427809Z",
"url": "https://files.pythonhosted.org/packages/46/ed/1d8a6e8ade41e9984b843a503411369e072fca0628148c35d291eec64036/bsdiff4-1.2.6-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97594e08d25ee12b5589094e6975e3e4f20b9793c42053c470a6263a5dd970cf",
"md5": "dbdacf6293b69a33532450e1d434ade8",
"sha256": "2bb5847f908905022791787142d00814b47f47990ab32be56e6cb3fc52a6f0ef"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dbdacf6293b69a33532450e1d434ade8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 16022,
"upload_time": "2025-02-19T17:41:45",
"upload_time_iso_8601": "2025-02-19T17:41:45.285008Z",
"url": "https://files.pythonhosted.org/packages/97/59/4e08d25ee12b5589094e6975e3e4f20b9793c42053c470a6263a5dd970cf/bsdiff4-1.2.6-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d52a5c59aa368d134a7bda007a2682722cff622aeae49111d81192a8a7aef4dc",
"md5": "cfc2b1417305e29f8e758e1c7c64a3e3",
"sha256": "30b891dcd000c62db3d64d90fdfa8004057283048149312be8c29b3db6797ee3"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cfc2b1417305e29f8e758e1c7c64a3e3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 31807,
"upload_time": "2025-02-19T17:41:46",
"upload_time_iso_8601": "2025-02-19T17:41:46.354525Z",
"url": "https://files.pythonhosted.org/packages/d5/2a/5c59aa368d134a7bda007a2682722cff622aeae49111d81192a8a7aef4dc/bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b4362a7ade5c2457541a7ac4f652bf6fd1b6c5f1361d1072caac064575fa22a",
"md5": "8712b85cdfb9f749d1bae750cfab9981",
"sha256": "105467c646fa9259d4b66acdcca65aa1b1f628d52c0cf8d79e4c58f6a7eedefa"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8712b85cdfb9f749d1bae750cfab9981",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 33882,
"upload_time": "2025-02-19T17:41:47",
"upload_time_iso_8601": "2025-02-19T17:41:47.386864Z",
"url": "https://files.pythonhosted.org/packages/5b/43/62a7ade5c2457541a7ac4f652bf6fd1b6c5f1361d1072caac064575fa22a/bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d862779bc7af98e3a3f89eeae57db59bddfbd1e69bb31a57fb21a52d1800b707",
"md5": "8979c5a17c89a229ddda75f4bbf16c5a",
"sha256": "8cfe8212daba5c9e582018105c5e5d9d5029a83d0196baa8ab23191937478362"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8979c5a17c89a229ddda75f4bbf16c5a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 31791,
"upload_time": "2025-02-19T17:41:48",
"upload_time_iso_8601": "2025-02-19T17:41:48.471713Z",
"url": "https://files.pythonhosted.org/packages/d8/62/779bc7af98e3a3f89eeae57db59bddfbd1e69bb31a57fb21a52d1800b707/bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a51b5616f37d5a29179e60fed037b395862426326e68ea2c58e382be52d82ca7",
"md5": "394c40a867e5a3c1fb46a86c01a6a396",
"sha256": "d130718b6a7cc092fcdd42fccecb35096c8741f411c2d9dbf37072620d9813ee"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "394c40a867e5a3c1fb46a86c01a6a396",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 31254,
"upload_time": "2025-02-19T17:41:49",
"upload_time_iso_8601": "2025-02-19T17:41:49.508731Z",
"url": "https://files.pythonhosted.org/packages/a5/1b/5616f37d5a29179e60fed037b395862426326e68ea2c58e382be52d82ca7/bsdiff4-1.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60a475fe052673aa8fb26db563faacb7c3f75b3297ff597d75d84fdf2aace556",
"md5": "cc51ee8025e05932ee79cf9670d49c2e",
"sha256": "9d53fd3d9afb9660e237443bfd0aad24635c0f0117e4822b47bd290bd474ba83"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cc51ee8025e05932ee79cf9670d49c2e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 34066,
"upload_time": "2025-02-19T17:41:52",
"upload_time_iso_8601": "2025-02-19T17:41:52.032656Z",
"url": "https://files.pythonhosted.org/packages/60/a4/75fe052673aa8fb26db563faacb7c3f75b3297ff597d75d84fdf2aace556/bsdiff4-1.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "770e078179810f856c3758fd44fa1bdfdf35ac7e43ffbae158aa6f5eabc5ed27",
"md5": "0d6e8db3f0005fcc735c91f3bc6b35b0",
"sha256": "817a6c6e279c703ca0935438b745cb1d9e6039e521786dc0efa598d9143b0d0c"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0d6e8db3f0005fcc735c91f3bc6b35b0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 31843,
"upload_time": "2025-02-19T17:41:53",
"upload_time_iso_8601": "2025-02-19T17:41:53.168364Z",
"url": "https://files.pythonhosted.org/packages/77/0e/078179810f856c3758fd44fa1bdfdf35ac7e43ffbae158aa6f5eabc5ed27/bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f16db4a1c2102f94b4b88aaad4b027a36f9c155154c40d24ebae6dafd82762c6",
"md5": "7852533ea55cf6fac92a03c3b5fa852e",
"sha256": "b1ead97fd8527ff20870dc3100c798e93201ef319463aad5bf14ff2dbea3e3d3"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7852533ea55cf6fac92a03c3b5fa852e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 35407,
"upload_time": "2025-02-19T17:41:54",
"upload_time_iso_8601": "2025-02-19T17:41:54.163878Z",
"url": "https://files.pythonhosted.org/packages/f1/6d/b4a1c2102f94b4b88aaad4b027a36f9c155154c40d24ebae6dafd82762c6/bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "886e5b0334c4b0d1b64e7675fb74e9397fa152c4d527c99ce233208a2cfc44ef",
"md5": "264a590a64c0dfa1ca57db96015cb53a",
"sha256": "bdc0e7f8da93081982c73941de4c745e5586744c4cdc659afa1fec12a4694a03"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "264a590a64c0dfa1ca57db96015cb53a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 33912,
"upload_time": "2025-02-19T17:41:55",
"upload_time_iso_8601": "2025-02-19T17:41:55.150425Z",
"url": "https://files.pythonhosted.org/packages/88/6e/5b0334c4b0d1b64e7675fb74e9397fa152c4d527c99ce233208a2cfc44ef/bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9cfb9a35617a8b95d0349530297d64cb04cac4bb91f7e0d3939c218287d62bd5",
"md5": "c4bef2e040fe904d46e69a68a4b02f45",
"sha256": "650a9fb5cb3bf11b17c0f1ebfca9a22ce7d60a2f517ec3fca0fbcc95cae6e073"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "c4bef2e040fe904d46e69a68a4b02f45",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 33386,
"upload_time": "2025-02-19T17:41:56",
"upload_time_iso_8601": "2025-02-19T17:41:56.170451Z",
"url": "https://files.pythonhosted.org/packages/9c/fb/9a35617a8b95d0349530297d64cb04cac4bb91f7e0d3939c218287d62bd5/bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3abdc3a7aac03a8f4e1dadf870306c028f67382ec9e6b49cbe2127e889061ba",
"md5": "e4d5cab23e2e9ffeb6a335864eb764d7",
"sha256": "4cef2081202b540076bbca1c1c0d6abf90222576548638b2f159c0dcf4401f65"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e4d5cab23e2e9ffeb6a335864eb764d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 30967,
"upload_time": "2025-02-19T17:41:57",
"upload_time_iso_8601": "2025-02-19T17:41:57.193542Z",
"url": "https://files.pythonhosted.org/packages/e3/ab/dc3a7aac03a8f4e1dadf870306c028f67382ec9e6b49cbe2127e889061ba/bsdiff4-1.2.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "155f4e0a2f1d9e66374df2ff79aa502b06dd1b4864167e6643b02fec8f4454c0",
"md5": "b45915b2c694f8ec1d2142ffd33cca5e",
"sha256": "9e5be120d16498a8c8d48d8b94c03ff8a6382f0543938c87a10a2a74751284ec"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b45915b2c694f8ec1d2142ffd33cca5e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 18259,
"upload_time": "2025-02-19T17:41:59",
"upload_time_iso_8601": "2025-02-19T17:41:59.087963Z",
"url": "https://files.pythonhosted.org/packages/15/5f/4e0a2f1d9e66374df2ff79aa502b06dd1b4864167e6643b02fec8f4454c0/bsdiff4-1.2.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b134d338ebd44e6b9be7b61284b02e7a84c50567a7ebee0cf6adacd520ae1cf",
"md5": "63f2bde066c0e978e6c554f9237e44e8",
"sha256": "35a0208a68b9932f5bfa2a7fa7b63abce706e6319eadd40a1dfa156f202a0e12"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "63f2bde066c0e978e6c554f9237e44e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19525,
"upload_time": "2025-02-19T17:42:00",
"upload_time_iso_8601": "2025-02-19T17:42:00.084502Z",
"url": "https://files.pythonhosted.org/packages/1b/13/4d338ebd44e6b9be7b61284b02e7a84c50567a7ebee0cf6adacd520ae1cf/bsdiff4-1.2.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4af38579894ec44ceae5e120b37fc18cc7fc24021f0fb2fe7c90f92fa9c3c7ab",
"md5": "197a0cae29acda7a8e63cf52e027132f",
"sha256": "61f504f8ad04cc4f4aea06a56f81ba392fcfd58434b67210186772bc949f6b8d"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "197a0cae29acda7a8e63cf52e027132f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 16223,
"upload_time": "2025-02-19T17:42:01",
"upload_time_iso_8601": "2025-02-19T17:42:01.132286Z",
"url": "https://files.pythonhosted.org/packages/4a/f3/8579894ec44ceae5e120b37fc18cc7fc24021f0fb2fe7c90f92fa9c3c7ab/bsdiff4-1.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd4f4dce64c017702e0f16fde4cb79dbb5bf446d57135d3f76ebd4fb9fde55a9",
"md5": "9e946e11673d6d790663f156ba6f6c68",
"sha256": "e778f9e9e3df5f3ffdf82b338ceefa2a6fee3fd14366d50cde74dc849e083cbb"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9e946e11673d6d790663f156ba6f6c68",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 15868,
"upload_time": "2025-02-19T17:42:02",
"upload_time_iso_8601": "2025-02-19T17:42:02.902271Z",
"url": "https://files.pythonhosted.org/packages/bd/4f/4dce64c017702e0f16fde4cb79dbb5bf446d57135d3f76ebd4fb9fde55a9/bsdiff4-1.2.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67e56b7f12d45ac7cf9d842cafa2905262c78fe6ac43feca2439f9679267253a",
"md5": "baea01368c6a757defc00ae05702619e",
"sha256": "e08bc23ca5425f72d2c87a66b6ac4e8d7765abe04ed9c8233b8cdb3ef1ee6808"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "baea01368c6a757defc00ae05702619e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 17483,
"upload_time": "2025-02-19T17:42:04",
"upload_time_iso_8601": "2025-02-19T17:42:04.016276Z",
"url": "https://files.pythonhosted.org/packages/67/e5/6b7f12d45ac7cf9d842cafa2905262c78fe6ac43feca2439f9679267253a/bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "889c03a1bdb9c7804efa3dddb56987bcd5619f6f6c840e42c6d861ab4298e366",
"md5": "26d2739fe8262f22a46bd5b66d8c9c1b",
"sha256": "2e986f6278d9f1dc124d9c67533d6dd1c93883b5d57ca54c4e224ec888613ab7"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "26d2739fe8262f22a46bd5b66d8c9c1b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 16889,
"upload_time": "2025-02-19T17:42:05",
"upload_time_iso_8601": "2025-02-19T17:42:05.634204Z",
"url": "https://files.pythonhosted.org/packages/88/9c/03a1bdb9c7804efa3dddb56987bcd5619f6f6c840e42c6d861ab4298e366/bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7816109ba98222911bc6163c15f4605e19043c94982b3364f64dc1ac563e6a79",
"md5": "118b06fc59f4f13670168fdfeff509d6",
"sha256": "94290de262cb823bb557860c20769e63fd20f3d29b1a31b8c69e4309f2fdede0"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "118b06fc59f4f13670168fdfeff509d6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 17419,
"upload_time": "2025-02-19T17:42:07",
"upload_time_iso_8601": "2025-02-19T17:42:07.448671Z",
"url": "https://files.pythonhosted.org/packages/78/16/109ba98222911bc6163c15f4605e19043c94982b3364f64dc1ac563e6a79/bsdiff4-1.2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1da407abc7404975c5c06926f036db77ea97f0031ede68249a8ad090fc3c8ab",
"md5": "218ce168702cd53d52192162bfa17f1a",
"sha256": "9f246beea8dce9725b2ae17487059e488b213ea22e9df04170fca2dec9ac2f30"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "218ce168702cd53d52192162bfa17f1a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 19564,
"upload_time": "2025-02-19T17:42:08",
"upload_time_iso_8601": "2025-02-19T17:42:08.482345Z",
"url": "https://files.pythonhosted.org/packages/a1/da/407abc7404975c5c06926f036db77ea97f0031ede68249a8ad090fc3c8ab/bsdiff4-1.2.6-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d181afed540e467a0e1cebc5124f038edd4a4cf38b39e992be1450db70ae9879",
"md5": "64c0645459c876e7a7a0898c98f45ef9",
"sha256": "d9a3044af04fe6c83d065c34dda4598dfd9479639c7eee0523227693c24e09ef"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "64c0645459c876e7a7a0898c98f45ef9",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 16057,
"upload_time": "2025-02-19T17:42:09",
"upload_time_iso_8601": "2025-02-19T17:42:09.600991Z",
"url": "https://files.pythonhosted.org/packages/d1/81/afed540e467a0e1cebc5124f038edd4a4cf38b39e992be1450db70ae9879/bsdiff4-1.2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06d4b700f9f8e6e074ffdc4a1ebd7d013a6e79cb789fcc08d0d1b2a15997aac7",
"md5": "56e433d68a9b1aaf01882385138e2c77",
"sha256": "4fc2b9c8df45c29df2e87b215763dc7a47f3840a16222ca6909eb6b0a4bcd0c7"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "56e433d68a9b1aaf01882385138e2c77",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 17506,
"upload_time": "2025-02-19T17:42:10",
"upload_time_iso_8601": "2025-02-19T17:42:10.639251Z",
"url": "https://files.pythonhosted.org/packages/06/d4/b700f9f8e6e074ffdc4a1ebd7d013a6e79cb789fcc08d0d1b2a15997aac7/bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0667abfa26bef13975f219321d6c43c23b360d98d142830aace7a69a86e6782b",
"md5": "fe991ba5e20b54d4a6e2c43d5bd694ba",
"sha256": "92d80fc6a8bc6bd3586df31dda7acbeb9bfe73a1591008533843ee374e8f7395"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fe991ba5e20b54d4a6e2c43d5bd694ba",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 16886,
"upload_time": "2025-02-19T17:42:12",
"upload_time_iso_8601": "2025-02-19T17:42:12.049088Z",
"url": "https://files.pythonhosted.org/packages/06/67/abfa26bef13975f219321d6c43c23b360d98d142830aace7a69a86e6782b/bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "723612337e9986a9517adcd0a94fdf16c9e6a47dc91c3ceb9384d9851c250683",
"md5": "fda18b50345ba3da3163de92b972e9a9",
"sha256": "a28eefc0fef5e34d5a84fb717b44b69b0d483219509aaf44261390674081152f"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fda18b50345ba3da3163de92b972e9a9",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 17427,
"upload_time": "2025-02-19T17:42:13",
"upload_time_iso_8601": "2025-02-19T17:42:13.112567Z",
"url": "https://files.pythonhosted.org/packages/72/36/12337e9986a9517adcd0a94fdf16c9e6a47dc91c3ceb9384d9851c250683/bsdiff4-1.2.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9725af55aaaf1e26441f02194124547c4e473481f669dfa0a8173d6f0ff08682",
"md5": "6920cbe592822a5e5ea6d6d878560520",
"sha256": "4b7f1fd60e66220fc6986bf78f64ea603012cff4b6f8a2ccd83d0845d147f467"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "6920cbe592822a5e5ea6d6d878560520",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 19517,
"upload_time": "2025-02-19T17:42:14",
"upload_time_iso_8601": "2025-02-19T17:42:14.089568Z",
"url": "https://files.pythonhosted.org/packages/97/25/af55aaaf1e26441f02194124547c4e473481f669dfa0a8173d6f0ff08682/bsdiff4-1.2.6-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "666c7b5114652e5c2f9e35eb4b21d8cc683388a3244305a68172313a6e5e1f65",
"md5": "b226e3912e9c97848875547976e95dd7",
"sha256": "38dedd760a6f3a32d86aa91575c34f6541455357e7d90850f488ba8cd94108d7"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b226e3912e9c97848875547976e95dd7",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 16052,
"upload_time": "2025-02-19T17:42:15",
"upload_time_iso_8601": "2025-02-19T17:42:15.076826Z",
"url": "https://files.pythonhosted.org/packages/66/6c/7b5114652e5c2f9e35eb4b21d8cc683388a3244305a68172313a6e5e1f65/bsdiff4-1.2.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b9dec5a8cc7320aafb55ce8f693a306908626103599a498350365d75be1a2e2",
"md5": "2889ecf48d45c6510ccab64a3e2bc8e1",
"sha256": "e8b7261b0015b1f567e28b4b402552030fe9649b708c8201909d31a4a0ace991"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2889ecf48d45c6510ccab64a3e2bc8e1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 15831,
"upload_time": "2025-02-19T17:42:16",
"upload_time_iso_8601": "2025-02-19T17:42:16.895132Z",
"url": "https://files.pythonhosted.org/packages/9b/9d/ec5a8cc7320aafb55ce8f693a306908626103599a498350365d75be1a2e2/bsdiff4-1.2.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cad2dee734caa2f67d4531ba0e6543417cdd52b33ad054c489b34d18f6b1684",
"md5": "ce70fdd27d9d162f4272966cbdb370a9",
"sha256": "bfdefadc2c9ce07cbcdec29ba803935b87bb2649611e356c4ceeff797baa87a4"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ce70fdd27d9d162f4272966cbdb370a9",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 17506,
"upload_time": "2025-02-19T17:42:17",
"upload_time_iso_8601": "2025-02-19T17:42:17.912313Z",
"url": "https://files.pythonhosted.org/packages/3c/ad/2dee734caa2f67d4531ba0e6543417cdd52b33ad054c489b34d18f6b1684/bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e009cc5eccd8a13a8701abe946221f1689988d2b4c547e923f565279bc4c079e",
"md5": "ce6e6a2e78385b0ca3b3eafa3342d5f8",
"sha256": "74f6f3de195e50ee7ec128be0d184b01f1005a28e35a3b3275a88b5063c93523"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ce6e6a2e78385b0ca3b3eafa3342d5f8",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 16881,
"upload_time": "2025-02-19T17:42:19",
"upload_time_iso_8601": "2025-02-19T17:42:19.738081Z",
"url": "https://files.pythonhosted.org/packages/e0/09/cc5eccd8a13a8701abe946221f1689988d2b4c547e923f565279bc4c079e/bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb1192d9d68ae89d4b2314ec299723184144a3e74abafbefeda877f8fb9dcac6",
"md5": "3669d148e46111ae263ea28bfad8fbc8",
"sha256": "a7ea1fdb67a8b9e310ef5ca223ae7ee78e0f320881a500f0eead4cbc0b232687"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3669d148e46111ae263ea28bfad8fbc8",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 17424,
"upload_time": "2025-02-19T17:42:20",
"upload_time_iso_8601": "2025-02-19T17:42:20.763113Z",
"url": "https://files.pythonhosted.org/packages/eb/11/92d9d68ae89d4b2314ec299723184144a3e74abafbefeda877f8fb9dcac6/bsdiff4-1.2.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8de44bd2b7db8bb929c15eb2187336f705283d86f6a2e720062850d00a079d3",
"md5": "a8afa2a56df0c7af95e49c1babd7c08e",
"sha256": "ae71d466525955c636bf79fb3fe592008a8f21f7ff028ec9e42421f5ba299471"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "a8afa2a56df0c7af95e49c1babd7c08e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 19515,
"upload_time": "2025-02-19T17:42:21",
"upload_time_iso_8601": "2025-02-19T17:42:21.879296Z",
"url": "https://files.pythonhosted.org/packages/d8/de/44bd2b7db8bb929c15eb2187336f705283d86f6a2e720062850d00a079d3/bsdiff4-1.2.6-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42b469ecdb65d58dc8c485701c8e37cddfb803ddd67f29f7ca3909b71c822820",
"md5": "23e05b0ee651b33f364471448ac336d6",
"sha256": "0e2e8176196400ba7188795b172d7ef5e953bb09b8158a92e42f0a687d6f77d6"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "23e05b0ee651b33f364471448ac336d6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 16216,
"upload_time": "2025-02-19T17:42:22",
"upload_time_iso_8601": "2025-02-19T17:42:22.901980Z",
"url": "https://files.pythonhosted.org/packages/42/b4/69ecdb65d58dc8c485701c8e37cddfb803ddd67f29f7ca3909b71c822820/bsdiff4-1.2.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e16fe332e599095e9b8011b63f5dd9b47e80702b7b1cee12f41980b14f042dd2",
"md5": "38fdf3e726da568cd47bf154890307ff",
"sha256": "503a104a545bb890baec09ca8282a20594fc795b4960fa149729fab34b0a8134"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "38fdf3e726da568cd47bf154890307ff",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 15865,
"upload_time": "2025-02-19T17:42:23",
"upload_time_iso_8601": "2025-02-19T17:42:23.904683Z",
"url": "https://files.pythonhosted.org/packages/e1/6f/e332e599095e9b8011b63f5dd9b47e80702b7b1cee12f41980b14f042dd2/bsdiff4-1.2.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce856adc2f6f8f3ca3afd52e01e4abfb3a670e702e2fa1eeedc26bbc56043ecc",
"md5": "e8075e13b6e402bf0cc67fca17f0161b",
"sha256": "483f53cf7504cb174e680e6a0d1545fdba59db5a8b17e62b3e207de6940235be"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e8075e13b6e402bf0cc67fca17f0161b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 17482,
"upload_time": "2025-02-19T17:42:24",
"upload_time_iso_8601": "2025-02-19T17:42:24.895952Z",
"url": "https://files.pythonhosted.org/packages/ce/85/6adc2f6f8f3ca3afd52e01e4abfb3a670e702e2fa1eeedc26bbc56043ecc/bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71e8a610da58e43c494fa4e773d237d4126603024f202b11b2bee13e1da9124a",
"md5": "dd58d78b8d90bf7bcad5e51f85d2a0ee",
"sha256": "7a7b234c1d85d9b29c2232f7a8767ac007ee0e5dd3b68e08e5b0b4c002659225"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd58d78b8d90bf7bcad5e51f85d2a0ee",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 16883,
"upload_time": "2025-02-19T17:42:26",
"upload_time_iso_8601": "2025-02-19T17:42:26.214445Z",
"url": "https://files.pythonhosted.org/packages/71/e8/a610da58e43c494fa4e773d237d4126603024f202b11b2bee13e1da9124a/bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a5a4b786e7a6304bddd1be1bd8ae1c7e1c4c475c09032c4315a85ac1e27b6c9",
"md5": "115616b1e0cefe7fe092300cfca64198",
"sha256": "0d45733fb226ad54122a0c46714c7e5af4aa796a22bc4c52e45c4f3784f957b6"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "115616b1e0cefe7fe092300cfca64198",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 17419,
"upload_time": "2025-02-19T17:42:28",
"upload_time_iso_8601": "2025-02-19T17:42:28.123713Z",
"url": "https://files.pythonhosted.org/packages/1a/5a/4b786e7a6304bddd1be1bd8ae1c7e1c4c475c09032c4315a85ac1e27b6c9/bsdiff4-1.2.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32aa04d36872e2b2b8623dae4e786bda397c426249a10f7e37603c7a9de6ae5d",
"md5": "6f36ee9d5ab5540a5771248a3b009d0c",
"sha256": "9f06f0c0a6f4633148496d96ffe5289861ec43c85bd602e6753a03962300717f"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "6f36ee9d5ab5540a5771248a3b009d0c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 19559,
"upload_time": "2025-02-19T17:42:29",
"upload_time_iso_8601": "2025-02-19T17:42:29.876920Z",
"url": "https://files.pythonhosted.org/packages/32/aa/04d36872e2b2b8623dae4e786bda397c426249a10f7e37603c7a9de6ae5d/bsdiff4-1.2.6-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53b94559ede9a4c8c4451688303544da84654643fdc7f28790aca85be80b4b7c",
"md5": "7150cf7e21905b47f169a27355dfb529",
"sha256": "2ab57d01a78b39e29e5accc9cfead4130982ded9dccbc4261bd0e9c51d6b751d"
},
"downloads": -1,
"filename": "bsdiff4-1.2.6.tar.gz",
"has_sig": false,
"md5_digest": "7150cf7e21905b47f169a27355dfb529",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13259,
"upload_time": "2025-02-19T17:42:33",
"upload_time_iso_8601": "2025-02-19T17:42:33.612125Z",
"url": "https://files.pythonhosted.org/packages/53/b9/4559ede9a4c8c4451688303544da84654643fdc7f28790aca85be80b4b7c/bsdiff4-1.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-19 17:42:33",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ilanschnell",
"github_project": "bsdiff4",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "bsdiff4"
}