bsdiff4


Namebsdiff4 JSON
Version 1.2.5 PyPI version JSON
download
home_pagehttps://github.com/ilanschnell/bsdiff4
Summarybinary diff and patch using the BSDIFF4-format
upload_time2024-10-10 04:16:29
maintainerNone
docs_urlNone
authorIlan Schnell
requires_pythonNone
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": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Ilan Schnell",
    "author_email": "ilanschnell@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/43/49/262497fc308aa998d7431130cb8526b16aa43f2cca500d0182fb68689d99/bsdiff4-1.2.5.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.5",
    "project_urls": {
        "Homepage": "https://github.com/ilanschnell/bsdiff4"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aadac6bda0c14698f057ab8ba8e14b4ae9042f845ff55ddfb2c72162e573cc3f",
                "md5": "b068b7122f813fa104bc544b654fd535",
                "sha256": "a52844855f385ad032f6394abedad292b23e5db0f0dc0673920b4db1f52a5962"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b068b7122f813fa104bc544b654fd535",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 23436,
            "upload_time": "2024-10-10T04:13:55",
            "upload_time_iso_8601": "2024-10-10T04:13:55.758047Z",
            "url": "https://files.pythonhosted.org/packages/aa/da/c6bda0c14698f057ab8ba8e14b4ae9042f845ff55ddfb2c72162e573cc3f/bsdiff4-1.2.5-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb38a3597308433f4f845653ca87e062497946820c22d65708e9ed66158a2b9c",
                "md5": "263a9e1256bee7a7f98b003f5cc39c8b",
                "sha256": "51f48107f90a8efcc371c9f2ed3d9d4dfcbe68cdbb9125fddc9045a33d1dc861"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "263a9e1256bee7a7f98b003f5cc39c8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16648,
            "upload_time": "2024-10-10T04:13:57",
            "upload_time_iso_8601": "2024-10-10T04:13:57.424241Z",
            "url": "https://files.pythonhosted.org/packages/bb/38/a3597308433f4f845653ca87e062497946820c22d65708e9ed66158a2b9c/bsdiff4-1.2.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd92cf8f073a34dc07518a981a29aa750491bba07ff4a79d2dd6afd31a02339e",
                "md5": "e7db3fd6cabe03193ff9bf9d9ab01376",
                "sha256": "4b5493e92715978ee3580ab0879ece7f2c0cc6f8a9e275d3772919ea239c0b1d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e7db3fd6cabe03193ff9bf9d9ab01376",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 16632,
            "upload_time": "2024-10-10T04:13:58",
            "upload_time_iso_8601": "2024-10-10T04:13:58.719476Z",
            "url": "https://files.pythonhosted.org/packages/dd/92/cf8f073a34dc07518a981a29aa750491bba07ff4a79d2dd6afd31a02339e/bsdiff4-1.2.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a95d08513378355185b4ef6560d6cc02d9e617f3b89617cd101aa0f4c5d41cf1",
                "md5": "2c23981816eb1330d31bd440a92a66f2",
                "sha256": "94df7e60c9616bf60e0ed2809cdb53acc8fdb2cf98a04ac792cc029df84d12f9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c23981816eb1330d31bd440a92a66f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32008,
            "upload_time": "2024-10-10T04:13:59",
            "upload_time_iso_8601": "2024-10-10T04:13:59.638929Z",
            "url": "https://files.pythonhosted.org/packages/a9/5d/08513378355185b4ef6560d6cc02d9e617f3b89617cd101aa0f4c5d41cf1/bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34c9638956dc4579b086b91083e11e141d50144922464d661ba1caf971a37270",
                "md5": "765593a22b36186547bd295fbaa6cc40",
                "sha256": "032788193b499937db61d87cd31021ec88022c8e1d3ae4ddd87f5f6bbae5008b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "765593a22b36186547bd295fbaa6cc40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34072,
            "upload_time": "2024-10-10T04:14:01",
            "upload_time_iso_8601": "2024-10-10T04:14:01.145298Z",
            "url": "https://files.pythonhosted.org/packages/34/c9/638956dc4579b086b91083e11e141d50144922464d661ba1caf971a37270/bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a89e9e1f5c0378a05d5f176a1772b167cb4b94d9dd7044e065d0cda3ce0cd01",
                "md5": "a468371f8394905f9aa1fac775a4a6b9",
                "sha256": "a5011ac2535e78cf69b199a09c6da1b740b013d47688f2465e0ba0b5827c3473"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a468371f8394905f9aa1fac775a4a6b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 31999,
            "upload_time": "2024-10-10T04:14:03",
            "upload_time_iso_8601": "2024-10-10T04:14:03.167547Z",
            "url": "https://files.pythonhosted.org/packages/5a/89/e9e1f5c0378a05d5f176a1772b167cb4b94d9dd7044e065d0cda3ce0cd01/bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cefa0fd9d23287e7b00237d6565ecc45acaacd89969978113ed4fd17ed3e639",
                "md5": "6aeb7e2b5922f1fc941abbc830977e10",
                "sha256": "aad47697c0d1196db648030472b348aacab8a0e2f36ac579ac4da428f55045f0"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6aeb7e2b5922f1fc941abbc830977e10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 31483,
            "upload_time": "2024-10-10T04:14:03",
            "upload_time_iso_8601": "2024-10-10T04:14:03.988706Z",
            "url": "https://files.pythonhosted.org/packages/7c/ef/a0fd9d23287e7b00237d6565ecc45acaacd89969978113ed4fd17ed3e639/bsdiff4-1.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a087ac947d45fd34e511ccbfef6fb39816deb36ec3c8179303a7db4e96e84ec",
                "md5": "a41303433f23442fb6a952f3cd5cf219",
                "sha256": "b3ca480e8443a9a626d0d89b946c63b4d98a32a248b354a3d34da840f28aa80b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a41303433f23442fb6a952f3cd5cf219",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34278,
            "upload_time": "2024-10-10T04:14:05",
            "upload_time_iso_8601": "2024-10-10T04:14:05.096934Z",
            "url": "https://files.pythonhosted.org/packages/4a/08/7ac947d45fd34e511ccbfef6fb39816deb36ec3c8179303a7db4e96e84ec/bsdiff4-1.2.5-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": "d5cbd4d4d3d0ad80ddb806bcd12c86be15c91f74bdd914857e96a875a342edb0",
                "md5": "0a141a09a0cf563209e727b91857cfff",
                "sha256": "3593e6acb80bd46a2100fc8f052cc3b4959644034cd8addef85a2678df934d84"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0a141a09a0cf563209e727b91857cfff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32083,
            "upload_time": "2024-10-10T04:14:06",
            "upload_time_iso_8601": "2024-10-10T04:14:06.615340Z",
            "url": "https://files.pythonhosted.org/packages/d5/cb/d4d4d3d0ad80ddb806bcd12c86be15c91f74bdd914857e96a875a342edb0/bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f1c076e2078c151d14f9138f0d2867ba6aaa756d2cf029ca79c0a5739fc6165",
                "md5": "5515fca5783440b25333298cc13d6b91",
                "sha256": "7aba25f40e075de828b665c530b76451ac8892f171e69da76b29bb763d6102fc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5515fca5783440b25333298cc13d6b91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35630,
            "upload_time": "2024-10-10T04:14:08",
            "upload_time_iso_8601": "2024-10-10T04:14:08.141820Z",
            "url": "https://files.pythonhosted.org/packages/8f/1c/076e2078c151d14f9138f0d2867ba6aaa756d2cf029ca79c0a5739fc6165/bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57ef2dbba7755035800c5f39a0915d339e94b4177d44f69212c73611c575c629",
                "md5": "049ff917d07f32fc058556340c056d84",
                "sha256": "d67cd5f159f1715ebf9a7daa4a5e6a23d2eb5a9f9a5edd6ee863b5ce9d3714eb"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "049ff917d07f32fc058556340c056d84",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34137,
            "upload_time": "2024-10-10T04:14:09",
            "upload_time_iso_8601": "2024-10-10T04:14:09.624357Z",
            "url": "https://files.pythonhosted.org/packages/57/ef/2dbba7755035800c5f39a0915d339e94b4177d44f69212c73611c575c629/bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cbb59753848a4e78023663cb3fd4e69bbef0dde80f821183ddae92f92afe0ca",
                "md5": "753e45e5c1cf4322d773cbc200985bc0",
                "sha256": "02fb3247358948d8e919bf419858928e149272e425d66a8a455c7dd836ecdf47"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "753e45e5c1cf4322d773cbc200985bc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 33660,
            "upload_time": "2024-10-10T04:14:10",
            "upload_time_iso_8601": "2024-10-10T04:14:10.441096Z",
            "url": "https://files.pythonhosted.org/packages/9c/bb/59753848a4e78023663cb3fd4e69bbef0dde80f821183ddae92f92afe0ca/bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6701eb9c32a285b9bdf76f058c2565d8d24ca400058516f77d3fab8686d97935",
                "md5": "67e9fb75dcb116ff89a0a1c280b5ad35",
                "sha256": "f695619a93612628717fbfcd5f0caafcb328cbe9427475ad07c0f77bc87a36fb"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67e9fb75dcb116ff89a0a1c280b5ad35",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 31223,
            "upload_time": "2024-10-10T04:14:11",
            "upload_time_iso_8601": "2024-10-10T04:14:11.958439Z",
            "url": "https://files.pythonhosted.org/packages/67/01/eb9c32a285b9bdf76f058c2565d8d24ca400058516f77d3fab8686d97935/bsdiff4-1.2.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5048950d96ccf38a1e20856f2c1ddd315e3381ebedffba694acb8620723190dc",
                "md5": "9aa3354091977877ca71c6097a78d85c",
                "sha256": "40099bf37734bd6f8d1d78c40bc3088afcf8b4f5eb221a11edba2e215fb8361b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "9aa3354091977877ca71c6097a78d85c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 17835,
            "upload_time": "2024-10-10T04:14:12",
            "upload_time_iso_8601": "2024-10-10T04:14:12.794965Z",
            "url": "https://files.pythonhosted.org/packages/50/48/950d96ccf38a1e20856f2c1ddd315e3381ebedffba694acb8620723190dc/bsdiff4-1.2.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b93f13bd831b8c895cf40d64569492417c49fd788b95d18f276f31dbe047f93",
                "md5": "3fd397cea9fe17b343dd51b044a42889",
                "sha256": "3c89c82a39f0908646b5cf1d98ae63f5de533e71d477e1f0bc40cb07f74b6c3b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3fd397cea9fe17b343dd51b044a42889",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 18971,
            "upload_time": "2024-10-10T04:14:14",
            "upload_time_iso_8601": "2024-10-10T04:14:14.296909Z",
            "url": "https://files.pythonhosted.org/packages/8b/93/f13bd831b8c895cf40d64569492417c49fd788b95d18f276f31dbe047f93/bsdiff4-1.2.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab098351e0aaf07ead24dba914055c1d88f0163d645e71acdc97a8b804ce20d",
                "md5": "dcb5b3c157a20f06e5a954bc221d3286",
                "sha256": "595363a6965bef3f1ae3f88f36b57681feb6befc5fb1280bcfe2b320c4a59f83"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dcb5b3c157a20f06e5a954bc221d3286",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 23449,
            "upload_time": "2024-10-10T04:14:15",
            "upload_time_iso_8601": "2024-10-10T04:14:15.676802Z",
            "url": "https://files.pythonhosted.org/packages/ea/b0/98351e0aaf07ead24dba914055c1d88f0163d645e71acdc97a8b804ce20d/bsdiff4-1.2.5-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ce979bd58c04480398bd424e55cb9e6d70c6b5515334b66ff99a804c17790fe",
                "md5": "e4e19c814b6895337a31482a4687bcc6",
                "sha256": "7d1179db21d48c9d041d3dbc455727bdfddfdbd69b1bf9dc3bdadb70f3be322d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4e19c814b6895337a31482a4687bcc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16667,
            "upload_time": "2024-10-10T04:14:17",
            "upload_time_iso_8601": "2024-10-10T04:14:17.206786Z",
            "url": "https://files.pythonhosted.org/packages/6c/e9/79bd58c04480398bd424e55cb9e6d70c6b5515334b66ff99a804c17790fe/bsdiff4-1.2.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e434d3ae785a54dafc0fca181caf242cbfc9cce044285f1d6b76c4ec73e74526",
                "md5": "e6791c89029aed2496173e5a581d43ad",
                "sha256": "f1f949548e51f50389599a5524ed034ddc81341d88636a46fb6cf07bb8c5925e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6791c89029aed2496173e5a581d43ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 16632,
            "upload_time": "2024-10-10T04:14:18",
            "upload_time_iso_8601": "2024-10-10T04:14:18.552740Z",
            "url": "https://files.pythonhosted.org/packages/e4/34/d3ae785a54dafc0fca181caf242cbfc9cce044285f1d6b76c4ec73e74526/bsdiff4-1.2.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3518d21cc56467262fda88efb60e843e2f19bd0da78142093585d1608579427",
                "md5": "d6379704cf41c25a61e2df8ac2484cef",
                "sha256": "a736a2e6336f33a25082032856ed1d137fadf352f239643f3d8bedf4feed4a1d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6379704cf41c25a61e2df8ac2484cef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33758,
            "upload_time": "2024-10-10T04:14:19",
            "upload_time_iso_8601": "2024-10-10T04:14:19.365724Z",
            "url": "https://files.pythonhosted.org/packages/e3/51/8d21cc56467262fda88efb60e843e2f19bd0da78142093585d1608579427/bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a414722e55a0ed0e80f9cf168200ec8379ee9b17b8ca1a02aa9be271f39d73e7",
                "md5": "f639fa32f7325c11133352b28b31dec7",
                "sha256": "b9fbfff88ab502f3d46db72aef3e35e1c76d8e98672eef2235c16d7e0d181018"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f639fa32f7325c11133352b28b31dec7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35705,
            "upload_time": "2024-10-10T04:14:20",
            "upload_time_iso_8601": "2024-10-10T04:14:20.205636Z",
            "url": "https://files.pythonhosted.org/packages/a4/14/722e55a0ed0e80f9cf168200ec8379ee9b17b8ca1a02aa9be271f39d73e7/bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6602573773cc3cd69c62b7dc6f3242826ae58a68ae6c0f4085daf95154a43fed",
                "md5": "f9cad5c2a0a8d90debcea8a4bd44e330",
                "sha256": "184849027da80f59fcb26b3751c8aaf296c4262d5b4777d3e2e24781f60179a3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f9cad5c2a0a8d90debcea8a4bd44e330",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33804,
            "upload_time": "2024-10-10T04:14:22",
            "upload_time_iso_8601": "2024-10-10T04:14:22.242473Z",
            "url": "https://files.pythonhosted.org/packages/66/02/573773cc3cd69c62b7dc6f3242826ae58a68ae6c0f4085daf95154a43fed/bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65ef66ad7c365bc95c6b84561db8a2d77744f89e566e149f3919eb8603e2a454",
                "md5": "7179b247153f646eb99c535dab80aa65",
                "sha256": "ba0bb9942b48be05917bce5e8f317569528155b71d20a1b65997155b23c99184"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7179b247153f646eb99c535dab80aa65",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33248,
            "upload_time": "2024-10-10T04:14:23",
            "upload_time_iso_8601": "2024-10-10T04:14:23.067097Z",
            "url": "https://files.pythonhosted.org/packages/65/ef/66ad7c365bc95c6b84561db8a2d77744f89e566e149f3919eb8603e2a454/bsdiff4-1.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb9287c75b136529d9ae01941b61cf9ce4affa109e1b806d0e9f37c2f6169aab",
                "md5": "42fd64747a04a9a851afd69438735d9b",
                "sha256": "c437276656b5e59f09e9059121a442bf68f091556873ae361f3ba1a33f5f052d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "42fd64747a04a9a851afd69438735d9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35918,
            "upload_time": "2024-10-10T04:14:23",
            "upload_time_iso_8601": "2024-10-10T04:14:23.977084Z",
            "url": "https://files.pythonhosted.org/packages/eb/92/87c75b136529d9ae01941b61cf9ce4affa109e1b806d0e9f37c2f6169aab/bsdiff4-1.2.5-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": "2d459bd07d703a76bbf69a637f588079d7d111aca0f14d56317e0d219894f708",
                "md5": "62f3dd7e9f4b82bd80491c7817fbba09",
                "sha256": "517bac79163c633b8a2408412f7505b3b7484f492c1f0c40b175d0f1b8760d0c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62f3dd7e9f4b82bd80491c7817fbba09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 33772,
            "upload_time": "2024-10-10T04:14:24",
            "upload_time_iso_8601": "2024-10-10T04:14:24.781835Z",
            "url": "https://files.pythonhosted.org/packages/2d/45/9bd07d703a76bbf69a637f588079d7d111aca0f14d56317e0d219894f708/bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "939ca4dbf618bb7cc66655a2cea9e54dcf743d60f98e79e5716f6fbc474100e1",
                "md5": "98a90beb2128e063de500ca644ecf250",
                "sha256": "6cb13d2cf148bc2074fc01047608fcca4057c96df285ffc3b6bfe1c3c147c932"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "98a90beb2128e063de500ca644ecf250",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 37357,
            "upload_time": "2024-10-10T04:14:29",
            "upload_time_iso_8601": "2024-10-10T04:14:29.644960Z",
            "url": "https://files.pythonhosted.org/packages/93/9c/a4dbf618bb7cc66655a2cea9e54dcf743d60f98e79e5716f6fbc474100e1/bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b07fbffd3f7d1cb0cda69dca5063c8cad284609edf1e2149c09c1485ae97a31e",
                "md5": "41bfbaade9302a1c27962bdf632cf6a5",
                "sha256": "4f9f8d5d95a10eb2dd914075e219260085601f2d8584b788b759997124b758e5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "41bfbaade9302a1c27962bdf632cf6a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35831,
            "upload_time": "2024-10-10T04:14:30",
            "upload_time_iso_8601": "2024-10-10T04:14:30.617097Z",
            "url": "https://files.pythonhosted.org/packages/b0/7f/bffd3f7d1cb0cda69dca5063c8cad284609edf1e2149c09c1485ae97a31e/bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "649989459ef9c8b2628d473866c60545291a488b4726e9e3764cea45f7a4443f",
                "md5": "b2b45dd17dd8556e366efbae0c7517e6",
                "sha256": "bd4e7e02774175a3306f03d67ad0882816ef35ed0c8cb40e657cc974c0409f2b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "b2b45dd17dd8556e366efbae0c7517e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 35448,
            "upload_time": "2024-10-10T04:14:31",
            "upload_time_iso_8601": "2024-10-10T04:14:31.438341Z",
            "url": "https://files.pythonhosted.org/packages/64/99/89459ef9c8b2628d473866c60545291a488b4726e9e3764cea45f7a4443f/bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "604d8d52bae964829673363fe604b50f91575fc493055cc6d8c774a1951339d3",
                "md5": "da203c9c114e3faa032140fd1cc65021",
                "sha256": "6e05bbba2d6a442b1af106b23fd46f48e4238d935579cfc1095bc0740d75396f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da203c9c114e3faa032140fd1cc65021",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 32959,
            "upload_time": "2024-10-10T04:14:32",
            "upload_time_iso_8601": "2024-10-10T04:14:32.291566Z",
            "url": "https://files.pythonhosted.org/packages/60/4d/8d52bae964829673363fe604b50f91575fc493055cc6d8c774a1951339d3/bsdiff4-1.2.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "584e0c9f97223e92ca25da9e55b64c29870be06391a45ed26cde452f237dea51",
                "md5": "10fddd6b5429ec968de189c52129d7c8",
                "sha256": "90cee803fad4d0672dff2af558a5ed7ca30858462bcf03f617be455e9517d7e1"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "10fddd6b5429ec968de189c52129d7c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 17836,
            "upload_time": "2024-10-10T04:14:33",
            "upload_time_iso_8601": "2024-10-10T04:14:33.147611Z",
            "url": "https://files.pythonhosted.org/packages/58/4e/0c9f97223e92ca25da9e55b64c29870be06391a45ed26cde452f237dea51/bsdiff4-1.2.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c93deb365af18ef8c593b84204b0c89c184e71e5fb79c17a80dc2a573559fbd",
                "md5": "d08beeea557cb079b104af9afd966268",
                "sha256": "558017a5edf90760f77a3f662e38cbf220cce51971c49269ca4335e4fd7a33d1"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d08beeea557cb079b104af9afd966268",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 18972,
            "upload_time": "2024-10-10T04:14:34",
            "upload_time_iso_8601": "2024-10-10T04:14:34.017198Z",
            "url": "https://files.pythonhosted.org/packages/6c/93/deb365af18ef8c593b84204b0c89c184e71e5fb79c17a80dc2a573559fbd/bsdiff4-1.2.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dded6baddf240a4087ee27d751b80638b44c3dff0198092896fa5ae23fd588a1",
                "md5": "e527bd94cbf23c5edec64fc94bfc3020",
                "sha256": "39d04bc5a4c069d4ac2bd036843e2e4f81390ee7ec41699b5e54ccf01142c607"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "e527bd94cbf23c5edec64fc94bfc3020",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 23394,
            "upload_time": "2024-10-10T04:14:35",
            "upload_time_iso_8601": "2024-10-10T04:14:35.645450Z",
            "url": "https://files.pythonhosted.org/packages/dd/ed/6baddf240a4087ee27d751b80638b44c3dff0198092896fa5ae23fd588a1/bsdiff4-1.2.5-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83a0458d07d82e02ed6ddda4386e83a57a0166e99a9ac9cb0d6b2a7344e26f97",
                "md5": "939ccaad4934fcef590ae2d61d7280c5",
                "sha256": "7d56d0e120270ca6c346b8f1f89f7d7b5d3fad4b150992d56309577426b42e5f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "939ccaad4934fcef590ae2d61d7280c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16601,
            "upload_time": "2024-10-10T04:14:36",
            "upload_time_iso_8601": "2024-10-10T04:14:36.511245Z",
            "url": "https://files.pythonhosted.org/packages/83/a0/458d07d82e02ed6ddda4386e83a57a0166e99a9ac9cb0d6b2a7344e26f97/bsdiff4-1.2.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0f2f229d1383c12b62d7c132700ebade7ee8e0bb1b873ea25a6dbf9bbccb708",
                "md5": "19bfeea0534e5f2f9fcb6351f4b044ec",
                "sha256": "4044c41dc1b0097e54aac5768c46491136d92cb9eb14c3c000d890339598b734"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "19bfeea0534e5f2f9fcb6351f4b044ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 16631,
            "upload_time": "2024-10-10T04:14:37",
            "upload_time_iso_8601": "2024-10-10T04:14:37.829047Z",
            "url": "https://files.pythonhosted.org/packages/d0/f2/f229d1383c12b62d7c132700ebade7ee8e0bb1b873ea25a6dbf9bbccb708/bsdiff4-1.2.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d5880dbbb7ec94e541f8f53ec30e4c45ae485b6d29f94004bb03ba71a5eaff4",
                "md5": "d759b14635206ced4f59623f7e321812",
                "sha256": "51ca7ae15d2d8fe1b3e49673dd6cfdb2c6c7bbdb4b260b4eb17177dabd4fbb68"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d759b14635206ced4f59623f7e321812",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33628,
            "upload_time": "2024-10-10T04:14:38",
            "upload_time_iso_8601": "2024-10-10T04:14:38.640111Z",
            "url": "https://files.pythonhosted.org/packages/7d/58/80dbbb7ec94e541f8f53ec30e4c45ae485b6d29f94004bb03ba71a5eaff4/bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c34e20aff8a4bdcfeb8d34ff3d31ca22762e92e061930da334d406eba05541c",
                "md5": "ee4d1ccf2057f7d443c020dab60c595a",
                "sha256": "553dea742d3310f9b12d0c1fd015405a10984a68b0f673cd034644e3b0c1e61e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ee4d1ccf2057f7d443c020dab60c595a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35607,
            "upload_time": "2024-10-10T04:14:39",
            "upload_time_iso_8601": "2024-10-10T04:14:39.508640Z",
            "url": "https://files.pythonhosted.org/packages/9c/34/e20aff8a4bdcfeb8d34ff3d31ca22762e92e061930da334d406eba05541c/bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "574143faa4fe26f8916db71420b31fe2edec044069cad89ce911480ef89e3fca",
                "md5": "6ab849c8d40974ff4be7db77f7cbe786",
                "sha256": "c0a5b3839513fd5099e8b231e5851ec39940378791961c323c92b1b34c82ae79"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6ab849c8d40974ff4be7db77f7cbe786",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33729,
            "upload_time": "2024-10-10T04:14:40",
            "upload_time_iso_8601": "2024-10-10T04:14:40.347752Z",
            "url": "https://files.pythonhosted.org/packages/57/41/43faa4fe26f8916db71420b31fe2edec044069cad89ce911480ef89e3fca/bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57f63c8678505d4b9b2b4827bc2854d574bd29839e316e644dec4e4597f4b309",
                "md5": "82a927d389fd84edd1fcbd5347c9df18",
                "sha256": "db3d926508b6aad3d79a7c35e90c6c7b8ee38cecba659c15a970f03ebe9ee04f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82a927d389fd84edd1fcbd5347c9df18",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33196,
            "upload_time": "2024-10-10T04:14:41",
            "upload_time_iso_8601": "2024-10-10T04:14:41.215131Z",
            "url": "https://files.pythonhosted.org/packages/57/f6/3c8678505d4b9b2b4827bc2854d574bd29839e316e644dec4e4597f4b309/bsdiff4-1.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11d4ee038abb8659d168e61972f8054f56aae4211d981cd08ccacca9cac55286",
                "md5": "d991402034ca09f10d9eabcc087dea03",
                "sha256": "ea49b033ce6e863d668fe7a73c6525ce6d1526a412321e5c6a886280211d395c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d991402034ca09f10d9eabcc087dea03",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35851,
            "upload_time": "2024-10-10T04:14:42",
            "upload_time_iso_8601": "2024-10-10T04:14:42.092593Z",
            "url": "https://files.pythonhosted.org/packages/11/d4/ee038abb8659d168e61972f8054f56aae4211d981cd08ccacca9cac55286/bsdiff4-1.2.5-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": "20a48e250d74c00311b636ef3514a41d0bf9d0456bb4bcc0f076dc6007fa328f",
                "md5": "8a040ee74a76bd07975d49729f78e8fd",
                "sha256": "dab9ca726686358c7cab958a04834b3f9e27e92461fa03adf1db79472d403767"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a040ee74a76bd07975d49729f78e8fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 33588,
            "upload_time": "2024-10-10T04:14:43",
            "upload_time_iso_8601": "2024-10-10T04:14:43.425191Z",
            "url": "https://files.pythonhosted.org/packages/20/a4/8e250d74c00311b636ef3514a41d0bf9d0456bb4bcc0f076dc6007fa328f/bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6657bea1dfe3ee619ceaaf5ea84075b544b4342db73be33be6aa620df800679",
                "md5": "d980e8e17a3220efc55787f221faef4e",
                "sha256": "d159dcf662eddd80e31e9cae08ff3720e320705f220b7918ee47d120664f1413"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d980e8e17a3220efc55787f221faef4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 37190,
            "upload_time": "2024-10-10T04:14:45",
            "upload_time_iso_8601": "2024-10-10T04:14:45.255619Z",
            "url": "https://files.pythonhosted.org/packages/d6/65/7bea1dfe3ee619ceaaf5ea84075b544b4342db73be33be6aa620df800679/bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e10a0e7d2145d1d110b767d559843ebf36df838cd9c700aced3927b3da58c641",
                "md5": "1c62541e264117ce54a4a3a44f51e7b2",
                "sha256": "7ada17d3add30997db8c54a9ccb7ab6fe04a08f50701374e74d0cc4114b3d2d5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1c62541e264117ce54a4a3a44f51e7b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35759,
            "upload_time": "2024-10-10T04:14:46",
            "upload_time_iso_8601": "2024-10-10T04:14:46.706837Z",
            "url": "https://files.pythonhosted.org/packages/e1/0a/0e7d2145d1d110b767d559843ebf36df838cd9c700aced3927b3da58c641/bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9710ff43a2291708edb2b5b5dcd194992c6f5966f721fde4a6ca339314a6e264",
                "md5": "db88beff0482a7fae29392d9b2a9b8bf",
                "sha256": "d1f306fcbeb34a653a8d4523e21c2334c383e78a6b1ef41def3f4ee69ea38b87"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "db88beff0482a7fae29392d9b2a9b8bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 35354,
            "upload_time": "2024-10-10T04:14:47",
            "upload_time_iso_8601": "2024-10-10T04:14:47.566075Z",
            "url": "https://files.pythonhosted.org/packages/97/10/ff43a2291708edb2b5b5dcd194992c6f5966f721fde4a6ca339314a6e264/bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ed18b5bd563fef552e40561f89f77cfd5dabd623500d0d801aebd641d54db81",
                "md5": "a7b51537c11e457efcc37ad7d6e38665",
                "sha256": "23ec1eb3a03f14590c08a63155270603b1c0e29232dd56477b35c0849da48729"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7b51537c11e457efcc37ad7d6e38665",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 32809,
            "upload_time": "2024-10-10T04:14:48",
            "upload_time_iso_8601": "2024-10-10T04:14:48.405714Z",
            "url": "https://files.pythonhosted.org/packages/7e/d1/8b5bd563fef552e40561f89f77cfd5dabd623500d0d801aebd641d54db81/bsdiff4-1.2.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e52c81786a602b12b4b442c3a4ab21a0c17ab6c8d9b76faa74c914a332e0752f",
                "md5": "a1da76662d045533d9211c58d0f2caf4",
                "sha256": "fb3c53590c6d9f4d7a25d54d8faadffc61c1e936d6e8e78fe7c166c6380ae990"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "a1da76662d045533d9211c58d0f2caf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 17862,
            "upload_time": "2024-10-10T04:14:49",
            "upload_time_iso_8601": "2024-10-10T04:14:49.271673Z",
            "url": "https://files.pythonhosted.org/packages/e5/2c/81786a602b12b4b442c3a4ab21a0c17ab6c8d9b76faa74c914a332e0752f/bsdiff4-1.2.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "069534b5c33b81f4e448eaf390b76179dd14eaace01279d464cdff67d92eb532",
                "md5": "6028a8dc14630ab482df9ca008b0b8c6",
                "sha256": "09b71891e6dcc69bd01bad8c0a9efa00892f7c2ed30691ca446516720fca627e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6028a8dc14630ab482df9ca008b0b8c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 18996,
            "upload_time": "2024-10-10T04:14:50",
            "upload_time_iso_8601": "2024-10-10T04:14:50.098725Z",
            "url": "https://files.pythonhosted.org/packages/06/95/34b5c33b81f4e448eaf390b76179dd14eaace01279d464cdff67d92eb532/bsdiff4-1.2.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cd975cfc4eb6d0aeef4d5bb1bab7e77c4ece314e5a17afd3d0ed50f223020a4",
                "md5": "9b0e8dc153c020826ea580d6c993563e",
                "sha256": "5329c8464541bad8763d470d5a2299f8861a73b98ef24cd9d91cfcf57f27d07c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "9b0e8dc153c020826ea580d6c993563e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 23403,
            "upload_time": "2024-10-10T04:14:50",
            "upload_time_iso_8601": "2024-10-10T04:14:50.922386Z",
            "url": "https://files.pythonhosted.org/packages/8c/d9/75cfc4eb6d0aeef4d5bb1bab7e77c4ece314e5a17afd3d0ed50f223020a4/bsdiff4-1.2.5-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73551af294c1d66bf71a5be24a711db26ebb5b18685e020c7a730b5579929c14",
                "md5": "1504503d1f4523cf877afaf81f44f93b",
                "sha256": "b3042e621ffa51a513f3caae9b4747c7310b9ceab2b63984817b4572901e7052"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1504503d1f4523cf877afaf81f44f93b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 16592,
            "upload_time": "2024-10-10T04:14:51",
            "upload_time_iso_8601": "2024-10-10T04:14:51.754045Z",
            "url": "https://files.pythonhosted.org/packages/73/55/1af294c1d66bf71a5be24a711db26ebb5b18685e020c7a730b5579929c14/bsdiff4-1.2.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a08f6f0f729c8473766d0c0f82b1b026928caf961eecce91431b6a6bde86be61",
                "md5": "b67afe06dd6f0a68c9a20f01db9615f7",
                "sha256": "74f77430c429165819cbdf784c129d98c02e2afbfb75d71967d11f24db2975fd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b67afe06dd6f0a68c9a20f01db9615f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 16639,
            "upload_time": "2024-10-10T04:14:52",
            "upload_time_iso_8601": "2024-10-10T04:14:52.707762Z",
            "url": "https://files.pythonhosted.org/packages/a0/8f/6f0f729c8473766d0c0f82b1b026928caf961eecce91431b6a6bde86be61/bsdiff4-1.2.5-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ec346764448ced1dab54ed31062d76748614803685185b72a4f92c4737152c6",
                "md5": "1a319b9a447a1ade4abab23c0fd57ef9",
                "sha256": "486fb51f07db3fd859e84e10ff1c06eb9e28e7a55c32775bde629d3380d13d2c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a319b9a447a1ade4abab23c0fd57ef9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 33619,
            "upload_time": "2024-10-10T04:14:53",
            "upload_time_iso_8601": "2024-10-10T04:14:53.568549Z",
            "url": "https://files.pythonhosted.org/packages/5e/c3/46764448ced1dab54ed31062d76748614803685185b72a4f92c4737152c6/bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c4d86bedac3f89055c8ca9ba2810e69113bf01f7a9664cac6eb4ae466fa69a6",
                "md5": "ebcceb8917f6b7f27384b117ebcef4dd",
                "sha256": "cc70a0177065c9e36694abca5900f0d609ed370809f14ecf8656395a296b34b6"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ebcceb8917f6b7f27384b117ebcef4dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 35606,
            "upload_time": "2024-10-10T04:14:54",
            "upload_time_iso_8601": "2024-10-10T04:14:54.485144Z",
            "url": "https://files.pythonhosted.org/packages/8c/4d/86bedac3f89055c8ca9ba2810e69113bf01f7a9664cac6eb4ae466fa69a6/bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc6c2812c757c407b636c769514f9dcb2ec2b2c00aee7c244b4f057f4b3cb409",
                "md5": "fd59af1c3bca128f947c617da4f511ea",
                "sha256": "57f93cf9809de800f1be2960613c1ca30005700a4bdf23fdc5c96e37c28fb0dd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fd59af1c3bca128f947c617da4f511ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 33748,
            "upload_time": "2024-10-10T04:14:55",
            "upload_time_iso_8601": "2024-10-10T04:14:55.345362Z",
            "url": "https://files.pythonhosted.org/packages/dc/6c/2812c757c407b636c769514f9dcb2ec2b2c00aee7c244b4f057f4b3cb409/bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "755f4e67e05d4c29483328387b7c074e600df54fa11b1f7ea1074a398d1b1593",
                "md5": "6b86a8ad77476a002fcce9f0523624c3",
                "sha256": "33431aa6649af3dfd230338073d9a0c72983bde94aade6b7eb7bfe431d86afa4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b86a8ad77476a002fcce9f0523624c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 33195,
            "upload_time": "2024-10-10T04:14:56",
            "upload_time_iso_8601": "2024-10-10T04:14:56.916246Z",
            "url": "https://files.pythonhosted.org/packages/75/5f/4e67e05d4c29483328387b7c074e600df54fa11b1f7ea1074a398d1b1593/bsdiff4-1.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe420943480296bc57b2af2385fbf56c955e8ee2477d24fdd683ff6fa48cba55",
                "md5": "616b3ab87b00f9ad7766e7705c26a696",
                "sha256": "6893743ef5fe4fddd084f95c7e2ad6b92c0ca8a9bd0fa8e708c6d51b741e0d8e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "616b3ab87b00f9ad7766e7705c26a696",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 35826,
            "upload_time": "2024-10-10T04:14:57",
            "upload_time_iso_8601": "2024-10-10T04:14:57.824094Z",
            "url": "https://files.pythonhosted.org/packages/fe/42/0943480296bc57b2af2385fbf56c955e8ee2477d24fdd683ff6fa48cba55/bsdiff4-1.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f9ece246fe3f68f00a694792766ccfe115c5b4e73280a3b1e7f85437c3981f6",
                "md5": "41954dbc3dcf89ca776590e01547ba15",
                "sha256": "db48ac3f3c68c36dd6d5f66aa107029620a4fc2e0388f9daf7eed3920954ecbf"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41954dbc3dcf89ca776590e01547ba15",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 33670,
            "upload_time": "2024-10-10T04:14:59",
            "upload_time_iso_8601": "2024-10-10T04:14:59.381781Z",
            "url": "https://files.pythonhosted.org/packages/9f/9e/ce246fe3f68f00a694792766ccfe115c5b4e73280a3b1e7f85437c3981f6/bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16df21781ae8aa18c950141391efded6877ef299ac3d71244aa0d34b2a346b6e",
                "md5": "2b7ce4dfffc7e7707dd51fbfe6117627",
                "sha256": "a27d37b0dd82ea6abdbd02e6f03ebbe359670a8c5e3832d9c3e6b88080f072b7"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2b7ce4dfffc7e7707dd51fbfe6117627",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 37250,
            "upload_time": "2024-10-10T04:15:01",
            "upload_time_iso_8601": "2024-10-10T04:15:01.058951Z",
            "url": "https://files.pythonhosted.org/packages/16/df/21781ae8aa18c950141391efded6877ef299ac3d71244aa0d34b2a346b6e/bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59e7c7d5aaf2f864400f3253ba41d673aa538a95da00940dc4ce344816e6ade5",
                "md5": "f04bf20d10ae22917b63cecfcc964afa",
                "sha256": "d143f8c0ba3b5cd9d194615a9181ee2da277bc83233d5dc3c03d0229169dca69"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f04bf20d10ae22917b63cecfcc964afa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 35846,
            "upload_time": "2024-10-10T04:15:02",
            "upload_time_iso_8601": "2024-10-10T04:15:02.082639Z",
            "url": "https://files.pythonhosted.org/packages/59/e7/c7d5aaf2f864400f3253ba41d673aa538a95da00940dc4ce344816e6ade5/bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "818bd296150ab3e4745ce37a7f99b13551d6329ea31ab937d3913272f324d1a2",
                "md5": "8acf62c214b317998c657d375d8123c8",
                "sha256": "ff3006428be553bb897001b88921439a8b6da138c59be789b1278c54ad3629db"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "8acf62c214b317998c657d375d8123c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 35409,
            "upload_time": "2024-10-10T04:15:02",
            "upload_time_iso_8601": "2024-10-10T04:15:02.995136Z",
            "url": "https://files.pythonhosted.org/packages/81/8b/d296150ab3e4745ce37a7f99b13551d6329ea31ab937d3913272f324d1a2/bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf5331afc9a4b723f28653c83d9c27dfc8044c864f9f0e761c85abbd2e818675",
                "md5": "ddf0d2546bdd737c9d2467970c355be2",
                "sha256": "2e4dcbac1305261fa0e11223d4d7c7798a6e59f08957018a210ed5843dec159b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddf0d2546bdd737c9d2467970c355be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 32900,
            "upload_time": "2024-10-10T04:15:03",
            "upload_time_iso_8601": "2024-10-10T04:15:03.884368Z",
            "url": "https://files.pythonhosted.org/packages/cf/53/31afc9a4b723f28653c83d9c27dfc8044c864f9f0e761c85abbd2e818675/bsdiff4-1.2.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc50f65e472d90d63109be0cc29db78b3acef5a603da62f85cd4c93d6318673b",
                "md5": "54020a001e95cc25a8f091443569de84",
                "sha256": "9bbecd8d81b922346dd2d40600f093b19d22ad2b3e917d806175f642662dc092"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "54020a001e95cc25a8f091443569de84",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 17858,
            "upload_time": "2024-10-10T04:15:04",
            "upload_time_iso_8601": "2024-10-10T04:15:04.754747Z",
            "url": "https://files.pythonhosted.org/packages/dc/50/f65e472d90d63109be0cc29db78b3acef5a603da62f85cd4c93d6318673b/bsdiff4-1.2.5-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be44577794e9ce712bcd99f86963cea9e808143e01eb08cc22a6c00a3f6a5b5a",
                "md5": "01da92b4aebbf56ae89cb6be24fb9419",
                "sha256": "356be3b347e30d55d794cc69ff230de0ae57bb4c331010e48065cf93b42cfd88"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "01da92b4aebbf56ae89cb6be24fb9419",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 18983,
            "upload_time": "2024-10-10T04:15:05",
            "upload_time_iso_8601": "2024-10-10T04:15:05.659975Z",
            "url": "https://files.pythonhosted.org/packages/be/44/577794e9ce712bcd99f86963cea9e808143e01eb08cc22a6c00a3f6a5b5a/bsdiff4-1.2.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37fefe6f8fe57ef8455cabf379ebc5ffafeb2bf17893269a06af120c2a90b635",
                "md5": "e3ad5c58fe15187659f4c793bd2e177d",
                "sha256": "80597dc68692e0f9f71fd5387082c79ec8207fe1a447f8a6cd63ceff9db1c0c3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3ad5c58fe15187659f4c793bd2e177d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 16320,
            "upload_time": "2024-10-10T04:15:06",
            "upload_time_iso_8601": "2024-10-10T04:15:06.663738Z",
            "url": "https://files.pythonhosted.org/packages/37/fe/fe6f8fe57ef8455cabf379ebc5ffafeb2bf17893269a06af120c2a90b635/bsdiff4-1.2.5-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "598993be6699d3bd672eb00db89e4b000b5c34d34c473f1341b558337e631d42",
                "md5": "9df0a19f391c4b0c7838c1a393070c78",
                "sha256": "d672523f0aa016b86d9e358e21b75addcaf7496d7affb9bfb273e09979c9b330"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9df0a19f391c4b0c7838c1a393070c78",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 31930,
            "upload_time": "2024-10-10T04:15:07",
            "upload_time_iso_8601": "2024-10-10T04:15:07.525835Z",
            "url": "https://files.pythonhosted.org/packages/59/89/93be6699d3bd672eb00db89e4b000b5c34d34c473f1341b558337e631d42/bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca5626cd0b8363faedc2be4760ba7626f89a8022fdefec4a79218cd24572c966",
                "md5": "2cccb7e63fc3fc223a81d6ba66fc8ea2",
                "sha256": "7c592b81a0c000ebb719ad4ad21e9d89d3790006683569e6bbebd00087aeccb5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2cccb7e63fc3fc223a81d6ba66fc8ea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 33890,
            "upload_time": "2024-10-10T04:15:08",
            "upload_time_iso_8601": "2024-10-10T04:15:08.480195Z",
            "url": "https://files.pythonhosted.org/packages/ca/56/26cd0b8363faedc2be4760ba7626f89a8022fdefec4a79218cd24572c966/bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdf412a90dc02f7c0d410de15d817d286b101382cd64a5d35105a454d4e0e55b",
                "md5": "372c2365b4484e8ac770db7f05a70318",
                "sha256": "5da1e7683cacd9603cf2459f01b484ba851f0bf5759dd9624c57bbb1f556e7ed"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "372c2365b4484e8ac770db7f05a70318",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 31934,
            "upload_time": "2024-10-10T04:15:09",
            "upload_time_iso_8601": "2024-10-10T04:15:09.478095Z",
            "url": "https://files.pythonhosted.org/packages/fd/f4/12a90dc02f7c0d410de15d817d286b101382cd64a5d35105a454d4e0e55b/bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d9c45fcd30afb0addd04afcbfc80d9c95c43d391351fbe64ab507df9897c04d",
                "md5": "6400d0c6919b10322e6f2fa3ff1a50e9",
                "sha256": "2d4fd4bc45b5ab66fc0a919f1bd85124a2d1fa0c0950bd642fffeb4267e478b9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6400d0c6919b10322e6f2fa3ff1a50e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 31341,
            "upload_time": "2024-10-10T04:15:10",
            "upload_time_iso_8601": "2024-10-10T04:15:10.351268Z",
            "url": "https://files.pythonhosted.org/packages/6d/9c/45fcd30afb0addd04afcbfc80d9c95c43d391351fbe64ab507df9897c04d/bsdiff4-1.2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09755c8def8d52d19d54e71c0a096a82741821e93ace5aea0b607d4ffdee8643",
                "md5": "69fe66993e1f5c8f59e8e94df19d3f96",
                "sha256": "09647015871b3b1b5ea8936002339433dcd3c2f0c42cca14e8aef0d0caaedd51"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69fe66993e1f5c8f59e8e94df19d3f96",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34136,
            "upload_time": "2024-10-10T04:15:11",
            "upload_time_iso_8601": "2024-10-10T04:15:11.420071Z",
            "url": "https://files.pythonhosted.org/packages/09/75/5c8def8d52d19d54e71c0a096a82741821e93ace5aea0b607d4ffdee8643/bsdiff4-1.2.5-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": "52c9bcdcc5619c3a7c08f8a23b91efd92d4a89c2312376dfb5473e6db2139b2b",
                "md5": "781337d9a2d3f742ca88308f40dae59c",
                "sha256": "9f318cabc68a601a6325aaccd883b3878041680cf360134f24ecf84eab88d495"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "781337d9a2d3f742ca88308f40dae59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 31473,
            "upload_time": "2024-10-10T04:15:12",
            "upload_time_iso_8601": "2024-10-10T04:15:12.321337Z",
            "url": "https://files.pythonhosted.org/packages/52/c9/bcdcc5619c3a7c08f8a23b91efd92d4a89c2312376dfb5473e6db2139b2b/bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b66344e905bba0af4a00bc8f5db5e5ebe1232227f9518f058393859212c6a27",
                "md5": "7849dc31c5bd43220e770d79ac728dd9",
                "sha256": "259af1e39fa3451defed97d5947bf585ea7d1ccc2399be466b8cb7f0cec6ca43"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7849dc31c5bd43220e770d79ac728dd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 35110,
            "upload_time": "2024-10-10T04:15:13",
            "upload_time_iso_8601": "2024-10-10T04:15:13.428836Z",
            "url": "https://files.pythonhosted.org/packages/7b/66/344e905bba0af4a00bc8f5db5e5ebe1232227f9518f058393859212c6a27/bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10b299dc0f3cd557abfcedeb9040afbef659f7ccd7f12dad5d23d2cd963acc5a",
                "md5": "79f0b72ceba8acb1ff7637490daf2889",
                "sha256": "bf22cd199652a5c32bec7830fd7d9cef5c79d204efefe867074da14d4d9c128c"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "79f0b72ceba8acb1ff7637490daf2889",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 33426,
            "upload_time": "2024-10-10T04:15:15",
            "upload_time_iso_8601": "2024-10-10T04:15:15.022043Z",
            "url": "https://files.pythonhosted.org/packages/10/b2/99dc0f3cd557abfcedeb9040afbef659f7ccd7f12dad5d23d2cd963acc5a/bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce2a6b91490958935350d0ead4c92f131f05702d78b3d2f3ab945d3b8f2d4ebf",
                "md5": "2a02ec4957dc85f7e150983a46bfe8b9",
                "sha256": "e3b4faec43a8f91e7858dfe476ea564c54876f76146fdb8534d23fcae9bda9a5"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "2a02ec4957dc85f7e150983a46bfe8b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 33101,
            "upload_time": "2024-10-10T04:15:15",
            "upload_time_iso_8601": "2024-10-10T04:15:15.997726Z",
            "url": "https://files.pythonhosted.org/packages/ce/2a/6b91490958935350d0ead4c92f131f05702d78b3d2f3ab945d3b8f2d4ebf/bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14ba475a5fd4144b9a8c82983af9203afcb8fbb84fda8c2efd19008cf651c18c",
                "md5": "8fb71e22017c4cdce8bc8a23a2886407",
                "sha256": "534cf1f221e41b9c6a2721ab2d25f419aac056ec5225bc403d01aebae202be92"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fb71e22017c4cdce8bc8a23a2886407",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 30602,
            "upload_time": "2024-10-10T04:15:16",
            "upload_time_iso_8601": "2024-10-10T04:15:16.895316Z",
            "url": "https://files.pythonhosted.org/packages/14/ba/475a5fd4144b9a8c82983af9203afcb8fbb84fda8c2efd19008cf651c18c/bsdiff4-1.2.5-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8282149c4e12f4080d8c5830c942e459c654e3488730280edfb92db0f3dadc6e",
                "md5": "5bcacac4485143add45f819864ed75fc",
                "sha256": "4690a1c355b92ae1a2aabc7ecb20a669295266ec4bc923be62ea35475bf2abd2"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "5bcacac4485143add45f819864ed75fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 17820,
            "upload_time": "2024-10-10T04:15:17",
            "upload_time_iso_8601": "2024-10-10T04:15:17.833579Z",
            "url": "https://files.pythonhosted.org/packages/82/82/149c4e12f4080d8c5830c942e459c654e3488730280edfb92db0f3dadc6e/bsdiff4-1.2.5-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a7bee4f6d32a0a23c9ea77da5e38e5bf5ab3365ff3ace935b25c2eab69c9a52",
                "md5": "02fb2a4746e4b8e8fe7b7fa59de3b394",
                "sha256": "a52e16412af2866347befb9975a72caee1dd09b8396004988f6251d27ff57af0"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "02fb2a4746e4b8e8fe7b7fa59de3b394",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 19058,
            "upload_time": "2024-10-10T04:15:18",
            "upload_time_iso_8601": "2024-10-10T04:15:18.782292Z",
            "url": "https://files.pythonhosted.org/packages/7a/7b/ee4f6d32a0a23c9ea77da5e38e5bf5ab3365ff3ace935b25c2eab69c9a52/bsdiff4-1.2.5-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cb047f85e6364e1effab65dd40c09f9588af4bdb3a78166c246a7ce76a5e716",
                "md5": "ff9236ea1c2d3efeca4a97dc077a4a6a",
                "sha256": "8ce4ea2ccd4ed175cfb6019bd37ead0832880bbf2632d8cf771d83c7fb923a78"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff9236ea1c2d3efeca4a97dc077a4a6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 16537,
            "upload_time": "2024-10-10T04:15:19",
            "upload_time_iso_8601": "2024-10-10T04:15:19.649049Z",
            "url": "https://files.pythonhosted.org/packages/5c/b0/47f85e6364e1effab65dd40c09f9588af4bdb3a78166c246a7ce76a5e716/bsdiff4-1.2.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4902a8c2a578f381fad6f2fdf8edc47eedd70770205018b60e084f80ed904352",
                "md5": "09110ea6292ba51cefaae96773e1aa90",
                "sha256": "fbe6930c3723a52603ec6f6c94a695698afa233ac12d01ec03f3e5e615f56c16"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09110ea6292ba51cefaae96773e1aa90",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 32958,
            "upload_time": "2024-10-10T04:15:20",
            "upload_time_iso_8601": "2024-10-10T04:15:20.510452Z",
            "url": "https://files.pythonhosted.org/packages/49/02/a8c2a578f381fad6f2fdf8edc47eedd70770205018b60e084f80ed904352/bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be93aae83af868819e18514b5ce23b93bb8bfdf58c4e4599cb38bbd2350bbc18",
                "md5": "64c38ef3b96d0a01cca182ad9a6431b2",
                "sha256": "8812ad4503daeef57068b3a88e79ec8db9ba2dcd7b42926fdbb1c9342d5acdd8"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "64c38ef3b96d0a01cca182ad9a6431b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 34861,
            "upload_time": "2024-10-10T04:15:21",
            "upload_time_iso_8601": "2024-10-10T04:15:21.448344Z",
            "url": "https://files.pythonhosted.org/packages/be/93/aae83af868819e18514b5ce23b93bb8bfdf58c4e4599cb38bbd2350bbc18/bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77653969559450b83d3ec346e1a04b5e1978d707bb9c1161c1b107a33254b5d5",
                "md5": "e566538d5d60f9806e99ebc73a3e510b",
                "sha256": "82860f84b0b996b17a10568555789d1e9aa51501649fdba924e44b69a7a24dc6"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e566538d5d60f9806e99ebc73a3e510b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 32989,
            "upload_time": "2024-10-10T04:15:22",
            "upload_time_iso_8601": "2024-10-10T04:15:22.324712Z",
            "url": "https://files.pythonhosted.org/packages/77/65/3969559450b83d3ec346e1a04b5e1978d707bb9c1161c1b107a33254b5d5/bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b99258b853faaeff6ce1a23c2d26aaa87f3b151415e3080e09b240add5bb74bb",
                "md5": "f7048db71572e97f6f7ef9ad30869e73",
                "sha256": "3ef16be85bcdd8f32623bdda4db9a097a73f3d355b86224dcaf7a25c5b844e46"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7048db71572e97f6f7ef9ad30869e73",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 32386,
            "upload_time": "2024-10-10T04:15:23",
            "upload_time_iso_8601": "2024-10-10T04:15:23.339443Z",
            "url": "https://files.pythonhosted.org/packages/b9/92/58b853faaeff6ce1a23c2d26aaa87f3b151415e3080e09b240add5bb74bb/bsdiff4-1.2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9735ec1bc6c6ce39ef7e538e2ffe9efa470737eb1efa3b21d530be9e1e13cd14",
                "md5": "444f37ec3e8c5a3fdb3593a8561dbb87",
                "sha256": "4828714385b700c9ec79af6118eadc0db8a9342bf51d2975e44db9a7f6f9cc7a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "444f37ec3e8c5a3fdb3593a8561dbb87",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35097,
            "upload_time": "2024-10-10T04:15:24",
            "upload_time_iso_8601": "2024-10-10T04:15:24.256216Z",
            "url": "https://files.pythonhosted.org/packages/97/35/ec1bc6c6ce39ef7e538e2ffe9efa470737eb1efa3b21d530be9e1e13cd14/bsdiff4-1.2.5-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": "554407db918ea13e16431b71de443d7c2bd6308f7ef90156915800261fdce725",
                "md5": "84c6f6ab3b9f3ead0e259cccedb2b86b",
                "sha256": "9be545e0b6695ba7a56876adfaf90cd8c1c5aba85b8849ebb6d05431a17d395e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "84c6f6ab3b9f3ead0e259cccedb2b86b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 32478,
            "upload_time": "2024-10-10T04:15:25",
            "upload_time_iso_8601": "2024-10-10T04:15:25.203281Z",
            "url": "https://files.pythonhosted.org/packages/55/44/07db918ea13e16431b71de443d7c2bd6308f7ef90156915800261fdce725/bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "358bf5361207270d29c722a764d80cd36b326c426e3cbc2ba8b745658ecf5aa5",
                "md5": "5532cfa86fc423b12eb5e9b9d2cecf07",
                "sha256": "cd3729c576f991b0a98cd6a59e9821cd72abd10f882c5eaa4d0900fb832515f7"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5532cfa86fc423b12eb5e9b9d2cecf07",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 36049,
            "upload_time": "2024-10-10T04:15:26",
            "upload_time_iso_8601": "2024-10-10T04:15:26.158314Z",
            "url": "https://files.pythonhosted.org/packages/35/8b/f5361207270d29c722a764d80cd36b326c426e3cbc2ba8b745658ecf5aa5/bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4d5ede07d0d0e6ec1a209e8e75c7e3cb22ed5ec85bf3c91e271fb630a0ec38f",
                "md5": "3f0a851224ff21ff2775bcc1497b5887",
                "sha256": "5c6f37d57ce92428d3ccd2369ae4c4496bbc173d69e0a612eb1eb2f3c5ce251d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3f0a851224ff21ff2775bcc1497b5887",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 34435,
            "upload_time": "2024-10-10T04:15:27",
            "upload_time_iso_8601": "2024-10-10T04:15:27.080591Z",
            "url": "https://files.pythonhosted.org/packages/a4/d5/ede07d0d0e6ec1a209e8e75c7e3cb22ed5ec85bf3c91e271fb630a0ec38f/bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "749e744c424fae1ee478d9f27181069130f4c36bb741443bd711b147e309c6fa",
                "md5": "430727223eab304ad0a230ef55a49cdc",
                "sha256": "6a06892b13d8669b5b0786ea3c82644168a4161c5398e16136bbb639d5ff59e4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "430727223eab304ad0a230ef55a49cdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 34161,
            "upload_time": "2024-10-10T04:15:28",
            "upload_time_iso_8601": "2024-10-10T04:15:28.090453Z",
            "url": "https://files.pythonhosted.org/packages/74/9e/744c424fae1ee478d9f27181069130f4c36bb741443bd711b147e309c6fa/bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ceb8cb0f94c69bbf3a1ad243bde70199121faf3594ae233b0f7ff65fed1a4a13",
                "md5": "83381303c55a108abb17bab6a26db51e",
                "sha256": "23960e06ffbd85c5f23777f6c794112f03cb8c234a4ed7b65531d93837270fe2"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83381303c55a108abb17bab6a26db51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 31649,
            "upload_time": "2024-10-10T04:15:29",
            "upload_time_iso_8601": "2024-10-10T04:15:29.178642Z",
            "url": "https://files.pythonhosted.org/packages/ce/b8/cb0f94c69bbf3a1ad243bde70199121faf3594ae233b0f7ff65fed1a4a13/bsdiff4-1.2.5-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd2404f61859d0e97e400f216645bfa78d79392a79e2714eacc147b7446c223f",
                "md5": "86799cbb07979440b2b9cec8287f8a03",
                "sha256": "19d938a56a507e30b69187842091eca99311565f949445a1cafa95a91010ae36"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "86799cbb07979440b2b9cec8287f8a03",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 17783,
            "upload_time": "2024-10-10T04:15:30",
            "upload_time_iso_8601": "2024-10-10T04:15:30.135447Z",
            "url": "https://files.pythonhosted.org/packages/dd/24/04f61859d0e97e400f216645bfa78d79392a79e2714eacc147b7446c223f/bsdiff4-1.2.5-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bab2449b9d2193d6cff66a7949383921c2ac722181f55aec2e81cefefecb489c",
                "md5": "34d80098f4ea8cf1f76c011944dea243",
                "sha256": "07a032fcb6300bad517699526ba1b6ee72f0ad48581a80009699968e9dec1541"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34d80098f4ea8cf1f76c011944dea243",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 18955,
            "upload_time": "2024-10-10T04:15:31",
            "upload_time_iso_8601": "2024-10-10T04:15:31.040830Z",
            "url": "https://files.pythonhosted.org/packages/ba/b2/449b9d2193d6cff66a7949383921c2ac722181f55aec2e81cefefecb489c/bsdiff4-1.2.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74a63d7d7fc85f400386af8cd83f86a3111b8426b63e3fb51f4c17deff9e515",
                "md5": "c03ba104bc2a93e14c813e62028002c6",
                "sha256": "b55bab011a26ef3345ad82ee42ed6a492e36cc712727191443deff2214283e70"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c03ba104bc2a93e14c813e62028002c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 23436,
            "upload_time": "2024-10-10T04:15:32",
            "upload_time_iso_8601": "2024-10-10T04:15:32.000618Z",
            "url": "https://files.pythonhosted.org/packages/c7/4a/63d7d7fc85f400386af8cd83f86a3111b8426b63e3fb51f4c17deff9e515/bsdiff4-1.2.5-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98500edee4869424a62e0c70eb2144fc9193f39a22b08b460553545259e41678",
                "md5": "4d771f7b98a119b592bc7754ccaaa0d8",
                "sha256": "ce793692c71c0df0203a06970e2a98824d4d9c2c870b97244c7860dbc2c6dc85"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d771f7b98a119b592bc7754ccaaa0d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16645,
            "upload_time": "2024-10-10T04:15:32",
            "upload_time_iso_8601": "2024-10-10T04:15:32.924715Z",
            "url": "https://files.pythonhosted.org/packages/98/50/0edee4869424a62e0c70eb2144fc9193f39a22b08b460553545259e41678/bsdiff4-1.2.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e5727ab3ea8621e82d2ffff954f11d1a23415019ab34bbdb031ec7f49211ad6",
                "md5": "9980c14261f2df6f3c4769798e1ce086",
                "sha256": "c43829213924e06fa2734c6fea79ec4a6db99e81cdb4a0e92461a9ce2c082d41"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9980c14261f2df6f3c4769798e1ce086",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 16622,
            "upload_time": "2024-10-10T04:15:33",
            "upload_time_iso_8601": "2024-10-10T04:15:33.924211Z",
            "url": "https://files.pythonhosted.org/packages/0e/57/27ab3ea8621e82d2ffff954f11d1a23415019ab34bbdb031ec7f49211ad6/bsdiff4-1.2.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61735fddea6b5da0fde835d5106a3067f4593deefc1bab0ae29eb39bd651f5b1",
                "md5": "21f3106a1b9533b5711abaa527b64e7d",
                "sha256": "cac38084be81629e3edc9a53de49c0fe99dd5add672805866b67d0ef7afe70b2"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21f3106a1b9533b5711abaa527b64e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32453,
            "upload_time": "2024-10-10T04:15:34",
            "upload_time_iso_8601": "2024-10-10T04:15:34.878266Z",
            "url": "https://files.pythonhosted.org/packages/61/73/5fddea6b5da0fde835d5106a3067f4593deefc1bab0ae29eb39bd651f5b1/bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "905a15d1a5f7d4e04da4899f996dfd5c88a6d0710fd1a4d39275add7e5c40c8d",
                "md5": "c42b4361cf02c14f7b1ca5546fbb5bf4",
                "sha256": "ea7f77436a2296828cd7d1e04f29922a5c4c348862117f59fabf7baaf410db66"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c42b4361cf02c14f7b1ca5546fbb5bf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34513,
            "upload_time": "2024-10-10T04:15:35",
            "upload_time_iso_8601": "2024-10-10T04:15:35.815109Z",
            "url": "https://files.pythonhosted.org/packages/90/5a/15d1a5f7d4e04da4899f996dfd5c88a6d0710fd1a4d39275add7e5c40c8d/bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "919ccdfabecc3e3db79e9f4fbf4de8f3111f5d80002a29055cb05efa5dfce125",
                "md5": "326604a22e58e27e8b296a99a0df7953",
                "sha256": "98200c08008f665655ae8c1340ebf4db46a120c2d3f60c6f477a82de753eb981"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "326604a22e58e27e8b296a99a0df7953",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32411,
            "upload_time": "2024-10-10T04:15:37",
            "upload_time_iso_8601": "2024-10-10T04:15:37.165082Z",
            "url": "https://files.pythonhosted.org/packages/91/9c/cdfabecc3e3db79e9f4fbf4de8f3111f5d80002a29055cb05efa5dfce125/bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "814fbe1269bb88c084f3a98bbc5c070eefca3f67c1cf19a3ae6922a88969ef70",
                "md5": "9ca4fe841015a12128f4fb6edd39409a",
                "sha256": "b3b63a7c060129a207a3913a17b24cc3770db6d8e68ff5aa7874eb2eef50d82b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ca4fe841015a12128f4fb6edd39409a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 31943,
            "upload_time": "2024-10-10T04:15:38",
            "upload_time_iso_8601": "2024-10-10T04:15:38.808704Z",
            "url": "https://files.pythonhosted.org/packages/81/4f/be1269bb88c084f3a98bbc5c070eefca3f67c1cf19a3ae6922a88969ef70/bsdiff4-1.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e63ea281a0fbf2ebbb947df7acfb81569ebdd6ab34304db2c3217b53de6f5d47",
                "md5": "2f9a9118e1885d010809a26959a52499",
                "sha256": "1d7513aa71a5c1890dbd3755df35aecf9c0495fd66086eca63742f84e39485a9"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2f9a9118e1885d010809a26959a52499",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34691,
            "upload_time": "2024-10-10T04:15:39",
            "upload_time_iso_8601": "2024-10-10T04:15:39.779754Z",
            "url": "https://files.pythonhosted.org/packages/e6/3e/a281a0fbf2ebbb947df7acfb81569ebdd6ab34304db2c3217b53de6f5d47/bsdiff4-1.2.5-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": "a5db2afc3fbc7a410036a642724ecc1a98caf5517ac2446a2d53dc589b382cec",
                "md5": "dcac0061ce862b0dd035e7b14c603068",
                "sha256": "a2b327898f86c9d240a679779383362da0536b2b816b0e64bd0075534fcd237d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dcac0061ce862b0dd035e7b14c603068",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 31939,
            "upload_time": "2024-10-10T04:15:40",
            "upload_time_iso_8601": "2024-10-10T04:15:40.765507Z",
            "url": "https://files.pythonhosted.org/packages/a5/db/2afc3fbc7a410036a642724ecc1a98caf5517ac2446a2d53dc589b382cec/bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9bafa53ac1af3a3de3381ca143d0cbc449c0b0b173277e1505e913102713750",
                "md5": "66c7e136947f83e637f674509a8a88f8",
                "sha256": "19c29ad32117df45b550fc5d9adefc09ed2969c4c4da7eb247615a3cca8a3e43"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "66c7e136947f83e637f674509a8a88f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 35530,
            "upload_time": "2024-10-10T04:15:41",
            "upload_time_iso_8601": "2024-10-10T04:15:41.746155Z",
            "url": "https://files.pythonhosted.org/packages/a9/ba/fa53ac1af3a3de3381ca143d0cbc449c0b0b173277e1505e913102713750/bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d4c6c11b384d50bf8684946a16e14469461a76204bb1d5051c7b0a458442285",
                "md5": "e2d697400c49c09c5febe9d0e998bfde",
                "sha256": "50c672fa20c73a59c997414a5072a4aaaed3c4a7ae6b92519c3590cbe7c3a7e3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e2d697400c49c09c5febe9d0e998bfde",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34061,
            "upload_time": "2024-10-10T04:15:42",
            "upload_time_iso_8601": "2024-10-10T04:15:42.742631Z",
            "url": "https://files.pythonhosted.org/packages/5d/4c/6c11b384d50bf8684946a16e14469461a76204bb1d5051c7b0a458442285/bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09775bfb9053a973fb1587ab57e74b2816c8539730e574d7fdddb97e221833c0",
                "md5": "808d71d645f64d9cadbf6dff3aa8c11e",
                "sha256": "e1b3cbc6a401f9cdeab2f6d123524e323c441fd4f7d3486a1a8d0b464889c5ea"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "808d71d645f64d9cadbf6dff3aa8c11e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 33511,
            "upload_time": "2024-10-10T04:15:43",
            "upload_time_iso_8601": "2024-10-10T04:15:43.734081Z",
            "url": "https://files.pythonhosted.org/packages/09/77/5bfb9053a973fb1587ab57e74b2816c8539730e574d7fdddb97e221833c0/bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79413509ea4fe8625b295e272e3b74d40e9953fc4cf222c783debff83d16f93e",
                "md5": "f3d5bf0039b21b1bbcdce91f3f939306",
                "sha256": "04356c371c0e28431c48e347ac980a5b810f4b254c40565e971e23b9887a92dc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3d5bf0039b21b1bbcdce91f3f939306",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 31106,
            "upload_time": "2024-10-10T04:15:44",
            "upload_time_iso_8601": "2024-10-10T04:15:44.750122Z",
            "url": "https://files.pythonhosted.org/packages/79/41/3509ea4fe8625b295e272e3b74d40e9953fc4cf222c783debff83d16f93e/bsdiff4-1.2.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1680e0741a28a52c06152837067fc4f246ab6cf0be3d9d3d90594f857ff4e825",
                "md5": "1f0258932ef2c1b2ae76c7586cecf231",
                "sha256": "5d5760497cde72b0db08b139736582727d722ceae57079f369ecd452279b7718"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1f0258932ef2c1b2ae76c7586cecf231",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 17830,
            "upload_time": "2024-10-10T04:15:45",
            "upload_time_iso_8601": "2024-10-10T04:15:45.777621Z",
            "url": "https://files.pythonhosted.org/packages/16/80/e0741a28a52c06152837067fc4f246ab6cf0be3d9d3d90594f857ff4e825/bsdiff4-1.2.5-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a08755f4f5af2deb936b1da0b18a18b04eb96942d906f4f2915d47ebc364be93",
                "md5": "99bb47b4e00ec8eba42629d2fb179893",
                "sha256": "4e929e1cb338cdb38e552c390b5816d48726f9427d9515b4a4a833c77fedb482"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "99bb47b4e00ec8eba42629d2fb179893",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 18966,
            "upload_time": "2024-10-10T04:15:46",
            "upload_time_iso_8601": "2024-10-10T04:15:46.732764Z",
            "url": "https://files.pythonhosted.org/packages/a0/87/55f4f5af2deb936b1da0b18a18b04eb96942d906f4f2915d47ebc364be93/bsdiff4-1.2.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eb3e1c4290528eea651fb6984caf242b1ec7b9b8f81ac2f1733e8162743e371",
                "md5": "3188a7772db051137dfb71c6b1a92190",
                "sha256": "65cd42b45da0b11c9021f23015be44a3fce60820891a0952407ff5bd02fac15e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3188a7772db051137dfb71c6b1a92190",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 23433,
            "upload_time": "2024-10-10T04:15:47",
            "upload_time_iso_8601": "2024-10-10T04:15:47.798003Z",
            "url": "https://files.pythonhosted.org/packages/0e/b3/e1c4290528eea651fb6984caf242b1ec7b9b8f81ac2f1733e8162743e371/bsdiff4-1.2.5-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "909599daf54b82c8e5c2cbc0eb76ca2c8a058676270eca5b832af91abef807ea",
                "md5": "267d0708518188c061a5e430a7318adb",
                "sha256": "40e11269dca59c9417cb50a9e8e7d640b282859f5d5514d526349ce19991dd84"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "267d0708518188c061a5e430a7318adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16644,
            "upload_time": "2024-10-10T04:15:48",
            "upload_time_iso_8601": "2024-10-10T04:15:48.869198Z",
            "url": "https://files.pythonhosted.org/packages/90/95/99daf54b82c8e5c2cbc0eb76ca2c8a058676270eca5b832af91abef807ea/bsdiff4-1.2.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f5cd6fee700e7feae886ef3f3df0f817db59faaf4769a41bfc18aba08808cdd",
                "md5": "ecf02c98d4e072ab28b74ef526f888ac",
                "sha256": "f4789819c8a0167c0044ef9092a7c9443fa200dbef80195b8b2d8f7417d69114"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ecf02c98d4e072ab28b74ef526f888ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 16625,
            "upload_time": "2024-10-10T04:15:49",
            "upload_time_iso_8601": "2024-10-10T04:15:49.864073Z",
            "url": "https://files.pythonhosted.org/packages/7f/5c/d6fee700e7feae886ef3f3df0f817db59faaf4769a41bfc18aba08808cdd/bsdiff4-1.2.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57f6a740900e642cf084707e4143fb4f73a621892fa48ef34cfda11573956192",
                "md5": "309893c923e12a70b46e0f8956c995db",
                "sha256": "e452d42c30c6786f2176b6e5d75d533ac4f553e0c5746b252909ec822aee8a80"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "309893c923e12a70b46e0f8956c995db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31800,
            "upload_time": "2024-10-10T04:15:50",
            "upload_time_iso_8601": "2024-10-10T04:15:50.872010Z",
            "url": "https://files.pythonhosted.org/packages/57/f6/a740900e642cf084707e4143fb4f73a621892fa48ef34cfda11573956192/bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4d1aa1c02d2dacfb207b665ded28f5ca1c895b5dbb9e0405f0c8efc741ca60c",
                "md5": "4290a386e81f8f9bf520c75a6d7447fc",
                "sha256": "54e5cbf400a4f24cf12f7e86123d5bc450fc4b6a02bf5e8ccebfdb1e998b518b"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4290a386e81f8f9bf520c75a6d7447fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33881,
            "upload_time": "2024-10-10T04:15:52",
            "upload_time_iso_8601": "2024-10-10T04:15:52.685843Z",
            "url": "https://files.pythonhosted.org/packages/c4/d1/aa1c02d2dacfb207b665ded28f5ca1c895b5dbb9e0405f0c8efc741ca60c/bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf01d00cdb2ee32fdb732e633be50970f9e7c44e37a3b18bff570e65bc752b26",
                "md5": "317921ef18254d1d965e80cc8f966dbd",
                "sha256": "1931dee6c9968dfaae6593f3536ed4471f560478a0999b9fef6e8db3ab53ea74"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "317921ef18254d1d965e80cc8f966dbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31789,
            "upload_time": "2024-10-10T04:15:53",
            "upload_time_iso_8601": "2024-10-10T04:15:53.731429Z",
            "url": "https://files.pythonhosted.org/packages/cf/01/d00cdb2ee32fdb732e633be50970f9e7c44e37a3b18bff570e65bc752b26/bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb39aec383a5af6ea12862cac2c92afc45d7a80b0a0b756fbef54bd4b3471bf4",
                "md5": "5ad9262b54514791c3cff243d05ca31e",
                "sha256": "e69b9911106245be308a6adfeceda6db6fb920ff144ed40365ce649ab06ef22d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ad9262b54514791c3cff243d05ca31e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31251,
            "upload_time": "2024-10-10T04:15:54",
            "upload_time_iso_8601": "2024-10-10T04:15:54.819204Z",
            "url": "https://files.pythonhosted.org/packages/fb/39/aec383a5af6ea12862cac2c92afc45d7a80b0a0b756fbef54bd4b3471bf4/bsdiff4-1.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93905610679026e23a0a91c794fc0bbc63f2a28ac237e3ceeb5e18bd9ac48faf",
                "md5": "c004344e19340e4cb9c90f230602f717",
                "sha256": "7c3115f1c4321ba54822a0774f98ce273eb4d82c7df169a703b50ae5664ae6e8"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c004344e19340e4cb9c90f230602f717",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34065,
            "upload_time": "2024-10-10T04:15:55",
            "upload_time_iso_8601": "2024-10-10T04:15:55.861168Z",
            "url": "https://files.pythonhosted.org/packages/93/90/5610679026e23a0a91c794fc0bbc63f2a28ac237e3ceeb5e18bd9ac48faf/bsdiff4-1.2.5-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": "ab75be20ecea96faf51e656e5912b003712f7af848b69b6309d03e8d88d85517",
                "md5": "6ef2039e356ef940ec6bd67343c5c451",
                "sha256": "66103afcd2179f7814b1c93d8729b571a7b5b99719f3a0df7960017415e6cd03"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6ef2039e356ef940ec6bd67343c5c451",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31878,
            "upload_time": "2024-10-10T04:15:56",
            "upload_time_iso_8601": "2024-10-10T04:15:56.912576Z",
            "url": "https://files.pythonhosted.org/packages/ab/75/be20ecea96faf51e656e5912b003712f7af848b69b6309d03e8d88d85517/bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "570f6ffebbcb8e1de08cedc7c3cada5c4608c43fc29a96f87eb637a4b75104a9",
                "md5": "6474e4111b192714d2265ab12960cb8b",
                "sha256": "7db06e4ab7108ee9c68b7231d5103a893a47706c4b93d35294dbe19030ca19d4"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6474e4111b192714d2265ab12960cb8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 35445,
            "upload_time": "2024-10-10T04:15:59",
            "upload_time_iso_8601": "2024-10-10T04:15:59.160229Z",
            "url": "https://files.pythonhosted.org/packages/57/0f/6ffebbcb8e1de08cedc7c3cada5c4608c43fc29a96f87eb637a4b75104a9/bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee572f3f60d8d82b51896110f55b6eb12b6b25d9091b03a22e5bd18e9bd0e29b",
                "md5": "1806bcd0b617f1c09718be6bb57181bc",
                "sha256": "c57c94094bc53050be89054bdca21ff273db144deec7c4873fe142c5ca2d5d4a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1806bcd0b617f1c09718be6bb57181bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33952,
            "upload_time": "2024-10-10T04:16:00",
            "upload_time_iso_8601": "2024-10-10T04:16:00.238526Z",
            "url": "https://files.pythonhosted.org/packages/ee/57/2f3f60d8d82b51896110f55b6eb12b6b25d9091b03a22e5bd18e9bd0e29b/bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab9efaa3ed59a751a01ab60efa000481740f2f8cc9b241efc59ebcc994ccddb9",
                "md5": "a4e3b7a8cf2d7765c543d87242290cc8",
                "sha256": "a4283c8064d085ff15531411710ab3f59bd2c453f59dd23ecdc07779ea816d0f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4e3b7a8cf2d7765c543d87242290cc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 33410,
            "upload_time": "2024-10-10T04:16:01",
            "upload_time_iso_8601": "2024-10-10T04:16:01.286586Z",
            "url": "https://files.pythonhosted.org/packages/ab/9e/faa3ed59a751a01ab60efa000481740f2f8cc9b241efc59ebcc994ccddb9/bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff6343f4453fc93b65726e6f076cf352944773f01ad1fbeeb2971c9b3ea45221",
                "md5": "dcd308fc12c83a1662783b464c90c02a",
                "sha256": "2c7e6e8f40a0b963f4e25133b180a4ca699513cef2c96117d6dd4f7a4e690f55"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcd308fc12c83a1662783b464c90c02a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31021,
            "upload_time": "2024-10-10T04:16:02",
            "upload_time_iso_8601": "2024-10-10T04:16:02.326069Z",
            "url": "https://files.pythonhosted.org/packages/ff/63/43f4453fc93b65726e6f076cf352944773f01ad1fbeeb2971c9b3ea45221/bsdiff4-1.2.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7216222036d3dc1d8c78bf3a6798733f034bb469c4605de405d2a5536a9184a",
                "md5": "de4c86557225d88ef87691a22a41a040",
                "sha256": "333ccbceadeee7a8c333f17e9b1feef47b4d2a98a1025a69387ff082800d8fae"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "de4c86557225d88ef87691a22a41a040",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 17830,
            "upload_time": "2024-10-10T04:16:03",
            "upload_time_iso_8601": "2024-10-10T04:16:03.377391Z",
            "url": "https://files.pythonhosted.org/packages/f7/21/6222036d3dc1d8c78bf3a6798733f034bb469c4605de405d2a5536a9184a/bsdiff4-1.2.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eac87acf90451c54fed94fb0d44a173fa30cfb7932bfd3d15875139e6a474541",
                "md5": "9319b87b4878185ff7dc724def4b5119",
                "sha256": "4e73fdb283260a10d3775a8fc2105ce9a4a34f117d25efd2de9f7e122ece04ec"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9319b87b4878185ff7dc724def4b5119",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 18964,
            "upload_time": "2024-10-10T04:16:04",
            "upload_time_iso_8601": "2024-10-10T04:16:04.445427Z",
            "url": "https://files.pythonhosted.org/packages/ea/c8/7acf90451c54fed94fb0d44a173fa30cfb7932bfd3d15875139e6a474541/bsdiff4-1.2.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b86cb1b07e7c0c1765780eadae77233619a29555132c269bc92b7cf007d8314d",
                "md5": "f2ae45a94377b11057a9d1ad9508c6cd",
                "sha256": "171e422a5f9bc8f70ae455ba18046c7ac48d669603e9b5c935b4c6f8e484d766"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2ae45a94377b11057a9d1ad9508c6cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 16043,
            "upload_time": "2024-10-10T04:16:06",
            "upload_time_iso_8601": "2024-10-10T04:16:06.180001Z",
            "url": "https://files.pythonhosted.org/packages/b8/6c/b1b07e7c0c1765780eadae77233619a29555132c269bc92b7cf007d8314d/bsdiff4-1.2.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26a6d97e341a33f67ef8283d0fdc108957d5e5bc0dc59125d0a8d1f35a87f5cb",
                "md5": "d5eb0a68a98e0fabbcefa9018c8191e5",
                "sha256": "13a4b255b20dfbd4d4b11d55583b8d047fdc9cb1f9596028ecd7929356c7c25a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5eb0a68a98e0fabbcefa9018c8191e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 17483,
            "upload_time": "2024-10-10T04:16:07",
            "upload_time_iso_8601": "2024-10-10T04:16:07.203387Z",
            "url": "https://files.pythonhosted.org/packages/26/a6/d97e341a33f67ef8283d0fdc108957d5e5bc0dc59125d0a8d1f35a87f5cb/bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9f21c82c714f72a426ed0c38c1a42b8add05cb63593c46a672aafbc0b26b4f7",
                "md5": "35a8b04a3548e63e4b63d4aee57ebefb",
                "sha256": "4fc138c088e78021eca3c45e40fc305adf10101ea366bd36e708f14acf8f68c3"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35a8b04a3548e63e4b63d4aee57ebefb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 16888,
            "upload_time": "2024-10-10T04:16:08",
            "upload_time_iso_8601": "2024-10-10T04:16:08.360757Z",
            "url": "https://files.pythonhosted.org/packages/e9/f2/1c82c714f72a426ed0c38c1a42b8add05cb63593c46a672aafbc0b26b4f7/bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17057a4a260d6f1f011508ae163a34452d8294098705a03366df658815a99b8b",
                "md5": "e27974293d19a93bd683755515347758",
                "sha256": "e05855666e8a8365f546b582b0ad13bcd64962ca820318608aa4b235e417f9a6"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e27974293d19a93bd683755515347758",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 17420,
            "upload_time": "2024-10-10T04:16:09",
            "upload_time_iso_8601": "2024-10-10T04:16:09.437609Z",
            "url": "https://files.pythonhosted.org/packages/17/05/7a4a260d6f1f011508ae163a34452d8294098705a03366df658815a99b8b/bsdiff4-1.2.5-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": "bc74eda685ed1d48579e36d99580388e6221fd1cda210fd9fce1059c103e3e70",
                "md5": "b1421e93cbee5c8ccc1f585605f2eea5",
                "sha256": "bf8242f77b37118543ab21d8b67bcf97714606b924fc1cb25cff0112c4a60c1a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b1421e93cbee5c8ccc1f585605f2eea5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 19007,
            "upload_time": "2024-10-10T04:16:11",
            "upload_time_iso_8601": "2024-10-10T04:16:11.196651Z",
            "url": "https://files.pythonhosted.org/packages/bc/74/eda685ed1d48579e36d99580388e6221fd1cda210fd9fce1059c103e3e70/bsdiff4-1.2.5-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95e456b904455186edeb48f5b747143cbe5f6efa0420150885b52962c45f72ca",
                "md5": "ae192cb07d085a0a82765623fe758300",
                "sha256": "88d1bce0c5e4054552a8d75cb4be70b185c5d21ed8a757bbf8588c4aab325183"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae192cb07d085a0a82765623fe758300",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 15933,
            "upload_time": "2024-10-10T04:16:12",
            "upload_time_iso_8601": "2024-10-10T04:16:12.260378Z",
            "url": "https://files.pythonhosted.org/packages/95/e4/56b904455186edeb48f5b747143cbe5f6efa0420150885b52962c45f72ca/bsdiff4-1.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5f1e1d081949757b261dc4456a8fea33423447f71eb420783e21f4e29e79d56",
                "md5": "2364cc9fd3f3ca4f9c1a559f072f0d2c",
                "sha256": "da464b0f9e253bacddf16b2d4fe708f5c860c74aa0505b47958bf8a9b380822e"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2364cc9fd3f3ca4f9c1a559f072f0d2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 17502,
            "upload_time": "2024-10-10T04:16:13",
            "upload_time_iso_8601": "2024-10-10T04:16:13.337379Z",
            "url": "https://files.pythonhosted.org/packages/d5/f1/e1d081949757b261dc4456a8fea33423447f71eb420783e21f4e29e79d56/bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cf79ca0c10248a911c97a58b69bc03bd1c498c049b60f96920c1953dc5c9f04",
                "md5": "eaf980a294acd7a08859bef2b6d36d70",
                "sha256": "e4bdace959df85a0f5537a28b0bd62f8c77d305b17b20aa76f1d79d7036c05a0"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf980a294acd7a08859bef2b6d36d70",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 16881,
            "upload_time": "2024-10-10T04:16:14",
            "upload_time_iso_8601": "2024-10-10T04:16:14.730464Z",
            "url": "https://files.pythonhosted.org/packages/0c/f7/9ca0c10248a911c97a58b69bc03bd1c498c049b60f96920c1953dc5c9f04/bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45e768e83594c1069703a3fd54bbd6a410d1075629d630ea762b05100b196474",
                "md5": "c837fb7815c844f7de07140002d97724",
                "sha256": "cc732641d933f68896a6ba9b988d042b5acdee8bde1efebaca1182b1e43b6631"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c837fb7815c844f7de07140002d97724",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 17427,
            "upload_time": "2024-10-10T04:16:15",
            "upload_time_iso_8601": "2024-10-10T04:16:15.781639Z",
            "url": "https://files.pythonhosted.org/packages/45/e7/68e83594c1069703a3fd54bbd6a410d1075629d630ea762b05100b196474/bsdiff4-1.2.5-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": "e2c9877ecd42cf42dbc38e41da6c337525dae80e99b8c60e9761266b81b7a1e0",
                "md5": "7431be45c7ea5e03c294b0d0217a5951",
                "sha256": "781f95d2666279e26d7ea2a9ec1e6fa7355c082f043ce26ca51d80af964b22c8"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7431be45c7ea5e03c294b0d0217a5951",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 18995,
            "upload_time": "2024-10-10T04:16:16",
            "upload_time_iso_8601": "2024-10-10T04:16:16.865951Z",
            "url": "https://files.pythonhosted.org/packages/e2/c9/877ecd42cf42dbc38e41da6c337525dae80e99b8c60e9761266b81b7a1e0/bsdiff4-1.2.5-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "444b0438428828e320d8ef91c7e3790139a3b98b53b501183e0126350e8510d2",
                "md5": "af6f972ac4a7388f991ceb230a77f875",
                "sha256": "64caae49da5826b29d4c5e475176cd7f5186a89d910c264304e5796ea1a1b587"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af6f972ac4a7388f991ceb230a77f875",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 15929,
            "upload_time": "2024-10-10T04:16:17",
            "upload_time_iso_8601": "2024-10-10T04:16:17.944231Z",
            "url": "https://files.pythonhosted.org/packages/44/4b/0438428828e320d8ef91c7e3790139a3b98b53b501183e0126350e8510d2/bsdiff4-1.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60255b80e00c015736ee0c3c6bfffc133bf930ca8cda577a71a9d07039b930aa",
                "md5": "c2fb7a3d00fb17c005b1987236b03c5a",
                "sha256": "86d4c3db24395b61fec82d9e6e0cf38414850f81513c62036d9379b538bfab29"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c2fb7a3d00fb17c005b1987236b03c5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 17506,
            "upload_time": "2024-10-10T04:16:19",
            "upload_time_iso_8601": "2024-10-10T04:16:19.139823Z",
            "url": "https://files.pythonhosted.org/packages/60/25/5b80e00c015736ee0c3c6bfffc133bf930ca8cda577a71a9d07039b930aa/bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "add195c74ba209162641faed8a6055aa137a9463ec73cc1ecb88f371af582484",
                "md5": "c135a4c061890f83cd8a8cebb21adc25",
                "sha256": "a86e3493cabf9d217c48a041b6c0859cdea953d391b385f7128569836ecaa0bc"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c135a4c061890f83cd8a8cebb21adc25",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 16881,
            "upload_time": "2024-10-10T04:16:20",
            "upload_time_iso_8601": "2024-10-10T04:16:20.223889Z",
            "url": "https://files.pythonhosted.org/packages/ad/d1/95c74ba209162641faed8a6055aa137a9463ec73cc1ecb88f371af582484/bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea11f3b744d45e0f51744b8780d9fa54e38e30e3507621ed6df0cb15d08cdc41",
                "md5": "136d0b4fa76da3ac17dc50d86cd427b5",
                "sha256": "5c09fe4c33012db681da53c41246041f250aea6787e710666de99653ca43e5af"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "136d0b4fa76da3ac17dc50d86cd427b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 17428,
            "upload_time": "2024-10-10T04:16:21",
            "upload_time_iso_8601": "2024-10-10T04:16:21.310829Z",
            "url": "https://files.pythonhosted.org/packages/ea/11/f3b744d45e0f51744b8780d9fa54e38e30e3507621ed6df0cb15d08cdc41/bsdiff4-1.2.5-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": "3b6ff2aae3ce7d7a1b49d2690c215f71b393bf117f061abd70f273e9c8f4c009",
                "md5": "66d92e8c71da4ec657add0193e979e8f",
                "sha256": "119bc05db163842102af32abc095ca7e8223e826a5e16d70c46b7e700fcd3a3f"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "66d92e8c71da4ec657add0193e979e8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 18999,
            "upload_time": "2024-10-10T04:16:22",
            "upload_time_iso_8601": "2024-10-10T04:16:22.416717Z",
            "url": "https://files.pythonhosted.org/packages/3b/6f/f2aae3ce7d7a1b49d2690c215f71b393bf117f061abd70f273e9c8f4c009/bsdiff4-1.2.5-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f0ce25c098f54cabbb359cd52a2faa1ee393b8e8f0edf76bdad95f594601951",
                "md5": "d48b9c8607e490a6fdd5296cd4c5c3ee",
                "sha256": "a904425b517adf07e8b94f4de2f2dbae3b6a19d7d0da15e2c7a072be2e85274d"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d48b9c8607e490a6fdd5296cd4c5c3ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 16036,
            "upload_time": "2024-10-10T04:16:23",
            "upload_time_iso_8601": "2024-10-10T04:16:23.611035Z",
            "url": "https://files.pythonhosted.org/packages/7f/0c/e25c098f54cabbb359cd52a2faa1ee393b8e8f0edf76bdad95f594601951/bsdiff4-1.2.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebb0f284ff54d93df659972cea449b1aa1bc0429ffee604d0b91c7f7e23aeae7",
                "md5": "6bfec585a9cc01fb41f8499d365d4165",
                "sha256": "7cdfb8988171237ccf99bbe951755119fd2174817ab47e8bf89de370efcdd70a"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6bfec585a9cc01fb41f8499d365d4165",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 17481,
            "upload_time": "2024-10-10T04:16:24",
            "upload_time_iso_8601": "2024-10-10T04:16:24.688544Z",
            "url": "https://files.pythonhosted.org/packages/eb/b0/f284ff54d93df659972cea449b1aa1bc0429ffee604d0b91c7f7e23aeae7/bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7611e7405911e9d3bc519757f84a0710cb0b03c746a3154e94a4988b9306989",
                "md5": "99548c70df3cdff5b52b7cf866b0b814",
                "sha256": "11b2bdd4658d2690bbb4c68406b9d7df0dee12bf64f7509fbee8603d5dc47802"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99548c70df3cdff5b52b7cf866b0b814",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 16881,
            "upload_time": "2024-10-10T04:16:25",
            "upload_time_iso_8601": "2024-10-10T04:16:25.850788Z",
            "url": "https://files.pythonhosted.org/packages/c7/61/1e7405911e9d3bc519757f84a0710cb0b03c746a3154e94a4988b9306989/bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7ce666a0cd34da7e5198a00e2f406fd2311b2ceb2bd73c13f4f20945b970127",
                "md5": "893098c6b04156b906715d8b61661dc6",
                "sha256": "4b863c8a36cda52e9529c88bdbd8cd12187e277c56f65595801af8c1bb2e01fd"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "893098c6b04156b906715d8b61661dc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 17419,
            "upload_time": "2024-10-10T04:16:26",
            "upload_time_iso_8601": "2024-10-10T04:16:26.974490Z",
            "url": "https://files.pythonhosted.org/packages/e7/ce/666a0cd34da7e5198a00e2f406fd2311b2ceb2bd73c13f4f20945b970127/bsdiff4-1.2.5-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": "905fe410762d32fa8c11d36d6b213aa9c35a964ee46b461dd85cfc0ebd1b1411",
                "md5": "c98febf1265544299d320a2863d53b53",
                "sha256": "0cfe96024314545d70502dcc4db8ba7d88123ecc9858e9fa68369a9451303a31"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c98febf1265544299d320a2863d53b53",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 18995,
            "upload_time": "2024-10-10T04:16:28",
            "upload_time_iso_8601": "2024-10-10T04:16:28.152096Z",
            "url": "https://files.pythonhosted.org/packages/90/5f/e410762d32fa8c11d36d6b213aa9c35a964ee46b461dd85cfc0ebd1b1411/bsdiff4-1.2.5-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4349262497fc308aa998d7431130cb8526b16aa43f2cca500d0182fb68689d99",
                "md5": "6fae66687d99305e2bf15887c9f80cf9",
                "sha256": "cdd83f820ecb8f1ef67a4e5f0b152c61d327caf7abf35aa9a763413915b21368"
            },
            "downloads": -1,
            "filename": "bsdiff4-1.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "6fae66687d99305e2bf15887c9f80cf9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 13163,
            "upload_time": "2024-10-10T04:16:29",
            "upload_time_iso_8601": "2024-10-10T04:16:29.319511Z",
            "url": "https://files.pythonhosted.org/packages/43/49/262497fc308aa998d7431130cb8526b16aa43f2cca500d0182fb68689d99/bsdiff4-1.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-10 04:16:29",
    "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: 1.08033s