bsdiff4


Namebsdiff4 JSON
Version 1.2.4 PyPI version JSON
download
home_pagehttps://github.com/ilanschnell/bsdiff4
Summarybinary diff and patch using the BSDIFF4-format
upload_time2023-11-02 01:56:08
maintainer
docs_urlNone
authorIlan Schnell
requires_python
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =======================================================
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": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Ilan Schnell",
    "author_email": "ilanschnell@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/58/b2/ccf01309dda2c08e0600027bc0f5a99534c91f2f8728b5009fc363df6c2c/bsdiff4-1.2.4.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.4",
    "project_urls": {
        "Homepage": "https://github.com/ilanschnell/bsdiff4"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5afb3b5f650d3408bd0feaabea6192c5d38fa7adea08a1e77210527236124cc2",
                "md5": "9533748af0e7cdf82f7f60253c117dc5",
                "sha256": "3266eeca8db0398a5f7251fd41877b1942912a3c719db59a3696f2eb4acf9a57"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "9533748af0e7cdf82f7f60253c117dc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 23318,
            "upload_time": "2023-11-02T01:53:36",
            "upload_time_iso_8601": "2023-11-02T01:53:36.396429Z",
            "url": "https://files.pythonhosted.org/packages/5a/fb/3b5f650d3408bd0feaabea6192c5d38fa7adea08a1e77210527236124cc2/bsdiff4-1.2.4-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2469f3b4430e4ea78b4907926f946545b41551f8a6b54e7d149fcae265eac4ec",
                "md5": "a503823f438b89140257e3a02524a588",
                "sha256": "7d93ed903a670665c71f0fc0809f18e86684c92c48c17ab3fe3871df726900af"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a503823f438b89140257e3a02524a588",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16398,
            "upload_time": "2023-11-02T01:53:37",
            "upload_time_iso_8601": "2023-11-02T01:53:37.771701Z",
            "url": "https://files.pythonhosted.org/packages/24/69/f3b4430e4ea78b4907926f946545b41551f8a6b54e7d149fcae265eac4ec/bsdiff4-1.2.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60c8a202b2c7383319b2beb104440d5404384664e2f08d0d21855417dc90cd88",
                "md5": "2a5ab2c033e8066fbf71760ad785d915",
                "sha256": "cd579125eb0611109e66c41f72a9bca411dc2af98768367910a27012159c5e37"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a5ab2c033e8066fbf71760ad785d915",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16524,
            "upload_time": "2023-11-02T01:53:39",
            "upload_time_iso_8601": "2023-11-02T01:53:39.031421Z",
            "url": "https://files.pythonhosted.org/packages/60/c8/a202b2c7383319b2beb104440d5404384664e2f08d0d21855417dc90cd88/bsdiff4-1.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12e77932ff220589bda5473038fc29e425c5b26a4cfdede7d0db6c1367471208",
                "md5": "8fd60f7b91633f78f1fe155466b8cc63",
                "sha256": "2e1af9e58dbb9fb1e76f6684712cd8d493393101554f912feea5d2da150aa772"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fd60f7b91633f78f1fe155466b8cc63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32105,
            "upload_time": "2023-11-02T01:53:39",
            "upload_time_iso_8601": "2023-11-02T01:53:39.966491Z",
            "url": "https://files.pythonhosted.org/packages/12/e7/7932ff220589bda5473038fc29e425c5b26a4cfdede7d0db6c1367471208/bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fb2919896b82eac5a116989b506fe11e86fce46df3a1af8a6109ec344eef0cf",
                "md5": "34efd9ab6262c458f6aadcacd39b1e2a",
                "sha256": "1f7c4873669c6096ed7d3f9393848fd5e0f3a4285e93a16ba4aeb3335ee930f5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "34efd9ab6262c458f6aadcacd39b1e2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34166,
            "upload_time": "2023-11-02T01:53:41",
            "upload_time_iso_8601": "2023-11-02T01:53:41.366659Z",
            "url": "https://files.pythonhosted.org/packages/8f/b2/919896b82eac5a116989b506fe11e86fce46df3a1af8a6109ec344eef0cf/bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cf88a9cc104c58452d527b32dd11f8decf6fa235cdae5881257664ad79998a8",
                "md5": "eab20a97d31ecd5237dbda7d4c42df91",
                "sha256": "c730dde9239571449d5e43b9918b681cc4d54f51126e16f21501c0a215186a93"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "eab20a97d31ecd5237dbda7d4c42df91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32089,
            "upload_time": "2023-11-02T01:53:42",
            "upload_time_iso_8601": "2023-11-02T01:53:42.796987Z",
            "url": "https://files.pythonhosted.org/packages/1c/f8/8a9cc104c58452d527b32dd11f8decf6fa235cdae5881257664ad79998a8/bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8fde3ab86f5dcf998a959b7f808a6ebeb62105dbe0c701c39a1262289c56947",
                "md5": "08d39b865cee13bd2dca5669a2635adf",
                "sha256": "665a89b5a31f2dc46299a8d3a6aded0cda5883fb468dc6bc66dc23db1a62cbbc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08d39b865cee13bd2dca5669a2635adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 31572,
            "upload_time": "2023-11-02T01:53:44",
            "upload_time_iso_8601": "2023-11-02T01:53:44.207330Z",
            "url": "https://files.pythonhosted.org/packages/c8/fd/e3ab86f5dcf998a959b7f808a6ebeb62105dbe0c701c39a1262289c56947/bsdiff4-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e9453388ab6098ece50c64d537b4ead3f93daebf06330c4c5295f0345af3a8f",
                "md5": "1de667ad4a369d0ee09dec1f7dd38b37",
                "sha256": "65f7bd1c2d77483102ce2d5e6aaa5413d57ff08e9d4f710b7dc64eb9d9e31a8c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1de667ad4a369d0ee09dec1f7dd38b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34372,
            "upload_time": "2023-11-02T01:53:45",
            "upload_time_iso_8601": "2023-11-02T01:53:45.683868Z",
            "url": "https://files.pythonhosted.org/packages/9e/94/53388ab6098ece50c64d537b4ead3f93daebf06330c4c5295f0345af3a8f/bsdiff4-1.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e035e2ee8f0ac50ed1da7c3399695e73fb40c50e090dd48b4565ebc319443f48",
                "md5": "0ba49f9ae498fb3d426a555ff284bafe",
                "sha256": "e123981fa6003a8645dfc27dbe57bc2a9084c33648562046aae31f03dc417eb9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ba49f9ae498fb3d426a555ff284bafe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35440,
            "upload_time": "2023-11-02T01:53:46",
            "upload_time_iso_8601": "2023-11-02T01:53:46.977176Z",
            "url": "https://files.pythonhosted.org/packages/e0/35/e2ee8f0ac50ed1da7c3399695e73fb40c50e090dd48b4565ebc319443f48/bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ef26d5faf3c8d94cea6a3f37cc4c2bbe036a198950e0421776f7462589da131",
                "md5": "920da479da33450553a0c9ad844dabb9",
                "sha256": "ad72a52925601ee6f5739332c26eb44cfd78b91dfcea5eba716cf35b66178cb9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "920da479da33450553a0c9ad844dabb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 37536,
            "upload_time": "2023-11-02T01:53:48",
            "upload_time_iso_8601": "2023-11-02T01:53:48.151164Z",
            "url": "https://files.pythonhosted.org/packages/3e/f2/6d5faf3c8d94cea6a3f37cc4c2bbe036a198950e0421776f7462589da131/bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdae25abbed21a5f015f0eed70f0cf881afeb328d773ba913080e2c30d858e50",
                "md5": "f2aa831f7c830562b8caeb58b2969253",
                "sha256": "6d6f5e79cfe92ff963e6ae2808d7c59d7669e3025973301f9959cbaec09b8786"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f2aa831f7c830562b8caeb58b2969253",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 37480,
            "upload_time": "2023-11-02T01:53:49",
            "upload_time_iso_8601": "2023-11-02T01:53:49.285962Z",
            "url": "https://files.pythonhosted.org/packages/fd/ae/25abbed21a5f015f0eed70f0cf881afeb328d773ba913080e2c30d858e50/bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2a6f33cd3f339405068921be3b9a87e2d3fce2c26e03d4435b4cce05dcd017",
                "md5": "4f2d847c8a7949dbb211809b61a23421",
                "sha256": "aa04d36531b65bc30b4482e4f70b6b23336fbea55adc715dfbf4b5b6f450027b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "4f2d847c8a7949dbb211809b61a23421",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35612,
            "upload_time": "2023-11-02T01:53:50",
            "upload_time_iso_8601": "2023-11-02T01:53:50.385026Z",
            "url": "https://files.pythonhosted.org/packages/9a/2a/6f33cd3f339405068921be3b9a87e2d3fce2c26e03d4435b4cce05dcd017/bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1a94f88905d85b935f902be592ce9e4ca9d7f6d706a2a1ac90c97b3179aa10d",
                "md5": "ec464596cb45679789ddbd21217bdbd6",
                "sha256": "342b4589a4c85502fab7e82eb7cb60734bf865a726af0c5cf64ae3e7bfbee981"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec464596cb45679789ddbd21217bdbd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35321,
            "upload_time": "2023-11-02T01:53:51",
            "upload_time_iso_8601": "2023-11-02T01:53:51.785291Z",
            "url": "https://files.pythonhosted.org/packages/f1/a9/4f88905d85b935f902be592ce9e4ca9d7f6d706a2a1ac90c97b3179aa10d/bsdiff4-1.2.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48dc65dff099ab6d99fb86114540858929fe1f994f15f99eeebc06fa621afd1d",
                "md5": "8be3a5345d02a2ced0ceac84c988063b",
                "sha256": "b53bf2403766658025824a2bebab9beea790562e6b95312cbdc8f0bd7276e4cf"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8be3a5345d02a2ced0ceac84c988063b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 17823,
            "upload_time": "2023-11-02T01:53:53",
            "upload_time_iso_8601": "2023-11-02T01:53:53.176814Z",
            "url": "https://files.pythonhosted.org/packages/48/dc/65dff099ab6d99fb86114540858929fe1f994f15f99eeebc06fa621afd1d/bsdiff4-1.2.4-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7ad0b8375e9d3810962dc7badf174ae583e55b20e73063ac397c0e4293277ae",
                "md5": "ec6e45519585fba606c394712e00debf",
                "sha256": "bf874938fe13400840dd1e680c8996d658aca431387fce0b16d0fc51c463cd5f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ec6e45519585fba606c394712e00debf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 18964,
            "upload_time": "2023-11-02T01:53:54",
            "upload_time_iso_8601": "2023-11-02T01:53:54.508603Z",
            "url": "https://files.pythonhosted.org/packages/f7/ad/0b8375e9d3810962dc7badf174ae583e55b20e73063ac397c0e4293277ae/bsdiff4-1.2.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3d7520581863f9d51f33dfdab0e35408304cbd095c871ef48252e48a3ea0d9a",
                "md5": "03d61fd6678592f3199cb2999cc14ddb",
                "sha256": "e8ec9708317727875d216e9ed23be90db99e111590177dd015607e95031db479"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "03d61fd6678592f3199cb2999cc14ddb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 23329,
            "upload_time": "2023-11-02T01:53:55",
            "upload_time_iso_8601": "2023-11-02T01:53:55.954798Z",
            "url": "https://files.pythonhosted.org/packages/c3/d7/520581863f9d51f33dfdab0e35408304cbd095c871ef48252e48a3ea0d9a/bsdiff4-1.2.4-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e74408e2108df765e3b9eb51932305b639c20eeb3507c568ae367ddd6893d31d",
                "md5": "cfebd0fdf238fcf985d90ff136e8973e",
                "sha256": "d0927d70573cac8bf1df07509e1365cd5e6eda1d84049522316e1c0131fda8bb"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfebd0fdf238fcf985d90ff136e8973e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16413,
            "upload_time": "2023-11-02T01:53:57",
            "upload_time_iso_8601": "2023-11-02T01:53:57.377376Z",
            "url": "https://files.pythonhosted.org/packages/e7/44/08e2108df765e3b9eb51932305b639c20eeb3507c568ae367ddd6893d31d/bsdiff4-1.2.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c31c8d0fb6b2283791ab8b801661e7f8961ab276acabe58acd73ba8b61e29b02",
                "md5": "0cfbe656fe7050f3744a51e876e1dbe9",
                "sha256": "1338373f492555c4130061dd9763343526167f160afbbff6c68d9547000d2dd3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0cfbe656fe7050f3744a51e876e1dbe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16522,
            "upload_time": "2023-11-02T01:53:58",
            "upload_time_iso_8601": "2023-11-02T01:53:58.746886Z",
            "url": "https://files.pythonhosted.org/packages/c3/1c/8d0fb6b2283791ab8b801661e7f8961ab276acabe58acd73ba8b61e29b02/bsdiff4-1.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b748fdbbd4aa4adee85fd21abc5763343d9169507d7a6df0d857a19308e4a44",
                "md5": "5816dfd8832352b27f345b0b76931234",
                "sha256": "ab72a2af903c146af4fd8cc59042564b509a4b01c57682ade21cb153a1969085"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5816dfd8832352b27f345b0b76931234",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33847,
            "upload_time": "2023-11-02T01:53:59",
            "upload_time_iso_8601": "2023-11-02T01:53:59.942432Z",
            "url": "https://files.pythonhosted.org/packages/2b/74/8fdbbd4aa4adee85fd21abc5763343d9169507d7a6df0d857a19308e4a44/bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24b21ff21559d29b5037ce37bc9da55378b33b252c6af0492d45e381420fe583",
                "md5": "2f74858385caf5e4807314bc65716d98",
                "sha256": "2f1053180f18c39f9d0b694307dbdcf415470bfdfb9cc9456bce32b6bf0edcd5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2f74858385caf5e4807314bc65716d98",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35794,
            "upload_time": "2023-11-02T01:54:01",
            "upload_time_iso_8601": "2023-11-02T01:54:01.466418Z",
            "url": "https://files.pythonhosted.org/packages/24/b2/1ff21559d29b5037ce37bc9da55378b33b252c6af0492d45e381420fe583/bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c5c931325f2118df334f7dc74486bf321bb41025590fbebd9389cb8f696a12e",
                "md5": "b6016242bb6d2158a80328f267883edd",
                "sha256": "1c8b57f65a6cdb4a1d31a9660416e86c7bb31a47c9e3746e3490b43816a9834e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b6016242bb6d2158a80328f267883edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33903,
            "upload_time": "2023-11-02T01:54:02",
            "upload_time_iso_8601": "2023-11-02T01:54:02.875787Z",
            "url": "https://files.pythonhosted.org/packages/1c/5c/931325f2118df334f7dc74486bf321bb41025590fbebd9389cb8f696a12e/bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5159a7ce006458749a8190fe7070d5dd6849672b6b3337a8194fe1359c5ca2c7",
                "md5": "5fefa641ff09bfac4a47fd434bc57c22",
                "sha256": "14c39e4c2f4ad32c19f56d31b659b83d94ed992f4f3274f3ab973b339f780b8c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5fefa641ff09bfac4a47fd434bc57c22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33338,
            "upload_time": "2023-11-02T01:54:03",
            "upload_time_iso_8601": "2023-11-02T01:54:03.814455Z",
            "url": "https://files.pythonhosted.org/packages/51/59/a7ce006458749a8190fe7070d5dd6849672b6b3337a8194fe1359c5ca2c7/bsdiff4-1.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f51e7a33bde85c22f9558c7556f3d693cbdb6fb557f84e7c73e3336f8827fad",
                "md5": "ba7b778b67c4e811825d8c00a12c7021",
                "sha256": "f89101f3d611ccdeed5b8ffef37b8d00989a13f6b84ba60f77b15fcb92980e45"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba7b778b67c4e811825d8c00a12c7021",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36006,
            "upload_time": "2023-11-02T01:54:04",
            "upload_time_iso_8601": "2023-11-02T01:54:04.955469Z",
            "url": "https://files.pythonhosted.org/packages/3f/51/e7a33bde85c22f9558c7556f3d693cbdb6fb557f84e7c73e3336f8827fad/bsdiff4-1.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bb226bde2800d9761b60f8bc07bd03ae1cd8ada4d2806025d7c73221d8927a4",
                "md5": "da79bcc82d875f25dfc376a6d80456de",
                "sha256": "f8765301c5bf8ca723788c0b6e2bca39f7348d9c154e4118ebd3167b826dd79c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da79bcc82d875f25dfc376a6d80456de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 37031,
            "upload_time": "2023-11-02T01:54:06",
            "upload_time_iso_8601": "2023-11-02T01:54:06.313837Z",
            "url": "https://files.pythonhosted.org/packages/5b/b2/26bde2800d9761b60f8bc07bd03ae1cd8ada4d2806025d7c73221d8927a4/bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "042cb8125dc96cb2775d52ca614c037ae4aea1240b042f61e67ded9f5d59e960",
                "md5": "63e61a29b13348ab509218fdb4216ac8",
                "sha256": "8ac57ebbf84b30a5af51d3c2b49f7675280002a52b16d6de4594a03a596e5888"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "63e61a29b13348ab509218fdb4216ac8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 39229,
            "upload_time": "2023-11-02T01:54:07",
            "upload_time_iso_8601": "2023-11-02T01:54:07.507785Z",
            "url": "https://files.pythonhosted.org/packages/04/2c/b8125dc96cb2775d52ca614c037ae4aea1240b042f61e67ded9f5d59e960/bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71ba29cda51530702c5299060d58dbfdca780429372b71ec83d865c5f98f90f3",
                "md5": "23c261a14a433258b73f76cfa081df06",
                "sha256": "cf6a8d3646ea5e5a8ed2f24e8b11f7517529dddace08d1b461228243d903214c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "23c261a14a433258b73f76cfa081df06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 39297,
            "upload_time": "2023-11-02T01:54:09",
            "upload_time_iso_8601": "2023-11-02T01:54:09.073881Z",
            "url": "https://files.pythonhosted.org/packages/71/ba/29cda51530702c5299060d58dbfdca780429372b71ec83d865c5f98f90f3/bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cdf7217dad2baeaaefa07c2f8fe2090019ec33001cfaab8951ef77f6a5e5657",
                "md5": "822ec7d2da9ddea37e7ffdd8c63185ed",
                "sha256": "e80a70edbab32dee8d592cc0d417f98055afa3c55331c05c24bc0c230b501da6"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "822ec7d2da9ddea37e7ffdd8c63185ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 37181,
            "upload_time": "2023-11-02T01:54:10",
            "upload_time_iso_8601": "2023-11-02T01:54:10.317086Z",
            "url": "https://files.pythonhosted.org/packages/6c/df/7217dad2baeaaefa07c2f8fe2090019ec33001cfaab8951ef77f6a5e5657/bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6860319c95bb7a0a1511da9b7d21cc7fcc730f7c5ed80cc5999380c7ed91d88f",
                "md5": "27097f2142a92624aacf64189c32edbb",
                "sha256": "f97cd2043a5882b632fb7f5307fe960e4363450f825c0a0d642850f8b2d5de89"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27097f2142a92624aacf64189c32edbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 36895,
            "upload_time": "2023-11-02T01:54:11",
            "upload_time_iso_8601": "2023-11-02T01:54:11.509710Z",
            "url": "https://files.pythonhosted.org/packages/68/60/319c95bb7a0a1511da9b7d21cc7fcc730f7c5ed80cc5999380c7ed91d88f/bsdiff4-1.2.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e809cbeb4d5d02f59d702c7c83e835af9dabe16e5c044e98d4dcbc9e244e700",
                "md5": "7c5d5d24bfea590debdaee6ab75c41f6",
                "sha256": "bc648bf6ea3e9dbbe3319561ccee43c69f4ffa284ad940577a0109ee18c7a59d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "7c5d5d24bfea590debdaee6ab75c41f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 17827,
            "upload_time": "2023-11-02T01:54:12",
            "upload_time_iso_8601": "2023-11-02T01:54:12.913794Z",
            "url": "https://files.pythonhosted.org/packages/7e/80/9cbeb4d5d02f59d702c7c83e835af9dabe16e5c044e98d4dcbc9e244e700/bsdiff4-1.2.4-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eed405fcb6d8e7c8e37dc6de21a0f4eb427d27b59314dc9f46d1368bbbf8f71c",
                "md5": "f9eed053cfb59cfd070d8f11a7642aa6",
                "sha256": "d4f018112f498b8ee99c1270f1580f16eada1ea505bc9074fdc734d193db9d89"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9eed053cfb59cfd070d8f11a7642aa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 18964,
            "upload_time": "2023-11-02T01:54:13",
            "upload_time_iso_8601": "2023-11-02T01:54:13.902671Z",
            "url": "https://files.pythonhosted.org/packages/ee/d4/05fcb6d8e7c8e37dc6de21a0f4eb427d27b59314dc9f46d1368bbbf8f71c/bsdiff4-1.2.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65d4bb23daeedc1ccbdf0b45fbaa3e079f0f1d3593f0f46c8084cfa05e788b1b",
                "md5": "83ce23cae7c2a999458c7b91046bde3a",
                "sha256": "ef4bc3db56129a13fd7e90ea100e496a57e22623e8e7856db76bf58d0c949186"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "83ce23cae7c2a999458c7b91046bde3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 23432,
            "upload_time": "2023-11-02T01:54:15",
            "upload_time_iso_8601": "2023-11-02T01:54:15.066378Z",
            "url": "https://files.pythonhosted.org/packages/65/d4/bb23daeedc1ccbdf0b45fbaa3e079f0f1d3593f0f46c8084cfa05e788b1b/bsdiff4-1.2.4-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1d77ef1e97d90d44ef6f970a2fddbcb8b49b56ee669b8625bdf5d1ec76f1511",
                "md5": "33dc60241d0bcbd85c902b8f9d847bbc",
                "sha256": "07cfe4b26434d64f412f5b35f5f11f72a2dd8d7deb0e19dd1c7c4a54b09a30d7"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33dc60241d0bcbd85c902b8f9d847bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16451,
            "upload_time": "2023-11-02T01:54:16",
            "upload_time_iso_8601": "2023-11-02T01:54:16.091676Z",
            "url": "https://files.pythonhosted.org/packages/b1/d7/7ef1e97d90d44ef6f970a2fddbcb8b49b56ee669b8625bdf5d1ec76f1511/bsdiff4-1.2.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ee14aa34977782045e4db5c30e81f5a896f0a1ea8df7e0b946cfaad99119a93",
                "md5": "baa7a1e0bb796de09697c8fcfa58f7e6",
                "sha256": "e0113db077f5f613b871d7c745e38b8d821fc9795fcd5c2c29afb7a50d7b71a5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "baa7a1e0bb796de09697c8fcfa58f7e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16584,
            "upload_time": "2023-11-02T01:54:17",
            "upload_time_iso_8601": "2023-11-02T01:54:17.083262Z",
            "url": "https://files.pythonhosted.org/packages/7e/e1/4aa34977782045e4db5c30e81f5a896f0a1ea8df7e0b946cfaad99119a93/bsdiff4-1.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43a1623fadbdee89494c2fc241fa88ee274daf440f724f93b0f2ec529a6c5be8",
                "md5": "c6ec4772638f924ea6e8daf545e872b4",
                "sha256": "9335bf349ef8fcd2a412443a3e854ed17a2716a4ea46af0b066f56fcdd42d0ec"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6ec4772638f924ea6e8daf545e872b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33782,
            "upload_time": "2023-11-02T01:54:18",
            "upload_time_iso_8601": "2023-11-02T01:54:18.183523Z",
            "url": "https://files.pythonhosted.org/packages/43/a1/623fadbdee89494c2fc241fa88ee274daf440f724f93b0f2ec529a6c5be8/bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50038ec41e363a4b9d0e157ccdeff91503d8a7dffb926806df28a5a8297a8e92",
                "md5": "df3f62214c21d442595c0d0422391988",
                "sha256": "066fc5fee32787b8515b855a5b5c46b580512a5fd64981c5cea1bfa2d1c4528a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "df3f62214c21d442595c0d0422391988",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35725,
            "upload_time": "2023-11-02T01:54:19",
            "upload_time_iso_8601": "2023-11-02T01:54:19.630670Z",
            "url": "https://files.pythonhosted.org/packages/50/03/8ec41e363a4b9d0e157ccdeff91503d8a7dffb926806df28a5a8297a8e92/bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa95e27bb1134377e72bbb60dcbcbd96d0fc18e68ba8f9a23df5947eb84e5a61",
                "md5": "32d86d1c1f66ad191ddf07070fa14384",
                "sha256": "fe3f467a29bc7e445789bb433a2230f68e8519a0741772d4f661f6b08c55d73c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "32d86d1c1f66ad191ddf07070fa14384",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33881,
            "upload_time": "2023-11-02T01:54:20",
            "upload_time_iso_8601": "2023-11-02T01:54:20.800423Z",
            "url": "https://files.pythonhosted.org/packages/aa/95/e27bb1134377e72bbb60dcbcbd96d0fc18e68ba8f9a23df5947eb84e5a61/bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da1b2a800b1b472bb2f34ab33beba540b19f4f4ef4ed22f8e4b68b5b0bb03725",
                "md5": "9b31e3efe1462ee25c186b9469e01876",
                "sha256": "5cc9c84464411f406b37ee2b0833c9feb58f93e504c8989aad5120077abcc9c2"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b31e3efe1462ee25c186b9469e01876",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33326,
            "upload_time": "2023-11-02T01:54:21",
            "upload_time_iso_8601": "2023-11-02T01:54:21.963000Z",
            "url": "https://files.pythonhosted.org/packages/da/1b/2a800b1b472bb2f34ab33beba540b19f4f4ef4ed22f8e4b68b5b0bb03725/bsdiff4-1.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f80b588e25811ef7f95df5d7114874e23cd69b33bcd5120cec536ed30f533eaa",
                "md5": "986b8bd1af7d076de9210da8e8298a2a",
                "sha256": "3a9edb5dcb1d7fe522a8fd03942069dbf5df373732c233fdad3b3f5123df9bbb"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "986b8bd1af7d076de9210da8e8298a2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35975,
            "upload_time": "2023-11-02T01:54:23",
            "upload_time_iso_8601": "2023-11-02T01:54:23.131488Z",
            "url": "https://files.pythonhosted.org/packages/f8/0b/588e25811ef7f95df5d7114874e23cd69b33bcd5120cec536ed30f533eaa/bsdiff4-1.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8600ecb7eb42d26ca5d78919a906ea1536f35ac5e3cb3614e4a81a0d9afe0043",
                "md5": "8b090bf02ad67c79f8bc669c967b83da",
                "sha256": "47c062b67e4a2e31ecbebc520fba8273fd5deb8a7141e0ecd1c6d923bc9f6c90"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b090bf02ad67c79f8bc669c967b83da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 37028,
            "upload_time": "2023-11-02T01:54:24",
            "upload_time_iso_8601": "2023-11-02T01:54:24.160827Z",
            "url": "https://files.pythonhosted.org/packages/86/00/ecb7eb42d26ca5d78919a906ea1536f35ac5e3cb3614e4a81a0d9afe0043/bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f07152d956c45823f4d8e963e5ecda3b098b9b0e36bd84a99785e8c3a788616",
                "md5": "1080e40862c8c7150e3de7aa4228b851",
                "sha256": "b24dc4f050efda0fe1527dc7bbb61bdfa9e094ef2fad64f646c460aff086c5df"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1080e40862c8c7150e3de7aa4228b851",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 39174,
            "upload_time": "2023-11-02T01:54:25",
            "upload_time_iso_8601": "2023-11-02T01:54:25.371553Z",
            "url": "https://files.pythonhosted.org/packages/8f/07/152d956c45823f4d8e963e5ecda3b098b9b0e36bd84a99785e8c3a788616/bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbf9d0638a8cb32d50fe0ce7ebc489b0665933aa5d318a9762c7273a5bad3f23",
                "md5": "bd84168c0df540f6950190cf8c8cf4dc",
                "sha256": "1ff1f182da5665d7bf2eb1497eed95caad8e24764e281c8cd2440ad7e747d598"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bd84168c0df540f6950190cf8c8cf4dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 39158,
            "upload_time": "2023-11-02T01:54:26",
            "upload_time_iso_8601": "2023-11-02T01:54:26.496457Z",
            "url": "https://files.pythonhosted.org/packages/bb/f9/d0638a8cb32d50fe0ce7ebc489b0665933aa5d318a9762c7273a5bad3f23/bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a311e4171c02f5c02aa4fc99f885053b512f1345c6cf64138730058a4be77d4",
                "md5": "07f09f7ecbc5a6b1a1e8abd2cc463fac",
                "sha256": "55bae7a41a4fb2e1ef3cda8b4fe1c06210cb013397e5432883585d0dd318a871"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "07f09f7ecbc5a6b1a1e8abd2cc463fac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 37265,
            "upload_time": "2023-11-02T01:54:27",
            "upload_time_iso_8601": "2023-11-02T01:54:27.716537Z",
            "url": "https://files.pythonhosted.org/packages/9a/31/1e4171c02f5c02aa4fc99f885053b512f1345c6cf64138730058a4be77d4/bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d8fbaf847798c3a3dc59df5fe11c48f5839757cd9bff4886b8b12121fc1fce6",
                "md5": "053ed7c647991542f4700d5efe5bd520",
                "sha256": "5e51557891f0a8696470e04bf208b515ec1d62dcf3dd273f321279cfdef05c08"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "053ed7c647991542f4700d5efe5bd520",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 36909,
            "upload_time": "2023-11-02T01:54:28",
            "upload_time_iso_8601": "2023-11-02T01:54:28.895813Z",
            "url": "https://files.pythonhosted.org/packages/7d/8f/baf847798c3a3dc59df5fe11c48f5839757cd9bff4886b8b12121fc1fce6/bsdiff4-1.2.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "771fb18f932efc5332db96fb0e51587d940f62a1e6394f4851912a69eee87ac6",
                "md5": "a42b4c2d7e9e4bad31a8c87d1a5712bf",
                "sha256": "783f3ba01fdde0d9252face5d56735319fbef5070cb0eda12c44e378e43bf0de"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "a42b4c2d7e9e4bad31a8c87d1a5712bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 17850,
            "upload_time": "2023-11-02T01:54:29",
            "upload_time_iso_8601": "2023-11-02T01:54:29.948808Z",
            "url": "https://files.pythonhosted.org/packages/77/1f/b18f932efc5332db96fb0e51587d940f62a1e6394f4851912a69eee87ac6/bsdiff4-1.2.4-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb6832b6bc10a7b6a2061942c854d6bda148e7ff777cd5efcf3fda7ccde41f92",
                "md5": "727e5d7125ef40f96c7b3c0979b11217",
                "sha256": "475f2077e66b1a4e7aa19de1b9b328d87d53ee28c9c20e27b40646d814b03f5f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "727e5d7125ef40f96c7b3c0979b11217",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 18985,
            "upload_time": "2023-11-02T01:54:30",
            "upload_time_iso_8601": "2023-11-02T01:54:30.920276Z",
            "url": "https://files.pythonhosted.org/packages/eb/68/32b6bc10a7b6a2061942c854d6bda148e7ff777cd5efcf3fda7ccde41f92/bsdiff4-1.2.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6df45aa0ac53668943d637b57b5d6fba8a84370ebb44b913c6cf9f2e0e6f7cc",
                "md5": "baa5844aa9abe02c3146cef3711d7ce4",
                "sha256": "89d9dcd647f66065c09cf8af5b31cf7625575f20f2758d96f24153ef44015643"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baa5844aa9abe02c3146cef3711d7ce4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 16318,
            "upload_time": "2023-11-02T01:54:32",
            "upload_time_iso_8601": "2023-11-02T01:54:32.315527Z",
            "url": "https://files.pythonhosted.org/packages/e6/df/45aa0ac53668943d637b57b5d6fba8a84370ebb44b913c6cf9f2e0e6f7cc/bsdiff4-1.2.4-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94b5cfd06e14f0d41f747c11be94bd44b6f4703e1092064945c35e56b1021da8",
                "md5": "2aabc9c81f3af6675f2406d2ad94b3d1",
                "sha256": "f67e5f7e14375d08554bfe1bab73a380718b48b4b503ee32f080f2d16793b011"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2aabc9c81f3af6675f2406d2ad94b3d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 32026,
            "upload_time": "2023-11-02T01:54:33",
            "upload_time_iso_8601": "2023-11-02T01:54:33.262486Z",
            "url": "https://files.pythonhosted.org/packages/94/b5/cfd06e14f0d41f747c11be94bd44b6f4703e1092064945c35e56b1021da8/bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8d30d54abbd17fc92e674f1823ae3ef58357c77bed904955fd58acef2ef9086",
                "md5": "914ae3c2b4f7fa6c3c9b9575108b2fd3",
                "sha256": "68fed243cf2f48534684b1a4e92b24fbe7877e8ab62a87879887981b24904d26"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "914ae3c2b4f7fa6c3c9b9575108b2fd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 33980,
            "upload_time": "2023-11-02T01:54:34",
            "upload_time_iso_8601": "2023-11-02T01:54:34.347563Z",
            "url": "https://files.pythonhosted.org/packages/c8/d3/0d54abbd17fc92e674f1823ae3ef58357c77bed904955fd58acef2ef9086/bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e408740e07c02a8d01366ec34f21156571ce2cfa9cba3683df95d0fac799b20",
                "md5": "a4ab28c42adc2513264fe1812c4e25af",
                "sha256": "039ef8a39a4a4ad12ed989a9b46b3583a3ae50cc6631e5a1261319d7148f7507"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4ab28c42adc2513264fe1812c4e25af",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 32023,
            "upload_time": "2023-11-02T01:54:35",
            "upload_time_iso_8601": "2023-11-02T01:54:35.495500Z",
            "url": "https://files.pythonhosted.org/packages/3e/40/8740e07c02a8d01366ec34f21156571ce2cfa9cba3683df95d0fac799b20/bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6d1d37207a4aacb21a85cd2f3d481daf3d551e992f4147d5196a78b907de2f1",
                "md5": "f9d39c2cf47e43c9af52be9a7963b4ec",
                "sha256": "8164f1b6fafab4707561f2fd6ba81628ba3d0b30ec7f09b9c75dd3203c8325f7"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9d39c2cf47e43c9af52be9a7963b4ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 31434,
            "upload_time": "2023-11-02T01:54:36",
            "upload_time_iso_8601": "2023-11-02T01:54:36.714041Z",
            "url": "https://files.pythonhosted.org/packages/f6/d1/d37207a4aacb21a85cd2f3d481daf3d551e992f4147d5196a78b907de2f1/bsdiff4-1.2.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8efbf5af65b7de6e5dbddf11590ca8ae64b3e4c1d883937d87edeb92a73e0dfd",
                "md5": "e6bf16cc111d775d7aa376be554a3e17",
                "sha256": "33bb050fce1749db0f9d65e5f564e02cc9325dc4c3951dd0cc15e255d6d9cab9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e6bf16cc111d775d7aa376be554a3e17",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34230,
            "upload_time": "2023-11-02T01:54:37",
            "upload_time_iso_8601": "2023-11-02T01:54:37.614254Z",
            "url": "https://files.pythonhosted.org/packages/8e/fb/f5af65b7de6e5dbddf11590ca8ae64b3e4c1d883937d87edeb92a73e0dfd/bsdiff4-1.2.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffbbf826160cf5849f6cc2c96ab88d2fa76f9802882c868f093265818de3fbcf",
                "md5": "51f94cdda54967422575c7d20dcc27a8",
                "sha256": "e29ad686f0a91cf2c58493758e1c4db99f6ce95d8463d63c6ce6b315b4986771"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51f94cdda54967422575c7d20dcc27a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34822,
            "upload_time": "2023-11-02T01:54:39",
            "upload_time_iso_8601": "2023-11-02T01:54:39.132695Z",
            "url": "https://files.pythonhosted.org/packages/ff/bb/f826160cf5849f6cc2c96ab88d2fa76f9802882c868f093265818de3fbcf/bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5364a25cb737cedc7c4cfcd825bbbb9cfb2b40d042e3fa35ae8e2b3aa44e489b",
                "md5": "676702eed1a258929c14d636ba71e6fd",
                "sha256": "b1058e954fb35b9241145c56383fd71b3eabb7b422a07084b80b349c804a3c2f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "676702eed1a258929c14d636ba71e6fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 37068,
            "upload_time": "2023-11-02T01:54:40",
            "upload_time_iso_8601": "2023-11-02T01:54:40.500333Z",
            "url": "https://files.pythonhosted.org/packages/53/64/a25cb737cedc7c4cfcd825bbbb9cfb2b40d042e3fa35ae8e2b3aa44e489b/bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fe7892be36d02679ff3e8f5518bc470da38e5dbc671bfe07b419da3c3cdca62",
                "md5": "ed2eda12c5eaaf5c0c22db2207089d69",
                "sha256": "81abcb3c73ed4ea494555664f677907018b8261b00270c19455030359a08121e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ed2eda12c5eaaf5c0c22db2207089d69",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 36849,
            "upload_time": "2023-11-02T01:54:41",
            "upload_time_iso_8601": "2023-11-02T01:54:41.545296Z",
            "url": "https://files.pythonhosted.org/packages/5f/e7/892be36d02679ff3e8f5518bc470da38e5dbc671bfe07b419da3c3cdca62/bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a47ee0d6b12886fd5fad4721906861faa331fb28d9bcf5ba50160c0a1a021f34",
                "md5": "36ebe39c33e60bc8854af14a27d70bc5",
                "sha256": "f084673f73caaffbef1c4eb5163453caeaa2d6b280e7a1ab627edb8c314157d5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "36ebe39c33e60bc8854af14a27d70bc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 35030,
            "upload_time": "2023-11-02T01:54:42",
            "upload_time_iso_8601": "2023-11-02T01:54:42.861374Z",
            "url": "https://files.pythonhosted.org/packages/a4/7e/e0d6b12886fd5fad4721906861faa331fb28d9bcf5ba50160c0a1a021f34/bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1c948c99ff085243d584bc87bf2dfd36cc7282e2b29502700e65c4f93535ed7",
                "md5": "69cd6f90c297d45a8d67eced76ee7259",
                "sha256": "bfc60dff6ab2899b6454875fc6f9b7f0208b88ab9f52a94d8d49637863306510"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69cd6f90c297d45a8d67eced76ee7259",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34800,
            "upload_time": "2023-11-02T01:54:44",
            "upload_time_iso_8601": "2023-11-02T01:54:44.335918Z",
            "url": "https://files.pythonhosted.org/packages/c1/c9/48c99ff085243d584bc87bf2dfd36cc7282e2b29502700e65c4f93535ed7/bsdiff4-1.2.4-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48fdf24a12f816f4f4d455a21cc38113768625af7a83b799470c25cc7d3e08b6",
                "md5": "66229216a774348eb3bafff438ac2423",
                "sha256": "9693ee80ae170979632c438c179cca1b8f473152ec3cbbaa8a15518e31bda639"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "66229216a774348eb3bafff438ac2423",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 17810,
            "upload_time": "2023-11-02T01:54:45",
            "upload_time_iso_8601": "2023-11-02T01:54:45.769703Z",
            "url": "https://files.pythonhosted.org/packages/48/fd/f24a12f816f4f4d455a21cc38113768625af7a83b799470c25cc7d3e08b6/bsdiff4-1.2.4-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6dc787916a0d6bb9a5a40c09bf2851ca01de0071b9afd32161b1bf2ee4dee90b",
                "md5": "527daa627c0a5b5a4edd6af5ea39900f",
                "sha256": "1b6fa5a7471407732b1f9d161c950669ae972a337423006ea95810aae02f77ba"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "527daa627c0a5b5a4edd6af5ea39900f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 19045,
            "upload_time": "2023-11-02T01:54:46",
            "upload_time_iso_8601": "2023-11-02T01:54:46.752027Z",
            "url": "https://files.pythonhosted.org/packages/6d/c7/87916a0d6bb9a5a40c09bf2851ca01de0071b9afd32161b1bf2ee4dee90b/bsdiff4-1.2.4-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d364f9865ba5b6b87aa5eb05a742fd955936e3ba1227b7758b51625267bc0afb",
                "md5": "abc917c1bae000ff5dac674f9be28f58",
                "sha256": "dbe5e5e7d8864bb2aa9a5d032b39162e4786149be6d35ccc40a2495955200a04"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abc917c1bae000ff5dac674f9be28f58",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 16313,
            "upload_time": "2023-11-02T01:54:48",
            "upload_time_iso_8601": "2023-11-02T01:54:48.155150Z",
            "url": "https://files.pythonhosted.org/packages/d3/64/f9865ba5b6b87aa5eb05a742fd955936e3ba1227b7758b51625267bc0afb/bsdiff4-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9860f4415c1a4364125cd8e547bb854973f7d5dbac5206137bef28df8b078835",
                "md5": "53d514ecad464077b41b15da4836a93a",
                "sha256": "69e8cccf1744c2b1aa84ef1125a56fe72db232ba4647f85c267418fc63a21e57"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "53d514ecad464077b41b15da4836a93a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 33051,
            "upload_time": "2023-11-02T01:54:49",
            "upload_time_iso_8601": "2023-11-02T01:54:49.343689Z",
            "url": "https://files.pythonhosted.org/packages/98/60/f4415c1a4364125cd8e547bb854973f7d5dbac5206137bef28df8b078835/bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da556fa9a82e58600f85706b5fccabb06d52fb3b18589c12e73bfcd0ec4555e7",
                "md5": "6b75de71fa14a8be4ce9a8b400f11dff",
                "sha256": "d5ea6b1cfe933f527cf212b0232fa886932fa16f88b8c0d806a9765a33e2e24d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b75de71fa14a8be4ce9a8b400f11dff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 34956,
            "upload_time": "2023-11-02T01:54:50",
            "upload_time_iso_8601": "2023-11-02T01:54:50.462729Z",
            "url": "https://files.pythonhosted.org/packages/da/55/6fa9a82e58600f85706b5fccabb06d52fb3b18589c12e73bfcd0ec4555e7/bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "089693f62fe0cb6973039b419a399dc4bcd1451ba58349ce6cbd1b704f133bdd",
                "md5": "dec1dfe42c194cc2135a17f2cf36c23b",
                "sha256": "40cf69af97e1be18f3e7709d58fcff959af6fa175cc470142853d4c55a5ed0f5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dec1dfe42c194cc2135a17f2cf36c23b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 33082,
            "upload_time": "2023-11-02T01:54:51",
            "upload_time_iso_8601": "2023-11-02T01:54:51.470583Z",
            "url": "https://files.pythonhosted.org/packages/08/96/93f62fe0cb6973039b419a399dc4bcd1451ba58349ce6cbd1b704f133bdd/bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a835499ab844812472d205da94f2a776d5c58392b27ce0fd04e07920fbe01e78",
                "md5": "f787a6eee28f6ea95e2da3dce506d7cc",
                "sha256": "3eb9ef7bba7deb338b3902ec0021faf79c97feaddd39e725162b393698e375d0"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f787a6eee28f6ea95e2da3dce506d7cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 32479,
            "upload_time": "2023-11-02T01:54:52",
            "upload_time_iso_8601": "2023-11-02T01:54:52.449327Z",
            "url": "https://files.pythonhosted.org/packages/a8/35/499ab844812472d205da94f2a776d5c58392b27ce0fd04e07920fbe01e78/bsdiff4-1.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94a1e74f2ff4ffea6feca1e4f88ef79d8ffdde11668bc8c231bcdcc85ea59bd5",
                "md5": "d6c26ddb9518ff666bc05a72fc8c6a7d",
                "sha256": "599a7ba70f086768735dc00b2db54ada7f53e421ffdab05fb4545c297ae3c0cd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d6c26ddb9518ff666bc05a72fc8c6a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35188,
            "upload_time": "2023-11-02T01:54:53",
            "upload_time_iso_8601": "2023-11-02T01:54:53.829930Z",
            "url": "https://files.pythonhosted.org/packages/94/a1/e74f2ff4ffea6feca1e4f88ef79d8ffdde11668bc8c231bcdcc85ea59bd5/bsdiff4-1.2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04bd8b29ee1840116e47e4a5ad36715feb674c5b24b4f3541e3b813236e47f9d",
                "md5": "f29fbe5d7d9a7a2ac88ba7ce5a0bf8ca",
                "sha256": "ab05f3f03f5e3b4eb2d6bd90e99012e2997dfdb4a27d76a3f11efae038d8bbc3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f29fbe5d7d9a7a2ac88ba7ce5a0bf8ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35692,
            "upload_time": "2023-11-02T01:54:54",
            "upload_time_iso_8601": "2023-11-02T01:54:54.855296Z",
            "url": "https://files.pythonhosted.org/packages/04/bd/8b29ee1840116e47e4a5ad36715feb674c5b24b4f3541e3b813236e47f9d/bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e888661e6ed95b9cce7a7debe5b01f10beb7544878a0086a5f7335879067aee",
                "md5": "1ef7141eaa683ceced21f578cc09128e",
                "sha256": "a443a88a3abecd4654f1349473979302fcbfd3c0dabe40beccc030547f26ba3e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1ef7141eaa683ceced21f578cc09128e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 37918,
            "upload_time": "2023-11-02T01:54:55",
            "upload_time_iso_8601": "2023-11-02T01:54:55.876095Z",
            "url": "https://files.pythonhosted.org/packages/0e/88/8661e6ed95b9cce7a7debe5b01f10beb7544878a0086a5f7335879067aee/bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0de4f1c2c06c8c95c5f2f275a65cf7cb364d80cee87046968bb8d7261cabaabe",
                "md5": "3c0e933d8bd8fec620786af971bff2c1",
                "sha256": "db15692a4b77934864a7088b775ecc9aac2667bba6819cff672ea739167666e8"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3c0e933d8bd8fec620786af971bff2c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 37802,
            "upload_time": "2023-11-02T01:54:56",
            "upload_time_iso_8601": "2023-11-02T01:54:56.977614Z",
            "url": "https://files.pythonhosted.org/packages/0d/e4/f1c2c06c8c95c5f2f275a65cf7cb364d80cee87046968bb8d7261cabaabe/bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23e8450e95f2a36781a107b32ca64adc9ea0cc66102a01641046a581d95e90f8",
                "md5": "38e38b55f3d2d52a7fa65b3c76d34ce5",
                "sha256": "fbfdaddbe7702a3a40463782c89ad5a1efc2deafb989750bc0818d635df65dc4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "38e38b55f3d2d52a7fa65b3c76d34ce5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35900,
            "upload_time": "2023-11-02T01:54:58",
            "upload_time_iso_8601": "2023-11-02T01:54:58.250066Z",
            "url": "https://files.pythonhosted.org/packages/23/e8/450e95f2a36781a107b32ca64adc9ea0cc66102a01641046a581d95e90f8/bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b2f7e51601837246507c01997840c7f4115ef9e69766ac5e1da15d9fa632625",
                "md5": "e4aa099548f137198fcad78fc3d8bd55",
                "sha256": "a5849c4db93894cdcdf90eb2347664634b7cb2db017aa2cbb8bc7f1f5fc8baae"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4aa099548f137198fcad78fc3d8bd55",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35672,
            "upload_time": "2023-11-02T01:54:59",
            "upload_time_iso_8601": "2023-11-02T01:54:59.492642Z",
            "url": "https://files.pythonhosted.org/packages/8b/2f/7e51601837246507c01997840c7f4115ef9e69766ac5e1da15d9fa632625/bsdiff4-1.2.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3082315fdd0afaa7a2d6cca8dbdf7963dcc5c20116eb9b3449b820cef5d9483",
                "md5": "6b6e98bd4e855f35a96931564a750cb5",
                "sha256": "7e823499a93b318301585852a41c193dd02f02ce22874044fe64c75c0a2f4210"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "6b6e98bd4e855f35a96931564a750cb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 17773,
            "upload_time": "2023-11-02T01:55:00",
            "upload_time_iso_8601": "2023-11-02T01:55:00.850999Z",
            "url": "https://files.pythonhosted.org/packages/c3/08/2315fdd0afaa7a2d6cca8dbdf7963dcc5c20116eb9b3449b820cef5d9483/bsdiff4-1.2.4-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8666e0ac288cc9122676e8eabc2fe518894f8fbda690da278e27a815ccd50b92",
                "md5": "1e597c97a57f16b9f9e29ef51d94914f",
                "sha256": "ed6daa183f267698d4935f7e89a3d723ba165750714e0c9a926f21498b138b2e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e597c97a57f16b9f9e29ef51d94914f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 18949,
            "upload_time": "2023-11-02T01:55:02",
            "upload_time_iso_8601": "2023-11-02T01:55:02.891464Z",
            "url": "https://files.pythonhosted.org/packages/86/66/e0ac288cc9122676e8eabc2fe518894f8fbda690da278e27a815ccd50b92/bsdiff4-1.2.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1970101d31a66aa82552ea128d454c6606fa195dc3ab6cc34409238133e041e7",
                "md5": "49ad84e141e19f45e0507b0c9201cede",
                "sha256": "95ef3e01778e054cb468c4b8740de3459f2ac6ff139df799f25e31cac48a3efd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "49ad84e141e19f45e0507b0c9201cede",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 23301,
            "upload_time": "2023-11-02T01:55:04",
            "upload_time_iso_8601": "2023-11-02T01:55:04.174897Z",
            "url": "https://files.pythonhosted.org/packages/19/70/101d31a66aa82552ea128d454c6606fa195dc3ab6cc34409238133e041e7/bsdiff4-1.2.4-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0f9e2e5e372f5cd87528057d42075cc226bc4bf42262bf8ea873fdc1ac2a35c",
                "md5": "c865eebc8ac8337cb57ea36a4972f396",
                "sha256": "921878e25bd34ef95b686c50e7f7f95e7f98900eeb9bf50a36faa3d5a2c76953"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c865eebc8ac8337cb57ea36a4972f396",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16390,
            "upload_time": "2023-11-02T01:55:05",
            "upload_time_iso_8601": "2023-11-02T01:55:05.445064Z",
            "url": "https://files.pythonhosted.org/packages/a0/f9/e2e5e372f5cd87528057d42075cc226bc4bf42262bf8ea873fdc1ac2a35c/bsdiff4-1.2.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91b94faa2ae1e29087886d4a7a7083bd06386667f1b42e0312398260d3cd9132",
                "md5": "8f80aff0538721bcf3ddcffe50de5109",
                "sha256": "f68a0ab9d7deb8643703eb17b0c7dcb73feaa1a7e44daaa0ef075ea2fbc46e1e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f80aff0538721bcf3ddcffe50de5109",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16521,
            "upload_time": "2023-11-02T01:55:06",
            "upload_time_iso_8601": "2023-11-02T01:55:06.807247Z",
            "url": "https://files.pythonhosted.org/packages/91/b9/4faa2ae1e29087886d4a7a7083bd06386667f1b42e0312398260d3cd9132/bsdiff4-1.2.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56573391bf5d0377143836aad54495b8ecd3224b80c65013499ff1a0bc2cb98b",
                "md5": "9b9ce6a884e8cfea90ef1baaf2bd5e61",
                "sha256": "6ff3bdaa3a99b1fc70cb7dd671a7ef9a58781aa9bcf2a29507703883d6063d3c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9b9ce6a884e8cfea90ef1baaf2bd5e61",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32546,
            "upload_time": "2023-11-02T01:55:08",
            "upload_time_iso_8601": "2023-11-02T01:55:08.216476Z",
            "url": "https://files.pythonhosted.org/packages/56/57/3391bf5d0377143836aad54495b8ecd3224b80c65013499ff1a0bc2cb98b/bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a77800473150ea7374751604d8f28532280e821ce51e30433fc08dd10f9c1a2c",
                "md5": "9430cac80c3022db6a1bf3028ff0bff2",
                "sha256": "a6c8380ee122af4a07605a5925a1807d270efa2a900fc282b6b360ebb0b0942f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9430cac80c3022db6a1bf3028ff0bff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34604,
            "upload_time": "2023-11-02T01:55:09",
            "upload_time_iso_8601": "2023-11-02T01:55:09.371108Z",
            "url": "https://files.pythonhosted.org/packages/a7/78/00473150ea7374751604d8f28532280e821ce51e30433fc08dd10f9c1a2c/bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f03224f99a2c8428d0c052a79de171583f5d9cf1ced8055eec4fdf37ef3d4c45",
                "md5": "0d3b08378758a85528e1ad36ede18ee8",
                "sha256": "8a3c1d8b146d41d98777189048ffe34a3ceb60be73320613b979cff7f2c671b8"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0d3b08378758a85528e1ad36ede18ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32503,
            "upload_time": "2023-11-02T01:55:10",
            "upload_time_iso_8601": "2023-11-02T01:55:10.505618Z",
            "url": "https://files.pythonhosted.org/packages/f0/32/24f99a2c8428d0c052a79de171583f5d9cf1ced8055eec4fdf37ef3d4c45/bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e685c0cf1f681e16d0a6906d245305e10ef8c8e6943acbd342cceb5221f11e27",
                "md5": "8ea4824964d26f4de0fb7b39c69c4093",
                "sha256": "746092703ce5a6f8cbe72f8f6042b104a0af7d91d36e301a78cc3464fbc6ada5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ea4824964d26f4de0fb7b39c69c4093",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32035,
            "upload_time": "2023-11-02T01:55:11",
            "upload_time_iso_8601": "2023-11-02T01:55:11.584751Z",
            "url": "https://files.pythonhosted.org/packages/e6/85/c0cf1f681e16d0a6906d245305e10ef8c8e6943acbd342cceb5221f11e27/bsdiff4-1.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9facadbc2a5a23376f9b023229c20dcaa553fc30b8a3acd569e5074ff29ef06a",
                "md5": "26df21f3fee993a747739ea27577ee5d",
                "sha256": "a78b88e84c179d998f65e696424fba66ef3b58a7b7582facf639a202534fe5e4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "26df21f3fee993a747739ea27577ee5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34787,
            "upload_time": "2023-11-02T01:55:13",
            "upload_time_iso_8601": "2023-11-02T01:55:13.184377Z",
            "url": "https://files.pythonhosted.org/packages/9f/ac/adbc2a5a23376f9b023229c20dcaa553fc30b8a3acd569e5074ff29ef06a/bsdiff4-1.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b2fcc187f2c2514933d96e13ee0288d88169e4a649e1ed2706d1ca372a88ea7",
                "md5": "57e3d3b66fcc0442de96be007f215a9f",
                "sha256": "1eada02fafe5062e7146dc9ecf855e4532e0f0510ae61d56b2462b56231e490d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "57e3d3b66fcc0442de96be007f215a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 35533,
            "upload_time": "2023-11-02T01:55:14",
            "upload_time_iso_8601": "2023-11-02T01:55:14.749486Z",
            "url": "https://files.pythonhosted.org/packages/6b/2f/cc187f2c2514933d96e13ee0288d88169e4a649e1ed2706d1ca372a88ea7/bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11c9b5417495bd54e0254c5b8404d564cbe9cbe21ebd6b82f0ed9ac6a297b8ea",
                "md5": "ad618d07b9f0e9d03f8368492a70fc13",
                "sha256": "958c13458ae6aa0aa369e8afb798de5d3e0c9cb5d2bffc6d6d19c9e354c87922"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ad618d07b9f0e9d03f8368492a70fc13",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 37652,
            "upload_time": "2023-11-02T01:55:15",
            "upload_time_iso_8601": "2023-11-02T01:55:15.773606Z",
            "url": "https://files.pythonhosted.org/packages/11/c9/b5417495bd54e0254c5b8404d564cbe9cbe21ebd6b82f0ed9ac6a297b8ea/bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f6c4880d063fc30ff3abf4057a66abc17019907e4a5cced3ab7dca0090898e1",
                "md5": "a02b5d4bd5992339ea8edd88229df0eb",
                "sha256": "3fec9d4cf72fcc72643e648a8bfb3167dc6568091aeb7de7247d497490628618"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a02b5d4bd5992339ea8edd88229df0eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 37623,
            "upload_time": "2023-11-02T01:55:16",
            "upload_time_iso_8601": "2023-11-02T01:55:16.858794Z",
            "url": "https://files.pythonhosted.org/packages/4f/6c/4880d063fc30ff3abf4057a66abc17019907e4a5cced3ab7dca0090898e1/bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3db6deec394d471163c7cae8bcc276b5abca2d81c22055e3550a529806a67923",
                "md5": "30e685ea17e4b9e2d9fbff54dda3da9e",
                "sha256": "809ad6cdbdff0b72387cb45d2227e0109d35e3322fe0c57bb09b0b5d01c4b05e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "30e685ea17e4b9e2d9fbff54dda3da9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 35737,
            "upload_time": "2023-11-02T01:55:17",
            "upload_time_iso_8601": "2023-11-02T01:55:17.877525Z",
            "url": "https://files.pythonhosted.org/packages/3d/b6/deec394d471163c7cae8bcc276b5abca2d81c22055e3550a529806a67923/bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1f0593a7f6a9494157f3bea7cce8a8d5bc869aa44ac554d9393f0bffebbea8f",
                "md5": "d67c359cbe6ed4d7907bcba6260c3c9f",
                "sha256": "41ae3d033ab66652bd291bd189a274e609966a996e941d75259734e2d36e6f28"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d67c359cbe6ed4d7907bcba6260c3c9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 35444,
            "upload_time": "2023-11-02T01:55:18",
            "upload_time_iso_8601": "2023-11-02T01:55:18.958230Z",
            "url": "https://files.pythonhosted.org/packages/a1/f0/593a7f6a9494157f3bea7cce8a8d5bc869aa44ac554d9393f0bffebbea8f/bsdiff4-1.2.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4aa1826175648b7074ceb819c5b79e99739747e35d2fd214dbc073922ade029c",
                "md5": "84e6cd59dff0c98c9610171b72cd2023",
                "sha256": "d23dec30978393643aa6fa75aaf567ad36864f32297eb618e64d06da57a8af0c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "84e6cd59dff0c98c9610171b72cd2023",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 17819,
            "upload_time": "2023-11-02T01:55:20",
            "upload_time_iso_8601": "2023-11-02T01:55:20.453543Z",
            "url": "https://files.pythonhosted.org/packages/4a/a1/826175648b7074ceb819c5b79e99739747e35d2fd214dbc073922ade029c/bsdiff4-1.2.4-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32a983bbceb10dc1adcb302bca920839efb5eee770b327d4e8d25daf44d91bb4",
                "md5": "a958dbe33b248a07ead34e7f1ad312db",
                "sha256": "6d10f6e3220ceffbb8c8cfad4dc5da2ed0376cbc2e606159288253cd6081fdb4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a958dbe33b248a07ead34e7f1ad312db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 18958,
            "upload_time": "2023-11-02T01:55:21",
            "upload_time_iso_8601": "2023-11-02T01:55:21.456935Z",
            "url": "https://files.pythonhosted.org/packages/32/a9/83bbceb10dc1adcb302bca920839efb5eee770b327d4e8d25daf44d91bb4/bsdiff4-1.2.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb59c2f6494d46771da67a18a65bacd374d0c412d9efa9f8c2b73dc68d3e99e1",
                "md5": "a0b2b9bf70991383a83dc8201900c723",
                "sha256": "cea9d428aa938e2a03b0b866cd285596df8ed32102f8bba24a902a9233ff89f9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a0b2b9bf70991383a83dc8201900c723",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 23305,
            "upload_time": "2023-11-02T01:55:22",
            "upload_time_iso_8601": "2023-11-02T01:55:22.656852Z",
            "url": "https://files.pythonhosted.org/packages/fb/59/c2f6494d46771da67a18a65bacd374d0c412d9efa9f8c2b73dc68d3e99e1/bsdiff4-1.2.4-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "102954cb82a5a252369b61e248855c93b188862fcd40602dd45ae42ac1f4ad72",
                "md5": "eac91ee96f827fbcc984c43d523085d2",
                "sha256": "dc1e5748013509d1200119c0198c138f08abafba90d28af05e8e6d1f9c094dd9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eac91ee96f827fbcc984c43d523085d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16392,
            "upload_time": "2023-11-02T01:55:23",
            "upload_time_iso_8601": "2023-11-02T01:55:23.594925Z",
            "url": "https://files.pythonhosted.org/packages/10/29/54cb82a5a252369b61e248855c93b188862fcd40602dd45ae42ac1f4ad72/bsdiff4-1.2.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff9806bff077eef02e7f3b6d5f194cb5db3ea82c378d9cfae21e777f8af0ee4e",
                "md5": "f116a76513c2c70224604acabc95d0db",
                "sha256": "97ac7fa4784f85a5e1167b4991a0fbfc0861611596199b158ebe19f823616866"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f116a76513c2c70224604acabc95d0db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16520,
            "upload_time": "2023-11-02T01:55:24",
            "upload_time_iso_8601": "2023-11-02T01:55:24.630428Z",
            "url": "https://files.pythonhosted.org/packages/ff/98/06bff077eef02e7f3b6d5f194cb5db3ea82c378d9cfae21e777f8af0ee4e/bsdiff4-1.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0fe29afa1d67819daed18d3ce95b3a2d52fe478fb01920ab76c1a5217c7ce5",
                "md5": "1a7f1c8df9b3923f1e26859b46a0c454",
                "sha256": "56240c887cdb7e4e4b90a1f8446eeb17daeed71090990092d1c79e0a67838cb9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a7f1c8df9b3923f1e26859b46a0c454",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31891,
            "upload_time": "2023-11-02T01:55:25",
            "upload_time_iso_8601": "2023-11-02T01:55:25.599789Z",
            "url": "https://files.pythonhosted.org/packages/8e/0f/e29afa1d67819daed18d3ce95b3a2d52fe478fb01920ab76c1a5217c7ce5/bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ee738f73187b8990882c5f60f3308f17973a3251bbce9a07a4c885af3808362",
                "md5": "65d6288505b1e33d4148f0bdec2afd4c",
                "sha256": "699e5da51906f2640cbd544f3d5dacbc4ec12aac8c92b57f205d16ce7373093c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "65d6288505b1e33d4148f0bdec2afd4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33977,
            "upload_time": "2023-11-02T01:55:26",
            "upload_time_iso_8601": "2023-11-02T01:55:26.682443Z",
            "url": "https://files.pythonhosted.org/packages/0e/e7/38f73187b8990882c5f60f3308f17973a3251bbce9a07a4c885af3808362/bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49339e12de0496c917c56a9c2c4076ce5dd5f74dbf7ed041780ddd3418953075",
                "md5": "b90ce6a0f874bc2c70fcc783c1382966",
                "sha256": "46977631e747c717175154060a004c72c2844fb04f4a3e1ed3dae88e72e45552"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b90ce6a0f874bc2c70fcc783c1382966",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31884,
            "upload_time": "2023-11-02T01:55:27",
            "upload_time_iso_8601": "2023-11-02T01:55:27.710667Z",
            "url": "https://files.pythonhosted.org/packages/49/33/9e12de0496c917c56a9c2c4076ce5dd5f74dbf7ed041780ddd3418953075/bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bc114c9dab6f24012773d9058c159dd788a3277738152fa9069c7ec71c744b8",
                "md5": "1b9bc76e4311a5279ebc8c461f7cd72b",
                "sha256": "567d38930b37626fb71c47095975969a117662a2725234175738b82fd40eca91"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b9bc76e4311a5279ebc8c461f7cd72b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31343,
            "upload_time": "2023-11-02T01:55:29",
            "upload_time_iso_8601": "2023-11-02T01:55:29.175063Z",
            "url": "https://files.pythonhosted.org/packages/4b/c1/14c9dab6f24012773d9058c159dd788a3277738152fa9069c7ec71c744b8/bsdiff4-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f8ce3a88f18d902b731781c5e00d514dafdb99ea803f4fa52bdf16f7cdb4a6d",
                "md5": "2d8baf6c9ee3e5f21fa1312349c21769",
                "sha256": "9a39f0ef2e8406490fb2a30629ea9fa45f3f408b58aa1e1f38b9828a70f19c05"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2d8baf6c9ee3e5f21fa1312349c21769",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34161,
            "upload_time": "2023-11-02T01:55:30",
            "upload_time_iso_8601": "2023-11-02T01:55:30.291654Z",
            "url": "https://files.pythonhosted.org/packages/6f/8c/e3a88f18d902b731781c5e00d514dafdb99ea803f4fa52bdf16f7cdb4a6d/bsdiff4-1.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a386000d585ccba6086f6e8a6d9faa8f5178928e0970ef38cecfe804cd44f3da",
                "md5": "f61bce30070d07656c14ce5feec4826d",
                "sha256": "a4827e43e6253b83e6639154a545130fd2134797603401d34b14f6d369e3a48b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f61bce30070d07656c14ce5feec4826d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35233,
            "upload_time": "2023-11-02T01:55:31",
            "upload_time_iso_8601": "2023-11-02T01:55:31.547418Z",
            "url": "https://files.pythonhosted.org/packages/a3/86/000d585ccba6086f6e8a6d9faa8f5178928e0970ef38cecfe804cd44f3da/bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "364b41d9f158ea1547222c4634afd4b61553768fe885b97c6b9b82a40998ae59",
                "md5": "99b7e160c334f01193a6b5e575f865fd",
                "sha256": "03512007c74680ce4c401603ed5eb5c4a072f53fd6dfd328b6506879ba2adf18"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "99b7e160c334f01193a6b5e575f865fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 37346,
            "upload_time": "2023-11-02T01:55:32",
            "upload_time_iso_8601": "2023-11-02T01:55:32.680665Z",
            "url": "https://files.pythonhosted.org/packages/36/4b/41d9f158ea1547222c4634afd4b61553768fe885b97c6b9b82a40998ae59/bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bcf434b978e4c95ac61aa0661f1ec61b46cd27f2111c0f104d4a296f29e81a4",
                "md5": "b66121ed23e27dd4451e226006db39e1",
                "sha256": "31d8f011573abfd0c4f9b083ff9374cb84bf2d74e04603d16555a022d67ca8a1"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b66121ed23e27dd4451e226006db39e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 37286,
            "upload_time": "2023-11-02T01:55:33",
            "upload_time_iso_8601": "2023-11-02T01:55:33.864620Z",
            "url": "https://files.pythonhosted.org/packages/5b/cf/434b978e4c95ac61aa0661f1ec61b46cd27f2111c0f104d4a296f29e81a4/bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6df32c92835d4940b1c393ea3ae2f28310168ea1478cdf04c509bb1e20b0add4",
                "md5": "071c4cfde905b00c0610d8376bb73df7",
                "sha256": "d5fef32a733c36a08b75323d7d7afae4c5d4eaeeb4a6ad5e31dc0717cfbb8fdf"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "071c4cfde905b00c0610d8376bb73df7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35402,
            "upload_time": "2023-11-02T01:55:34",
            "upload_time_iso_8601": "2023-11-02T01:55:34.908724Z",
            "url": "https://files.pythonhosted.org/packages/6d/f3/2c92835d4940b1c393ea3ae2f28310168ea1478cdf04c509bb1e20b0add4/bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa1b58119ed5b4d33c2657b8175794b0386ad8dc31137ce670d694d11c78e3f8",
                "md5": "9f875cf627283101350e3f89b3e7322f",
                "sha256": "56cb1b0b59c9f110e3dd4a86cfae7e299ce157b153838be9c55e91ca684831c0"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f875cf627283101350e3f89b3e7322f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35135,
            "upload_time": "2023-11-02T01:55:35",
            "upload_time_iso_8601": "2023-11-02T01:55:35.984237Z",
            "url": "https://files.pythonhosted.org/packages/fa/1b/58119ed5b4d33c2657b8175794b0386ad8dc31137ce670d694d11c78e3f8/bsdiff4-1.2.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70edc27d11bde8abfcbb216cb4745f11ea7bfef09fbba92b665f8ea88b0d20ce",
                "md5": "5585f9ca727259aa0c5a55afad328a23",
                "sha256": "e161d0511ae6b254a651d70890af8fab660c6e2a3d4f8eac953796fb4b7ecacc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "5585f9ca727259aa0c5a55afad328a23",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 17821,
            "upload_time": "2023-11-02T01:55:37",
            "upload_time_iso_8601": "2023-11-02T01:55:37.505987Z",
            "url": "https://files.pythonhosted.org/packages/70/ed/c27d11bde8abfcbb216cb4745f11ea7bfef09fbba92b665f8ea88b0d20ce/bsdiff4-1.2.4-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca8615732673f27d7688b16ba2ab36847ff275dbaa5812227d8f244f20be91ef",
                "md5": "6b3ae112d7a691d8b22eb89813ebcd66",
                "sha256": "2d6583cbfffc9624f4e29ce20463d8dfdb189b848a518692c71c5f0a1721bf00"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b3ae112d7a691d8b22eb89813ebcd66",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 18956,
            "upload_time": "2023-11-02T01:55:39",
            "upload_time_iso_8601": "2023-11-02T01:55:39.863175Z",
            "url": "https://files.pythonhosted.org/packages/ca/86/15732673f27d7688b16ba2ab36847ff275dbaa5812227d8f244f20be91ef/bsdiff4-1.2.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f745d64a5ba657603fcd27f8219bdadeb0c7a4a8205c07614ca86ef5f3ba977",
                "md5": "a51c6197d0129be119541acd538ca605",
                "sha256": "ef5b8ded889b574586e73fe8cb1b27d1c2d6791dbaabc44d28711c5a7db822bd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a51c6197d0129be119541acd538ca605",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 15816,
            "upload_time": "2023-11-02T01:55:42",
            "upload_time_iso_8601": "2023-11-02T01:55:42.326714Z",
            "url": "https://files.pythonhosted.org/packages/4f/74/5d64a5ba657603fcd27f8219bdadeb0c7a4a8205c07614ca86ef5f3ba977/bsdiff4-1.2.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b2279796f9405a07bd1d8b10a38c86894fab5d2b018c29c0a593ea152dc9d8e",
                "md5": "376291c6ad28643bbd045ed257abdc0f",
                "sha256": "b2259da32686261948d99ced907a1a76b038d5e55007cc0874911eb35fdebb19"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "376291c6ad28643bbd045ed257abdc0f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 17575,
            "upload_time": "2023-11-02T01:55:43",
            "upload_time_iso_8601": "2023-11-02T01:55:43.925959Z",
            "url": "https://files.pythonhosted.org/packages/7b/22/79796f9405a07bd1d8b10a38c86894fab5d2b018c29c0a593ea152dc9d8e/bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0cdc23b4badc08f03e7a0440820fcb19f8fee33c52cefd8b564581fcda11a42",
                "md5": "6be11dd68d88b5750fb876b35dbef38d",
                "sha256": "547734ac8132320dff7e68b05c4873219258c4f6732739e3f52f63691c9091cf"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6be11dd68d88b5750fb876b35dbef38d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 16980,
            "upload_time": "2023-11-02T01:55:45",
            "upload_time_iso_8601": "2023-11-02T01:55:45.385671Z",
            "url": "https://files.pythonhosted.org/packages/d0/cd/c23b4badc08f03e7a0440820fcb19f8fee33c52cefd8b564581fcda11a42/bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c44b221fc19c775454aa4fc8d71f7e5c09a8c26c72891eae794636a8f62b4647",
                "md5": "e19d81c2dee12ae355600a00adc8b993",
                "sha256": "cc2d29fb8dde779127cea831558227d1652715cb46dd9c2cea8bebd7f6fd5085"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e19d81c2dee12ae355600a00adc8b993",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 17512,
            "upload_time": "2023-11-02T01:55:46",
            "upload_time_iso_8601": "2023-11-02T01:55:46.583754Z",
            "url": "https://files.pythonhosted.org/packages/c4/4b/221fc19c775454aa4fc8d71f7e5c09a8c26c72891eae794636a8f62b4647/bsdiff4-1.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "016ab3cd817df303a258317215c2abf65ebb1ccf67aacda73a2a3a6cbf425264",
                "md5": "0eba0b137aa380b9d47779b542fd1615",
                "sha256": "8df89e307c7676eff847a85b89397371fe045f665b7cb6d05e35a28cd93dc156"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0eba0b137aa380b9d47779b542fd1615",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 18999,
            "upload_time": "2023-11-02T01:55:47",
            "upload_time_iso_8601": "2023-11-02T01:55:47.638225Z",
            "url": "https://files.pythonhosted.org/packages/01/6a/b3cd817df303a258317215c2abf65ebb1ccf67aacda73a2a3a6cbf425264/bsdiff4-1.2.4-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c80c6a9a65f83dd02c5f8ddc3b923ef77f29a768b167e0dc5ce666df68a08a0d",
                "md5": "31fa71441dd961590b66335cee3be110",
                "sha256": "8aa63c34e3499529472223ad88895ec88aec7dcfbfce96c542baae52b167e3fb"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31fa71441dd961590b66335cee3be110",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 15809,
            "upload_time": "2023-11-02T01:55:48",
            "upload_time_iso_8601": "2023-11-02T01:55:48.866463Z",
            "url": "https://files.pythonhosted.org/packages/c8/0c/6a9a65f83dd02c5f8ddc3b923ef77f29a768b167e0dc5ce666df68a08a0d/bsdiff4-1.2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b3a6e0e94067a42134c0c7ab31a7861e6407c5645ef3495d80192f11f0ecd4f",
                "md5": "467e938faacd90bf138cdbc3baa13d10",
                "sha256": "e145bda6e1e94338cc8b07da4ef96e766f351bf17482c5ed820b243b896b3263"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "467e938faacd90bf138cdbc3baa13d10",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 17594,
            "upload_time": "2023-11-02T01:55:50",
            "upload_time_iso_8601": "2023-11-02T01:55:50.090223Z",
            "url": "https://files.pythonhosted.org/packages/5b/3a/6e0e94067a42134c0c7ab31a7861e6407c5645ef3495d80192f11f0ecd4f/bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccb7e123ef8c69a96aa905b7bc712a0fc49a83639a5e6aaef8c739cf1ac9abe9",
                "md5": "e263e118b2e62de279572b159c9f5602",
                "sha256": "5de55b381243fd3ea4f0682493e82f2fa6bfa347b51d964f7bfbaf877ee702af"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e263e118b2e62de279572b159c9f5602",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 16974,
            "upload_time": "2023-11-02T01:55:51",
            "upload_time_iso_8601": "2023-11-02T01:55:51.563151Z",
            "url": "https://files.pythonhosted.org/packages/cc/b7/e123ef8c69a96aa905b7bc712a0fc49a83639a5e6aaef8c739cf1ac9abe9/bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3462c6e39cb58780d8e9c3aaa95992731a028408c516e4ffc98ee04a5b8ed38",
                "md5": "6e16c7332d48cbe22ed3f6f264622de8",
                "sha256": "28f91bdce79e22f492d96d17599b412fd0246647919a55aa2ec4326ee07f4728"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6e16c7332d48cbe22ed3f6f264622de8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 17518,
            "upload_time": "2023-11-02T01:55:52",
            "upload_time_iso_8601": "2023-11-02T01:55:52.888495Z",
            "url": "https://files.pythonhosted.org/packages/e3/46/2c6e39cb58780d8e9c3aaa95992731a028408c516e4ffc98ee04a5b8ed38/bsdiff4-1.2.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa8e7675b19841a8e3efd857ffc011731fb15c0460474d3944c24b36d6a1fdf4",
                "md5": "8e153eb1fe980938e0a418ac4029ed5a",
                "sha256": "ff9ef91c8313d03c24b9d5857acc577616a6d830c81af3165fc593fe8bc1af85"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e153eb1fe980938e0a418ac4029ed5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 18986,
            "upload_time": "2023-11-02T01:55:53",
            "upload_time_iso_8601": "2023-11-02T01:55:53.961779Z",
            "url": "https://files.pythonhosted.org/packages/fa/8e/7675b19841a8e3efd857ffc011731fb15c0460474d3944c24b36d6a1fdf4/bsdiff4-1.2.4-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04748343b7a9e1f10f6b68c53af35dba63b469712847ddacb96baec428855f45",
                "md5": "431379974b447719c36cf44cb32095b2",
                "sha256": "c7ff8946e599afcc13f07892207c48061ab6d966478abc4da674497daec7522d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "431379974b447719c36cf44cb32095b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 15810,
            "upload_time": "2023-11-02T01:55:55",
            "upload_time_iso_8601": "2023-11-02T01:55:55.167083Z",
            "url": "https://files.pythonhosted.org/packages/04/74/8343b7a9e1f10f6b68c53af35dba63b469712847ddacb96baec428855f45/bsdiff4-1.2.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a3897faf49131552abb2930d7171b4284418ba803a77ac97e84e3b22202156d",
                "md5": "31e37abaa97cfe3c1645d123408c1dcb",
                "sha256": "899a823330ffdbc93f58aea4c956bddbb489d762fe9c0b6032760fee57a104b3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31e37abaa97cfe3c1645d123408c1dcb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 17595,
            "upload_time": "2023-11-02T01:55:56",
            "upload_time_iso_8601": "2023-11-02T01:55:56.444762Z",
            "url": "https://files.pythonhosted.org/packages/6a/38/97faf49131552abb2930d7171b4284418ba803a77ac97e84e3b22202156d/bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb70d2c45ae4ba76e54bff33325734b5215509064170a47bf2507eb13b8df77f",
                "md5": "8d4066f1e01a9a71da4af73e7d11264f",
                "sha256": "fbeff47a3579bd91b92431230b46b219dfb2d1817e78135c726c815c85afa906"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d4066f1e01a9a71da4af73e7d11264f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 16976,
            "upload_time": "2023-11-02T01:55:57",
            "upload_time_iso_8601": "2023-11-02T01:55:57.631380Z",
            "url": "https://files.pythonhosted.org/packages/bb/70/d2c45ae4ba76e54bff33325734b5215509064170a47bf2507eb13b8df77f/bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b8d996e125f08349bd254d0b098b4bd6bf93f4c6f2fa5dbacdc6ec656d7cf25",
                "md5": "5e0c648f089ea599139926c4877eb787",
                "sha256": "c69a2a05d53359a4ef73ec671ffcee19305a3daee5a3f452129fa1a5cdccd2cc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5e0c648f089ea599139926c4877eb787",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 17517,
            "upload_time": "2023-11-02T01:55:58",
            "upload_time_iso_8601": "2023-11-02T01:55:58.734356Z",
            "url": "https://files.pythonhosted.org/packages/3b/8d/996e125f08349bd254d0b098b4bd6bf93f4c6f2fa5dbacdc6ec656d7cf25/bsdiff4-1.2.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1cbc0d82bfb06d072a8fa4880e169e866f66ec9d0ae07bf4454ac18b66ac684",
                "md5": "a830fd859fe42d1eeb367857e6f4b3b2",
                "sha256": "8af5fbed7fd5e71b0aa574a9bbcc103fd8ba84b88e31834d768043f00d75d37f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a830fd859fe42d1eeb367857e6f4b3b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 18990,
            "upload_time": "2023-11-02T01:55:59",
            "upload_time_iso_8601": "2023-11-02T01:55:59.899848Z",
            "url": "https://files.pythonhosted.org/packages/c1/cb/c0d82bfb06d072a8fa4880e169e866f66ec9d0ae07bf4454ac18b66ac684/bsdiff4-1.2.4-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce6459efea59469e8c3bd4c62623d7b2966c108a7f3114ec714c6aa944691f7b",
                "md5": "54e183c4e69c108e31887487e543e682",
                "sha256": "a2959d37ef5083358c716eb18660a94096387340c194540921f171b9a8611f65"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54e183c4e69c108e31887487e543e682",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 15813,
            "upload_time": "2023-11-02T01:56:01",
            "upload_time_iso_8601": "2023-11-02T01:56:01.624359Z",
            "url": "https://files.pythonhosted.org/packages/ce/64/59efea59469e8c3bd4c62623d7b2966c108a7f3114ec714c6aa944691f7b/bsdiff4-1.2.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9080ce4a0dc84e3d313ebfaadfc7bc78613171d8926df0f14c4e5540a1d2c36e",
                "md5": "852895640d4afbb639be50e396796a9e",
                "sha256": "4c43f9dae2b93425210a9034059543c1e9f44c997c5b65af974871e3b568b320"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "852895640d4afbb639be50e396796a9e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 17572,
            "upload_time": "2023-11-02T01:56:03",
            "upload_time_iso_8601": "2023-11-02T01:56:03.022012Z",
            "url": "https://files.pythonhosted.org/packages/90/80/ce4a0dc84e3d313ebfaadfc7bc78613171d8926df0f14c4e5540a1d2c36e/bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3c29834c70d9ab0a347b5d96eb15e93d1909b2ba30e28f47e88005bbcf5d74",
                "md5": "d337aa1909e166d2b995fbb9f1a250bd",
                "sha256": "bcca384623c0391eaed5967ac12f2e2af5f292120670a152b451c77db6ef7f5e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d337aa1909e166d2b995fbb9f1a250bd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 16975,
            "upload_time": "2023-11-02T01:56:04",
            "upload_time_iso_8601": "2023-11-02T01:56:04.132632Z",
            "url": "https://files.pythonhosted.org/packages/ce/3c/29834c70d9ab0a347b5d96eb15e93d1909b2ba30e28f47e88005bbcf5d74/bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9873de4af4c48fb453a7e40ddb833ffe412aac4a829b894e13b5ba47a999a827",
                "md5": "d28232959185729a0c7d90619226ba70",
                "sha256": "351d179e7ab0e1b4630fb03ef04480b9c318d9098f3a76812f9c6cbee74dc2aa"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d28232959185729a0c7d90619226ba70",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 17510,
            "upload_time": "2023-11-02T01:56:05",
            "upload_time_iso_8601": "2023-11-02T01:56:05.461865Z",
            "url": "https://files.pythonhosted.org/packages/98/73/de4af4c48fb453a7e40ddb833ffe412aac4a829b894e13b5ba47a999a827/bsdiff4-1.2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf959021ef1367110262221ce4e9c5d8e369aaf5f82efa0f7af34ce2905c7cc7",
                "md5": "54d83417881fbd15b3c613b7fd8df93c",
                "sha256": "4f079fb1db9a3cd6089d0e0193bbc63cb9dcd8e67f5240226dadedb9fd51d058"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "54d83417881fbd15b3c613b7fd8df93c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 18992,
            "upload_time": "2023-11-02T01:56:06",
            "upload_time_iso_8601": "2023-11-02T01:56:06.577544Z",
            "url": "https://files.pythonhosted.org/packages/bf/95/9021ef1367110262221ce4e9c5d8e369aaf5f82efa0f7af34ce2905c7cc7/bsdiff4-1.2.4-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58b2ccf01309dda2c08e0600027bc0f5a99534c91f2f8728b5009fc363df6c2c",
                "md5": "ebc06d059f3c4ed4c4a5b952f55ae239",
                "sha256": "1d7129a8121860731e8cce2901d3183e14aec70244f64e8f74563275dc388067"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "ebc06d059f3c4ed4c4a5b952f55ae239",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 13172,
            "upload_time": "2023-11-02T01:56:08",
            "upload_time_iso_8601": "2023-11-02T01:56:08.012522Z",
            "url": "https://files.pythonhosted.org/packages/58/b2/ccf01309dda2c08e0600027bc0f5a99534c91f2f8728b5009fc363df6c2c/bsdiff4-1.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-02 01:56:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ilanschnell",
    "github_project": "bsdiff4",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bsdiff4"
}
        
Elapsed time: 0.17357s