cydifflib


Namecydifflib JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/rapidfuzz/cydifflib
SummaryFast implementation of difflib's algorithms
upload_time2024-02-03 22:46:40
maintainer
docs_urlNone
authorMax Bachmann
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">
 CyDifflib
</h1>
<p align="center">
  <a href="https://github.com/rapidfuzz/CyDifflib/actions">
    <img src="https://github.com/rapidfuzz/CyDifflib/workflows/Build/badge.svg"
         alt="Continuous Integration">
  </a>
  <a href="https://pypi.org/project/cydifflib/">
    <img src="https://img.shields.io/pypi/v/cydifflib"
         alt="PyPI package version">
  </a>
  <a href="https://www.python.org">
    <img src="https://img.shields.io/pypi/pyversions/cydifflib"
         alt="Python versions">
  </a><br/>
  <a href="https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE">
    <img src="https://img.shields.io/github/license/rapidfuzz/CyDifflib"
         alt="GitHub license">
  </a>
</p>

<h4 align="center">CyDifflib is a fast implementation of difflib's algorithms, which can be used as a drop-in replacement</a>.</h4>


## 🚀 Benchmarks
The following [benchmark](https://github.com/rapidfuzz/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib

<p align="center">
<img src="https://raw.githubusercontent.com/rapidfuzz/CyDifflib/main/bench/CyDifflib.svg?sanitize=true" alt="Benchmark CyDifflib">
</p>

## ⚙️ Installation

You can install this library from [PyPI](https://pypi.org/project/cydifflib/) with pip:
```
pip install cydifflib
```
CyDifflib provides binary wheels for all common platforms.

### Source builds

For a source build (for example from a SDist packaged) you only require a C++11 compatible compiler. You can install directly from GitHub if you would like.
```
pip install git+https://github.com/rapidfuzz/CyDifflib.git@main
```

## 📖 Usage

The library can be used in the same way as difflib. Just use the `cydifflib` module instead of `difflib`:
```python
# from difflib import SequenceMatcher
from cydifflib import SequenceMatcher
```
The official [documentation of difflib](https://docs.python.org/3.10/library/difflib.html) explains how to use the library. If you work with a library which internally uses some of the algorithms of difflib it is possible to replace the implementation before importing this library. E.g. for `thefuzz` this can be done in the following way:
```python
from cydifflib import SequenceMatcher
import difflib

difflib.SequenceMatcher = SequenceMatcher
from thefuzz import fuzz
```

## 👍 Contributing

PRs are welcome!
- Found a bug? Report it in form of an [issue](https://github.com/rapidfuzz/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug.
- Can make something faster? Great! Just avoid external dependencies and remember that external behavior does not change.
- Have no time to code? Tell your friends and subscribers about CyDifflib.

Thank you :heart:

## ⚠️ License
Copyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rapidfuzz/cydifflib",
    "name": "cydifflib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Max Bachmann",
    "author_email": "pypi@maxbachmann.de",
    "download_url": "https://files.pythonhosted.org/packages/d3/0b/63fef9d613da18e1956ce80ad03d2c409cfd81ddbfd0e52444a523436a60/cydifflib-1.1.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">\n CyDifflib\n</h1>\n<p align=\"center\">\n  <a href=\"https://github.com/rapidfuzz/CyDifflib/actions\">\n    <img src=\"https://github.com/rapidfuzz/CyDifflib/workflows/Build/badge.svg\"\n         alt=\"Continuous Integration\">\n  </a>\n  <a href=\"https://pypi.org/project/cydifflib/\">\n    <img src=\"https://img.shields.io/pypi/v/cydifflib\"\n         alt=\"PyPI package version\">\n  </a>\n  <a href=\"https://www.python.org\">\n    <img src=\"https://img.shields.io/pypi/pyversions/cydifflib\"\n         alt=\"Python versions\">\n  </a><br/>\n  <a href=\"https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE\">\n    <img src=\"https://img.shields.io/github/license/rapidfuzz/CyDifflib\"\n         alt=\"GitHub license\">\n  </a>\n</p>\n\n<h4 align=\"center\">CyDifflib is a fast implementation of difflib's algorithms, which can be used as a drop-in replacement</a>.</h4>\n\n\n## \ud83d\ude80 Benchmarks\nThe following [benchmark](https://github.com/rapidfuzz/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib\n\n<p align=\"center\">\n<img src=\"https://raw.githubusercontent.com/rapidfuzz/CyDifflib/main/bench/CyDifflib.svg?sanitize=true\" alt=\"Benchmark CyDifflib\">\n</p>\n\n## \u2699\ufe0f Installation\n\nYou can install this library from [PyPI](https://pypi.org/project/cydifflib/) with pip:\n```\npip install cydifflib\n```\nCyDifflib provides binary wheels for all common platforms.\n\n### Source builds\n\nFor a source build (for example from a SDist packaged) you only require a C++11 compatible compiler. You can install directly from GitHub if you would like.\n```\npip install git+https://github.com/rapidfuzz/CyDifflib.git@main\n```\n\n## \ud83d\udcd6 Usage\n\nThe library can be used in the same way as difflib. Just use the `cydifflib` module instead of `difflib`:\n```python\n# from difflib import SequenceMatcher\nfrom cydifflib import SequenceMatcher\n```\nThe official [documentation of difflib](https://docs.python.org/3.10/library/difflib.html) explains how to use the library. If you work with a library which internally uses some of the algorithms of difflib it is possible to replace the implementation before importing this library. E.g. for `thefuzz` this can be done in the following way:\n```python\nfrom cydifflib import SequenceMatcher\nimport difflib\n\ndifflib.SequenceMatcher = SequenceMatcher\nfrom thefuzz import fuzz\n```\n\n## \ud83d\udc4d Contributing\n\nPRs are welcome!\n- Found a bug? Report it in form of an [issue](https://github.com/rapidfuzz/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug.\n- Can make something faster? Great! Just avoid external dependencies and remember that external behavior does not change.\n- Have no time to code? Tell your friends and subscribers about CyDifflib.\n\nThank you :heart:\n\n## \u26a0\ufe0f License\nCopyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast implementation of difflib's algorithms",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/rapidfuzz/cydifflib"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90401199df9188167f37e3bef0104a9b812dec765a688c60d7fcea726153e374",
                "md5": "5764edbabece266fb9472c2f3eb9a922",
                "sha256": "a080e3eec00ffde0eb9475b910518f5968196a4490d5656c58930c062e9491a5"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5764edbabece266fb9472c2f3eb9a922",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 743441,
            "upload_time": "2024-02-03T22:44:03",
            "upload_time_iso_8601": "2024-02-03T22:44:03.426987Z",
            "url": "https://files.pythonhosted.org/packages/90/40/1199df9188167f37e3bef0104a9b812dec765a688c60d7fcea726153e374/cydifflib-1.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "325aeef6a0fe48c60317620a38a7a5433d88c2210d7d2add7c3855c93fc04125",
                "md5": "8d78678bba993791cec442200ea14ce5",
                "sha256": "5a38d155f2766763238867afa890280760793029a062342f90475ee5ea5b43c2"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d78678bba993791cec442200ea14ce5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 539460,
            "upload_time": "2024-02-03T22:44:05",
            "upload_time_iso_8601": "2024-02-03T22:44:05.762828Z",
            "url": "https://files.pythonhosted.org/packages/32/5a/eef6a0fe48c60317620a38a7a5433d88c2210d7d2add7c3855c93fc04125/cydifflib-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6eb92058a79176b95667ac9f04526a7caf0dd39e6540dc2851edf37bad2a7b9",
                "md5": "d7f9cacc07c28e3328af53a91e1b902d",
                "sha256": "4ce85aad08e400d291c8b4548a16b45ee7ca54316ff2f0bbc76a1817e942d74f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d7f9cacc07c28e3328af53a91e1b902d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 527741,
            "upload_time": "2024-02-03T22:44:07",
            "upload_time_iso_8601": "2024-02-03T22:44:07.712227Z",
            "url": "https://files.pythonhosted.org/packages/a6/eb/92058a79176b95667ac9f04526a7caf0dd39e6540dc2851edf37bad2a7b9/cydifflib-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0608a65e7010a5bdd355ab0dcc78a02781463a14137aa6d649af579b13422495",
                "md5": "36613554b3c9c0714eb603bbe3a36f3c",
                "sha256": "191dc11a1a950850258f44aad1362900617f32a6fc9ee8fef88d925d74a23d1f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36613554b3c9c0714eb603bbe3a36f3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 570562,
            "upload_time": "2024-02-03T22:44:10",
            "upload_time_iso_8601": "2024-02-03T22:44:10.099527Z",
            "url": "https://files.pythonhosted.org/packages/06/08/a65e7010a5bdd355ab0dcc78a02781463a14137aa6d649af579b13422495/cydifflib-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74d5bdeeae3f171bead951acb3596a4cad93dfb41d99cdd3bc526d0b85423cf",
                "md5": "15a154f8340a6263cfdf916bfc8d9696",
                "sha256": "90e9c438c05f5cf90814e3601151c6a4c82497f51b0bb9013892574ea0c6adba"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "15a154f8340a6263cfdf916bfc8d9696",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 604425,
            "upload_time": "2024-02-03T22:44:11",
            "upload_time_iso_8601": "2024-02-03T22:44:11.632056Z",
            "url": "https://files.pythonhosted.org/packages/c7/4d/5bdeeae3f171bead951acb3596a4cad93dfb41d99cdd3bc526d0b85423cf/cydifflib-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d1023c1000645e965f3453923c5fc13d3cb3893c8df1d9bbb179b4979b91a0b",
                "md5": "a0b31a8166ab86994ccad5928c82ddfa",
                "sha256": "0f67481e9bee391a7974f03e717bbc6926f6dbdc28c8ecd5a2cba4d333451afd"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a0b31a8166ab86994ccad5928c82ddfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 567870,
            "upload_time": "2024-02-03T22:44:12",
            "upload_time_iso_8601": "2024-02-03T22:44:12.976161Z",
            "url": "https://files.pythonhosted.org/packages/3d/10/23c1000645e965f3453923c5fc13d3cb3893c8df1d9bbb179b4979b91a0b/cydifflib-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89492d78a0261dd35644f8384388ace6a706489cbb209a2f8373bb34366b06af",
                "md5": "6da72320c897c553152d7d1df842f22b",
                "sha256": "e19fcacacfd732a6f58762ed64d9b1751b7babdd5acce838d38432a92531441a"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6da72320c897c553152d7d1df842f22b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 584706,
            "upload_time": "2024-02-03T22:44:15",
            "upload_time_iso_8601": "2024-02-03T22:44:15.083645Z",
            "url": "https://files.pythonhosted.org/packages/89/49/2d78a0261dd35644f8384388ace6a706489cbb209a2f8373bb34366b06af/cydifflib-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5487e436bd4679d52b4c7c204c0fa803fcde640f41c2e109005c7fdfbeb513b4",
                "md5": "a15997f756c0ec66f06ea2aa2c216d7c",
                "sha256": "0e72cb2275190b34fc54679d9a3ee09920a6384032c27b831dd9f8af01ca9310"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a15997f756c0ec66f06ea2aa2c216d7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 593948,
            "upload_time": "2024-02-03T22:44:16",
            "upload_time_iso_8601": "2024-02-03T22:44:16.601034Z",
            "url": "https://files.pythonhosted.org/packages/54/87/e436bd4679d52b4c7c204c0fa803fcde640f41c2e109005c7fdfbeb513b4/cydifflib-1.1.0-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": "2c7cb1fd2070e87f0ab68e4c4e3827efa8d15cc49a0e5b49c9d1bc699c2ea16e",
                "md5": "a248f725f57ce5af28151d421ab3dc10",
                "sha256": "fba9bc1cec3c292daae821cd6702d63249a5cc7f2d67a8655865f85adc3a4e03"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a248f725f57ce5af28151d421ab3dc10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1103607,
            "upload_time": "2024-02-03T22:44:18",
            "upload_time_iso_8601": "2024-02-03T22:44:18.081408Z",
            "url": "https://files.pythonhosted.org/packages/2c/7c/b1fd2070e87f0ab68e4c4e3827efa8d15cc49a0e5b49c9d1bc699c2ea16e/cydifflib-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090971af05182f2f85208dbae97c949d870b19b47f46e894a0f3c282e706ccd5",
                "md5": "6d9f7a5b1adbbdaeec43cbddf142dc26",
                "sha256": "befe064f7ef4389dcf53aaa1264e885c4bf484ae0ef8071a735324548281b4b8"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6d9f7a5b1adbbdaeec43cbddf142dc26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1185536,
            "upload_time": "2024-02-03T22:44:20",
            "upload_time_iso_8601": "2024-02-03T22:44:20.456136Z",
            "url": "https://files.pythonhosted.org/packages/09/09/71af05182f2f85208dbae97c949d870b19b47f46e894a0f3c282e706ccd5/cydifflib-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfe50fc68ddcc138a5dcc81419e7ddba2732959472247ad36a8c30383512a02e",
                "md5": "d22b2ffaeb5c9d51aeb30d064a91247d",
                "sha256": "49b4f526e51048b55ed5d3f0f4507cef3a37923b975a8b16a02852c367d636bc"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d22b2ffaeb5c9d51aeb30d064a91247d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1175001,
            "upload_time": "2024-02-03T22:44:21",
            "upload_time_iso_8601": "2024-02-03T22:44:21.930884Z",
            "url": "https://files.pythonhosted.org/packages/bf/e5/0fc68ddcc138a5dcc81419e7ddba2732959472247ad36a8c30383512a02e/cydifflib-1.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed14b8de1f4882c74d381fd391edc95e426dfb25501fcbad7b83227f5294e245",
                "md5": "740c95a65a8a836a179dcfb2fa419e51",
                "sha256": "decf17ff55bd357f578c9dee8c3fa190e60af7791669ee641b07265708b9bc55"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "740c95a65a8a836a179dcfb2fa419e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1164764,
            "upload_time": "2024-02-03T22:44:24",
            "upload_time_iso_8601": "2024-02-03T22:44:24.091906Z",
            "url": "https://files.pythonhosted.org/packages/ed/14/b8de1f4882c74d381fd391edc95e426dfb25501fcbad7b83227f5294e245/cydifflib-1.1.0-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31b83a95d30d240be36eeba4ac05f3bab7418a785ca9cb5745552b2fd0d83c79",
                "md5": "70f05453bc60dcc43f8ae4a47835814d",
                "sha256": "ab00eb434d729833d7c34a92a2570b0472983f29ba78c3c6ffc9ea0766dfb42b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70f05453bc60dcc43f8ae4a47835814d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1129053,
            "upload_time": "2024-02-03T22:44:26",
            "upload_time_iso_8601": "2024-02-03T22:44:26.351612Z",
            "url": "https://files.pythonhosted.org/packages/31/b8/3a95d30d240be36eeba4ac05f3bab7418a785ca9cb5745552b2fd0d83c79/cydifflib-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2dde65fa47ad70062cd587ce6387eb15f55dd2318f10317ad1f68116ed43d77",
                "md5": "ada626646ec7c7e915c2ad5a7edd1f26",
                "sha256": "54ecc7cf30d132c1243607888aadf97a963591402ba5376d8a35ebfd2ec75b7e"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ada626646ec7c7e915c2ad5a7edd1f26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 481571,
            "upload_time": "2024-02-03T22:44:29",
            "upload_time_iso_8601": "2024-02-03T22:44:29.049279Z",
            "url": "https://files.pythonhosted.org/packages/c2/dd/e65fa47ad70062cd587ce6387eb15f55dd2318f10317ad1f68116ed43d77/cydifflib-1.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7bc4f6216633c84354f55b24e3d49424725d2f25a9b1c4870970254d1d5956f",
                "md5": "5e0a56dba6366ac916796c7e4448ef66",
                "sha256": "3adb4f5e80ebc483e44539c5a29246eb6ad8fca76e33a1b56eca0809b88c69ce"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5e0a56dba6366ac916796c7e4448ef66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 500023,
            "upload_time": "2024-02-03T22:44:31",
            "upload_time_iso_8601": "2024-02-03T22:44:31.248279Z",
            "url": "https://files.pythonhosted.org/packages/c7/bc/4f6216633c84354f55b24e3d49424725d2f25a9b1c4870970254d1d5956f/cydifflib-1.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e323262d38710c3263ec00bb44077176b9af89e179d386f24303d6bc2dbc4159",
                "md5": "de1ddda8bb575ea47a6ffd40ae0d285b",
                "sha256": "dbed1934f6b7e453ebe8a015cc5cb26f9e9fccaaa4f43c70a35b2811d41ff5a1"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "de1ddda8bb575ea47a6ffd40ae0d285b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 475021,
            "upload_time": "2024-02-03T22:44:33",
            "upload_time_iso_8601": "2024-02-03T22:44:33.409373Z",
            "url": "https://files.pythonhosted.org/packages/e3/23/262d38710c3263ec00bb44077176b9af89e179d386f24303d6bc2dbc4159/cydifflib-1.1.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c97dd72e76314a8314416cac70eedf8c6b341ff00b64eb187e85558be5dcbb8",
                "md5": "14e2a70cc86dd5c487bc4df06eb2c798",
                "sha256": "ec99090116bd92200088d1e0c9eab0388e40f408c57bd289683bd2b0cdf70aa4"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "14e2a70cc86dd5c487bc4df06eb2c798",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 743692,
            "upload_time": "2024-02-03T22:44:35",
            "upload_time_iso_8601": "2024-02-03T22:44:35.451390Z",
            "url": "https://files.pythonhosted.org/packages/9c/97/dd72e76314a8314416cac70eedf8c6b341ff00b64eb187e85558be5dcbb8/cydifflib-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d69f3cb121b8785a1949cdc2e6bb4d27199b3e92684b8fd3d0a7a5b81960063d",
                "md5": "35f7fe7e36ee79e7348aa5d63a9b8fab",
                "sha256": "f895058f07c075fdc87ef17f556df4103e1e2bd674101b5cb6606404939e1752"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35f7fe7e36ee79e7348aa5d63a9b8fab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 539374,
            "upload_time": "2024-02-03T22:44:36",
            "upload_time_iso_8601": "2024-02-03T22:44:36.700867Z",
            "url": "https://files.pythonhosted.org/packages/d6/9f/3cb121b8785a1949cdc2e6bb4d27199b3e92684b8fd3d0a7a5b81960063d/cydifflib-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f37384083dd18e730c8207caa6a8942ada754351675a229e87c9166df2749a3",
                "md5": "bf9be720f95d4e64b02696fd524b8587",
                "sha256": "f9d93b38e8f5f4656f2ef00ef7301771fb750bb4a329c0a144db01d5e8c05da2"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bf9be720f95d4e64b02696fd524b8587",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 528100,
            "upload_time": "2024-02-03T22:44:39",
            "upload_time_iso_8601": "2024-02-03T22:44:39.281472Z",
            "url": "https://files.pythonhosted.org/packages/5f/37/384083dd18e730c8207caa6a8942ada754351675a229e87c9166df2749a3/cydifflib-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77c7d4f0889270ac22dd1bf45d2bc9d5453d0511107a071907a7f7ea647a5872",
                "md5": "6367c03ad3a2d54fb42d9415e89f261f",
                "sha256": "a74341ce4c85145550ff1ca4abcf07882b9bd6c66d979fbdbd4d432f14a59694"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6367c03ad3a2d54fb42d9415e89f261f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 570956,
            "upload_time": "2024-02-03T22:44:41",
            "upload_time_iso_8601": "2024-02-03T22:44:41.491484Z",
            "url": "https://files.pythonhosted.org/packages/77/c7/d4f0889270ac22dd1bf45d2bc9d5453d0511107a071907a7f7ea647a5872/cydifflib-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "868584d63b975d4dc101fdf59f3a90865b4a1470b6b0d59335792db2e614a4f3",
                "md5": "448ba6a72fdc3766826245ee8a88d33c",
                "sha256": "3df7f7f6e0f18e0a780cbbaeafe286715ff2c0f71403cc73985836125144e5e0"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "448ba6a72fdc3766826245ee8a88d33c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 604214,
            "upload_time": "2024-02-03T22:44:42",
            "upload_time_iso_8601": "2024-02-03T22:44:42.952195Z",
            "url": "https://files.pythonhosted.org/packages/86/85/84d63b975d4dc101fdf59f3a90865b4a1470b6b0d59335792db2e614a4f3/cydifflib-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d081e837a3ec2232e77a376f2d8ae240ff37c01d2cfbb39e2726220c41cbc3c9",
                "md5": "d45047f919de097848bed4cb00cf1154",
                "sha256": "75457f5230814a211d0923195b7fbd62c7194fed8d04bdaaf67fa6dba52fad48"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d45047f919de097848bed4cb00cf1154",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 567086,
            "upload_time": "2024-02-03T22:44:44",
            "upload_time_iso_8601": "2024-02-03T22:44:44.416403Z",
            "url": "https://files.pythonhosted.org/packages/d0/81/e837a3ec2232e77a376f2d8ae240ff37c01d2cfbb39e2726220c41cbc3c9/cydifflib-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f73de01cdf4e4df81763a16f9de2c094087dc98f87f87cb63979524b81933fa5",
                "md5": "d028e1c48fe3bdbb72fa269ff97395e2",
                "sha256": "d1f1a354079432bf0497a7d38f53e787112a6d01926fb9f6f66aea2bc8ff4b13"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d028e1c48fe3bdbb72fa269ff97395e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 583689,
            "upload_time": "2024-02-03T22:44:46",
            "upload_time_iso_8601": "2024-02-03T22:44:46.533065Z",
            "url": "https://files.pythonhosted.org/packages/f7/3d/e01cdf4e4df81763a16f9de2c094087dc98f87f87cb63979524b81933fa5/cydifflib-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2008cd881301688388056109d6322a03c52f4578404a3c77f56b216075ce675",
                "md5": "61f51f2335e78c03dce920a426913403",
                "sha256": "7d4a3216f82d84cc5051b7916e48c970f9ebebe68dcebc588e0d255bf4f74662"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "61f51f2335e78c03dce920a426913403",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 591795,
            "upload_time": "2024-02-03T22:44:47",
            "upload_time_iso_8601": "2024-02-03T22:44:47.965444Z",
            "url": "https://files.pythonhosted.org/packages/b2/00/8cd881301688388056109d6322a03c52f4578404a3c77f56b216075ce675/cydifflib-1.1.0-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": "935ef89f26696c3b5e9ce68ba7137bc645e0aff6f8115c6167c714cae424f6a7",
                "md5": "b90b98acb687fc0c07f481d5da859e13",
                "sha256": "cbaf477e0f7eddc5f08bcb6286ea6076f97526d1b4be6b62742f387d9e417847"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b90b98acb687fc0c07f481d5da859e13",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1103234,
            "upload_time": "2024-02-03T22:44:49",
            "upload_time_iso_8601": "2024-02-03T22:44:49.376496Z",
            "url": "https://files.pythonhosted.org/packages/93/5e/f89f26696c3b5e9ce68ba7137bc645e0aff6f8115c6167c714cae424f6a7/cydifflib-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "882995e5cc6a7fb7ac524491856ac041be28513edf4a27c1acf34aac37c83dcc",
                "md5": "24ecee9f76038a843b966740c8e57b8e",
                "sha256": "2126e8e4404843c931f257540c6709e485f8768f8bd3998c35c09d9fb7938894"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "24ecee9f76038a843b966740c8e57b8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1185398,
            "upload_time": "2024-02-03T22:44:51",
            "upload_time_iso_8601": "2024-02-03T22:44:51.611071Z",
            "url": "https://files.pythonhosted.org/packages/88/29/95e5cc6a7fb7ac524491856ac041be28513edf4a27c1acf34aac37c83dcc/cydifflib-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "740cbbfb8168328f2e52a35908c89dd9bd057cf5cfb725315a64348093b44ca0",
                "md5": "47c3ff7397cf076db95b61ed32e4e940",
                "sha256": "8954a74599ba6d3c42b49b201de01ed54849e0bc347b8da4a99e02e0ce0e8423"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47c3ff7397cf076db95b61ed32e4e940",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1175906,
            "upload_time": "2024-02-03T22:44:53",
            "upload_time_iso_8601": "2024-02-03T22:44:53.923774Z",
            "url": "https://files.pythonhosted.org/packages/74/0c/bbfb8168328f2e52a35908c89dd9bd057cf5cfb725315a64348093b44ca0/cydifflib-1.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c747141bfacd6a0355414a52b9a9bb3ef6013972e0d2d7a11e80f2d75d3b81dc",
                "md5": "4dcd7847b3616e299bd1e92a91de5c22",
                "sha256": "8111cae715178813442e39c6881226136bf8b48a16e921dcb98e13bd61f1b354"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "4dcd7847b3616e299bd1e92a91de5c22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1166252,
            "upload_time": "2024-02-03T22:44:55",
            "upload_time_iso_8601": "2024-02-03T22:44:55.385773Z",
            "url": "https://files.pythonhosted.org/packages/c7/47/141bfacd6a0355414a52b9a9bb3ef6013972e0d2d7a11e80f2d75d3b81dc/cydifflib-1.1.0-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "682e8a65a17b7a6f03162f6302b9f50ff41a69523cc8848efa0948093937b20b",
                "md5": "7a8baffcbf3e6c1c6a3d7d7d9baba102",
                "sha256": "6455c5ccbba1b518c146c167ade444bc2f6ae3b19f480f8fd2bf43c495d028a0"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a8baffcbf3e6c1c6a3d7d7d9baba102",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1127269,
            "upload_time": "2024-02-03T22:44:57",
            "upload_time_iso_8601": "2024-02-03T22:44:57.583950Z",
            "url": "https://files.pythonhosted.org/packages/68/2e/8a65a17b7a6f03162f6302b9f50ff41a69523cc8848efa0948093937b20b/cydifflib-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eda161cfda4527b941cddf1e3ee64985c0a9c44c749b82bd7d85e33f7053d7b7",
                "md5": "8f5dbf339b07f49ee7687556067fbd78",
                "sha256": "84bff691a0c7838042e8f055310ace53e8c27ed5bb6037e0e97255caa3bd72bc"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8f5dbf339b07f49ee7687556067fbd78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 480995,
            "upload_time": "2024-02-03T22:44:59",
            "upload_time_iso_8601": "2024-02-03T22:44:59.093783Z",
            "url": "https://files.pythonhosted.org/packages/ed/a1/61cfda4527b941cddf1e3ee64985c0a9c44c749b82bd7d85e33f7053d7b7/cydifflib-1.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e4df466900a05b584fd0fbf20d22f4a18ad5f482a40714e2f13671b44d19a16",
                "md5": "2e956e38f2ab653fa1164924bb989ad9",
                "sha256": "50c9c80748f92957c98fc101a5075b1cc52f6628865d54eaac0f0d9168627b18"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2e956e38f2ab653fa1164924bb989ad9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 501375,
            "upload_time": "2024-02-03T22:45:01",
            "upload_time_iso_8601": "2024-02-03T22:45:01.364795Z",
            "url": "https://files.pythonhosted.org/packages/4e/4d/f466900a05b584fd0fbf20d22f4a18ad5f482a40714e2f13671b44d19a16/cydifflib-1.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "041fe1a0bad8b48b0310e07b89da3fc5b0efe83a76b407374f58e42470e7eb96",
                "md5": "2a2a0054d8a1d47c2ddeeb353dcf41a0",
                "sha256": "023b80e68c74c035b2600c96b7b2229e83f58f1c1dab69bb655f27bf93a6ada1"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a2a0054d8a1d47c2ddeeb353dcf41a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 475598,
            "upload_time": "2024-02-03T22:45:03",
            "upload_time_iso_8601": "2024-02-03T22:45:03.249788Z",
            "url": "https://files.pythonhosted.org/packages/04/1f/e1a0bad8b48b0310e07b89da3fc5b0efe83a76b407374f58e42470e7eb96/cydifflib-1.1.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ee44ca58ec6bc242042599b6f54373051ca2b950ed47aa754101e94146b9406",
                "md5": "103fdcc0fbe7256a3cf4a6b69525e021",
                "sha256": "d05e3f89bb5f62357dca9375bab6dcbf3096db59c654afd9d1f118e5d49d24e9"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "103fdcc0fbe7256a3cf4a6b69525e021",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 749196,
            "upload_time": "2024-02-03T22:45:04",
            "upload_time_iso_8601": "2024-02-03T22:45:04.831562Z",
            "url": "https://files.pythonhosted.org/packages/6e/e4/4ca58ec6bc242042599b6f54373051ca2b950ed47aa754101e94146b9406/cydifflib-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd4c17600735632b8be8c8a78918b1bb3c0d3485725c71495cdc7cc11c3f7a03",
                "md5": "983cd49b524c3b21ed202966501533d6",
                "sha256": "6883f510ce0d0fec525d088a7dc9659fc6eeea230d57e6c15541bacb26c9ba8f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "983cd49b524c3b21ed202966501533d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 542337,
            "upload_time": "2024-02-03T22:45:06",
            "upload_time_iso_8601": "2024-02-03T22:45:06.365575Z",
            "url": "https://files.pythonhosted.org/packages/dd/4c/17600735632b8be8c8a78918b1bb3c0d3485725c71495cdc7cc11c3f7a03/cydifflib-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62da9e2dc00200af921f1a817484b707a2b007dae1504fac351a9588b508a902",
                "md5": "2d65ba1888861ddcf6a212efce3f8080",
                "sha256": "ec4f8a3ad074c4c3b4c677317198186040b6d2581862f821a09443b7de729b7f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2d65ba1888861ddcf6a212efce3f8080",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 530355,
            "upload_time": "2024-02-03T22:45:07",
            "upload_time_iso_8601": "2024-02-03T22:45:07.939861Z",
            "url": "https://files.pythonhosted.org/packages/62/da/9e2dc00200af921f1a817484b707a2b007dae1504fac351a9588b508a902/cydifflib-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81a0e14fa307f44de3b95791bc98b581caf8c9809bc318fb06e0ed994a672f7b",
                "md5": "4bd4eeffb8d295505883f13fa45ad1c3",
                "sha256": "fae2335f77e95c9a8d0444e251ec27fdceb3db68f2702909765322c7c26aa98b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4bd4eeffb8d295505883f13fa45ad1c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 560983,
            "upload_time": "2024-02-03T22:45:09",
            "upload_time_iso_8601": "2024-02-03T22:45:09.377656Z",
            "url": "https://files.pythonhosted.org/packages/81/a0/e14fa307f44de3b95791bc98b581caf8c9809bc318fb06e0ed994a672f7b/cydifflib-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efdcec40346825d95f80cb052fc6d08cee888604d7c7afe0852a2fdd84ddc7e6",
                "md5": "413e9d88fd4f1d282f92760d6a6d1538",
                "sha256": "d69c9cd581d6eec050e124216c076a9123a88cdac96f97d47099bf1ee06fa24e"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "413e9d88fd4f1d282f92760d6a6d1538",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 591999,
            "upload_time": "2024-02-03T22:45:10",
            "upload_time_iso_8601": "2024-02-03T22:45:10.795463Z",
            "url": "https://files.pythonhosted.org/packages/ef/dc/ec40346825d95f80cb052fc6d08cee888604d7c7afe0852a2fdd84ddc7e6/cydifflib-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6b7dbf850b1d7c71df23ddda22a03f3113771aaac2f4441de67ad532ec8a07e",
                "md5": "413ad308f79a5b48206029ce130fb0e9",
                "sha256": "f0dc0cdb00630e0ba42b1560eccac6cd5c5c11eeac50174416a979c4a669b6e4"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "413ad308f79a5b48206029ce130fb0e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 560619,
            "upload_time": "2024-02-03T22:45:12",
            "upload_time_iso_8601": "2024-02-03T22:45:12.216034Z",
            "url": "https://files.pythonhosted.org/packages/b6/b7/dbf850b1d7c71df23ddda22a03f3113771aaac2f4441de67ad532ec8a07e/cydifflib-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9eb00d432c437a6cdb2fb566d325472792ecb2dd54c87fe6f8bc43d61fb4ff3",
                "md5": "74dd8b1430d636c9f5295e4c4b189046",
                "sha256": "3827e286402c7d7189beaaa693391952fb83e924cc3daea478558aa1aabb52b6"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74dd8b1430d636c9f5295e4c4b189046",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 578686,
            "upload_time": "2024-02-03T22:45:13",
            "upload_time_iso_8601": "2024-02-03T22:45:13.720393Z",
            "url": "https://files.pythonhosted.org/packages/c9/eb/00d432c437a6cdb2fb566d325472792ecb2dd54c87fe6f8bc43d61fb4ff3/cydifflib-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c9900ad0707750c8882a2411ffa869f23aa8d1f516ce6febb438adad374523c",
                "md5": "471690d85173839a23798f36cb210187",
                "sha256": "551de7841d530afaa62cfd7f74a20cacb5affacd90f64d2bf666f8682d299a76"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "471690d85173839a23798f36cb210187",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 584553,
            "upload_time": "2024-02-03T22:45:15",
            "upload_time_iso_8601": "2024-02-03T22:45:15.237256Z",
            "url": "https://files.pythonhosted.org/packages/2c/99/00ad0707750c8882a2411ffa869f23aa8d1f516ce6febb438adad374523c/cydifflib-1.1.0-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": "b0e0bc254ef267a1e957d9103a81c806ed7e560c58d2a2ba4f49a1c7c06496af",
                "md5": "dab94fefe7374cc986626b60575fb223",
                "sha256": "444993cacefff7111b97031e56aabba914d90c4da2d1a114f7210308b7f281af"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dab94fefe7374cc986626b60575fb223",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1095019,
            "upload_time": "2024-02-03T22:45:16",
            "upload_time_iso_8601": "2024-02-03T22:45:16.686209Z",
            "url": "https://files.pythonhosted.org/packages/b0/e0/bc254ef267a1e957d9103a81c806ed7e560c58d2a2ba4f49a1c7c06496af/cydifflib-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4ac2fb27694a3a97022d1b12e85c3cf6ca32c5373ac7bda82a0eafc23537128",
                "md5": "831e563acf3c0955e4a725fea00041da",
                "sha256": "a94ca672d7c8e31ea12ee6525d9428c10fd3f967481d6c4267975fbbabf8afe3"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "831e563acf3c0955e4a725fea00041da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1182356,
            "upload_time": "2024-02-03T22:45:18",
            "upload_time_iso_8601": "2024-02-03T22:45:18.195563Z",
            "url": "https://files.pythonhosted.org/packages/a4/ac/2fb27694a3a97022d1b12e85c3cf6ca32c5373ac7bda82a0eafc23537128/cydifflib-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c903e89b336cb950e43c7ecf65edd04ca9fb71c9a4ecd85881254069fb22fcad",
                "md5": "058d008b9fac8faf4aeee59ac97d1fb9",
                "sha256": "a7478adbe4696d477853dbc3c77e9ae671b0a07b64a41f9cef0ca3c6680b52c2"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "058d008b9fac8faf4aeee59ac97d1fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1164946,
            "upload_time": "2024-02-03T22:45:20",
            "upload_time_iso_8601": "2024-02-03T22:45:20.584111Z",
            "url": "https://files.pythonhosted.org/packages/c9/03/e89b336cb950e43c7ecf65edd04ca9fb71c9a4ecd85881254069fb22fcad/cydifflib-1.1.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22e19085d139df020fc9b6e6b062b035b3bdaaee8d3c4e2824ee5401205dc40b",
                "md5": "988a16567c7405473850f894f01e3b8a",
                "sha256": "c326a1d43065be143da251fb0d720cd00592bb9b8b79134beefff1fe5e62a81f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "988a16567c7405473850f894f01e3b8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1158866,
            "upload_time": "2024-02-03T22:45:22",
            "upload_time_iso_8601": "2024-02-03T22:45:22.520690Z",
            "url": "https://files.pythonhosted.org/packages/22/e1/9085d139df020fc9b6e6b062b035b3bdaaee8d3c4e2824ee5401205dc40b/cydifflib-1.1.0-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23f15eb09f1e6a22e510ba420bef9a1fe7553ee37d96679e978551da5c8a41e3",
                "md5": "9872ff6d1b7ea4d1563c871701496b0a",
                "sha256": "eb8a5300570b9c62c47c366663cbe4db1992476ec8e423d6b7a66f8939a97d93"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9872ff6d1b7ea4d1563c871701496b0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1120825,
            "upload_time": "2024-02-03T22:45:24",
            "upload_time_iso_8601": "2024-02-03T22:45:24.125866Z",
            "url": "https://files.pythonhosted.org/packages/23/f1/5eb09f1e6a22e510ba420bef9a1fe7553ee37d96679e978551da5c8a41e3/cydifflib-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d407f6bf4f62f0397733050c1c6cbd78fd95d0978e8770af254cabdc3740d0e",
                "md5": "967eea0f7d6bea653967bdf71a6ea335",
                "sha256": "3a9c8a4937fee10d4e38d3f9f51c1da8fbdbc8e702c10c98d449755eba76832b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "967eea0f7d6bea653967bdf71a6ea335",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 479924,
            "upload_time": "2024-02-03T22:45:26",
            "upload_time_iso_8601": "2024-02-03T22:45:26.759701Z",
            "url": "https://files.pythonhosted.org/packages/6d/40/7f6bf4f62f0397733050c1c6cbd78fd95d0978e8770af254cabdc3740d0e/cydifflib-1.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91155fa0ace607d129b804161102d35e8e39193ae3495db9f23c56abb074d446",
                "md5": "c51ad7a71d5ee3793e3eef137ef88350",
                "sha256": "77eb9885e8f1e204b5a10e5ae7530111f656d4d7436814ed9cdec0d9a5c3b664"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c51ad7a71d5ee3793e3eef137ef88350",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 501929,
            "upload_time": "2024-02-03T22:45:28",
            "upload_time_iso_8601": "2024-02-03T22:45:28.346695Z",
            "url": "https://files.pythonhosted.org/packages/91/15/5fa0ace607d129b804161102d35e8e39193ae3495db9f23c56abb074d446/cydifflib-1.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0526d2f1db0d9c5aa0698cfe0b2e4c86ef82400c14161018a67510cfce31f9b",
                "md5": "24458e951216d11b5c2727f6c186f104",
                "sha256": "8579aafd1e95a44bddd23a33fa0443d90e8c3e22f1d73fe15fbf763cc47e36b4"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "24458e951216d11b5c2727f6c186f104",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 476304,
            "upload_time": "2024-02-03T22:45:29",
            "upload_time_iso_8601": "2024-02-03T22:45:29.673828Z",
            "url": "https://files.pythonhosted.org/packages/f0/52/6d2f1db0d9c5aa0698cfe0b2e4c86ef82400c14161018a67510cfce31f9b/cydifflib-1.1.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ded7f0544c47e5e5772b59bc177cccfcf6d8095fef0e9554180b0888695cfc8",
                "md5": "3f8f1f0e3a5462908fc1d0e05424aec9",
                "sha256": "3811605aa5de4e3cd72b56abdf678b84470cf99f6cb7f097fbc23ef82cff7625"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3f8f1f0e3a5462908fc1d0e05424aec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 743111,
            "upload_time": "2024-02-03T22:45:31",
            "upload_time_iso_8601": "2024-02-03T22:45:31.887090Z",
            "url": "https://files.pythonhosted.org/packages/6d/ed/7f0544c47e5e5772b59bc177cccfcf6d8095fef0e9554180b0888695cfc8/cydifflib-1.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e427cdaa5301d7dd7f937eed038ccfeffa6a56194157f9405fec52be8a3e17d9",
                "md5": "2839d49978c8bc49b396f5f4f0f2aa53",
                "sha256": "271727073001b7a6ccdfa964c6fdafeaf28132e478b95d4f8d2354b14933ff17"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2839d49978c8bc49b396f5f4f0f2aa53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 539165,
            "upload_time": "2024-02-03T22:45:33",
            "upload_time_iso_8601": "2024-02-03T22:45:33.432639Z",
            "url": "https://files.pythonhosted.org/packages/e4/27/cdaa5301d7dd7f937eed038ccfeffa6a56194157f9405fec52be8a3e17d9/cydifflib-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "377df766042766bc6fef8fb1a2ead2e0efce93feefe8ca1b6531ec8be7c3c03d",
                "md5": "1cfabc1ffa1a32bcfc2b2ec793ad4fd3",
                "sha256": "5ae3cf2bfd5934935f288c050740bc65df3c64be9ba63497a7431c7ce0d83acd"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1cfabc1ffa1a32bcfc2b2ec793ad4fd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 527601,
            "upload_time": "2024-02-03T22:45:34",
            "upload_time_iso_8601": "2024-02-03T22:45:34.809269Z",
            "url": "https://files.pythonhosted.org/packages/37/7d/f766042766bc6fef8fb1a2ead2e0efce93feefe8ca1b6531ec8be7c3c03d/cydifflib-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7368f4e454b0c521f9b9c07ba12bee158800594678bc100c8494a3a8ae5af917",
                "md5": "f6701e58ed2984ec45697c006d2b5499",
                "sha256": "f7b9c40770c2351de1e3a90aea7660b78e9e8466682aa12f0a155f7e12d6b9fe"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f6701e58ed2984ec45697c006d2b5499",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 571803,
            "upload_time": "2024-02-03T22:45:36",
            "upload_time_iso_8601": "2024-02-03T22:45:36.228327Z",
            "url": "https://files.pythonhosted.org/packages/73/68/f4e454b0c521f9b9c07ba12bee158800594678bc100c8494a3a8ae5af917/cydifflib-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d54e22422000d268417e521fd0830f8df66eaa37bf59836e6209dd3637dd71a2",
                "md5": "da36f53b732e8fe924bb7570e90dce2c",
                "sha256": "ee83b5b2961b67ccae6e79cbfb176e8702ddadfbfa43c2c879718d0da93c4a2d"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da36f53b732e8fe924bb7570e90dce2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 603862,
            "upload_time": "2024-02-03T22:45:37",
            "upload_time_iso_8601": "2024-02-03T22:45:37.725881Z",
            "url": "https://files.pythonhosted.org/packages/d5/4e/22422000d268417e521fd0830f8df66eaa37bf59836e6209dd3637dd71a2/cydifflib-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16ea3be72309c1cb533186b10d99c7ddc025d107e9e27c50c653186a2aa92d3a",
                "md5": "31bc1dcaba0dc10631aa0eb5ab5a550c",
                "sha256": "8f2d70e18a3491fdf12bc0d8d561a8008e2dcf2f01d0074a6216bce5e644ed6e"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "31bc1dcaba0dc10631aa0eb5ab5a550c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 569497,
            "upload_time": "2024-02-03T22:45:39",
            "upload_time_iso_8601": "2024-02-03T22:45:39.191184Z",
            "url": "https://files.pythonhosted.org/packages/16/ea/3be72309c1cb533186b10d99c7ddc025d107e9e27c50c653186a2aa92d3a/cydifflib-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cccedda280c72630f31c1b5b94f0de1b2e41302b1067510c427b4f77b430010",
                "md5": "33edd35b81bbc691431ec399ad1b3ade",
                "sha256": "3ceff98ecd780b573195ea4e151163c42c1334c64caa2e19836d73c8bb601eda"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33edd35b81bbc691431ec399ad1b3ade",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 586889,
            "upload_time": "2024-02-03T22:45:40",
            "upload_time_iso_8601": "2024-02-03T22:45:40.729700Z",
            "url": "https://files.pythonhosted.org/packages/1c/cc/edda280c72630f31c1b5b94f0de1b2e41302b1067510c427b4f77b430010/cydifflib-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a609d43277d491fc3e267707421e682e67d5b505505ed3b257de32385b11486d",
                "md5": "c4047a90ff8fe05a5bd8fe4df717956c",
                "sha256": "09c4a45be6d96db2fa6477cce6ccab418d4d7ea5b20375a733b8ad44e01fd832"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c4047a90ff8fe05a5bd8fe4df717956c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 594156,
            "upload_time": "2024-02-03T22:45:42",
            "upload_time_iso_8601": "2024-02-03T22:45:42.232058Z",
            "url": "https://files.pythonhosted.org/packages/a6/09/d43277d491fc3e267707421e682e67d5b505505ed3b257de32385b11486d/cydifflib-1.1.0-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": "e9770a7ef124cd93380c7ecfb9d5c04400cfefd451d891813a49ce2c533853ef",
                "md5": "b3213badc5eedb0b54fda94929ae10b9",
                "sha256": "12ea68dbd483230c47c11d3451c788fd34ca5af85f0f8be2378024bd02eb13de"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3213badc5eedb0b54fda94929ae10b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1106254,
            "upload_time": "2024-02-03T22:45:44",
            "upload_time_iso_8601": "2024-02-03T22:45:44.635671Z",
            "url": "https://files.pythonhosted.org/packages/e9/77/0a7ef124cd93380c7ecfb9d5c04400cfefd451d891813a49ce2c533853ef/cydifflib-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b44bb48d371f402f2a63ee548ed709d80ba4289a2a36c43872a663505c71cbda",
                "md5": "18963340f070588a5749c8ebdbabe60b",
                "sha256": "820c6b9e1f8ab316b115cfb666a48d9cda48a848e44e7582cb0762dfe2c3c990"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "18963340f070588a5749c8ebdbabe60b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1190034,
            "upload_time": "2024-02-03T22:45:46",
            "upload_time_iso_8601": "2024-02-03T22:45:46.869300Z",
            "url": "https://files.pythonhosted.org/packages/b4/4b/b48d371f402f2a63ee548ed709d80ba4289a2a36c43872a663505c71cbda/cydifflib-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c6d7aaf5a7deda522beba23583268ec6970924c68d3695c283fdd456e21c11b",
                "md5": "3233065a79ad7bc9c8cf26b4bd4bc615",
                "sha256": "8df5b90161b4e13bd190fdb41756d95a9249e02c366af77f558c5dccdcbf3ee4"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3233065a79ad7bc9c8cf26b4bd4bc615",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1177441,
            "upload_time": "2024-02-03T22:45:48",
            "upload_time_iso_8601": "2024-02-03T22:45:48.407819Z",
            "url": "https://files.pythonhosted.org/packages/9c/6d/7aaf5a7deda522beba23583268ec6970924c68d3695c283fdd456e21c11b/cydifflib-1.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3e126230b1df2671357ff9f75144f79e744ddfe402a6a810fa969332f647109",
                "md5": "bfa301ada30643d4e946ffa6328189a7",
                "sha256": "e1f861ea884e81aef18a337e3c830b33c7052fee1ab7f9d950e33dad680948db"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "bfa301ada30643d4e946ffa6328189a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1167543,
            "upload_time": "2024-02-03T22:45:49",
            "upload_time_iso_8601": "2024-02-03T22:45:49.958799Z",
            "url": "https://files.pythonhosted.org/packages/f3/e1/26230b1df2671357ff9f75144f79e744ddfe402a6a810fa969332f647109/cydifflib-1.1.0-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f39034dd4278aeeaad8550b91788e9fd3aa845122d3321fe7b5161ac518d2ea",
                "md5": "9c9be3286f7b92a74d002aaf9db8e140",
                "sha256": "f42b8c486c55b5f04e0127c9bae605adfba141402a60e55de99a430bb8aa43f7"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c9be3286f7b92a74d002aaf9db8e140",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1131236,
            "upload_time": "2024-02-03T22:45:51",
            "upload_time_iso_8601": "2024-02-03T22:45:51.511398Z",
            "url": "https://files.pythonhosted.org/packages/0f/39/034dd4278aeeaad8550b91788e9fd3aa845122d3321fe7b5161ac518d2ea/cydifflib-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34c6b38be7ec4edf1085ba7ca552101089660b6f465f756b08a2b939ec8f3386",
                "md5": "9824d6234d89167f443ba3759f4af70f",
                "sha256": "d9d6c0f473677da4b48990601ea18da4eba795a25a2a507fbd9b424ec83df96f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "9824d6234d89167f443ba3759f4af70f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 479531,
            "upload_time": "2024-02-03T22:45:52",
            "upload_time_iso_8601": "2024-02-03T22:45:52.903905Z",
            "url": "https://files.pythonhosted.org/packages/34/c6/b38be7ec4edf1085ba7ca552101089660b6f465f756b08a2b939ec8f3386/cydifflib-1.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7a2428b598d040cdd9fe8a894e6fd040f4faa14cba6f9fbb417e40f86ed1eec",
                "md5": "0c725433802c50900cf637c5e4e1bf46",
                "sha256": "323b39072b3896b83e7411fb01d7e99f4ca9cc013c08cddce14aa0fd21ab2c2d"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0c725433802c50900cf637c5e4e1bf46",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 501019,
            "upload_time": "2024-02-03T22:45:54",
            "upload_time_iso_8601": "2024-02-03T22:45:54.269130Z",
            "url": "https://files.pythonhosted.org/packages/b7/a2/428b598d040cdd9fe8a894e6fd040f4faa14cba6f9fbb417e40f86ed1eec/cydifflib-1.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "358bef6d12e2a974e0577d78567954687df1a9d7bc2ff3239bc84233b6ce9ac6",
                "md5": "ab46b1ce17258730fec1e86c9cf91534",
                "sha256": "fde98eb5639388ce1a0c2f58d6e390e3662fc980b1e17ef793019d798a570676"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ab46b1ce17258730fec1e86c9cf91534",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 744796,
            "upload_time": "2024-02-03T22:45:56",
            "upload_time_iso_8601": "2024-02-03T22:45:56.320112Z",
            "url": "https://files.pythonhosted.org/packages/35/8b/ef6d12e2a974e0577d78567954687df1a9d7bc2ff3239bc84233b6ce9ac6/cydifflib-1.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2cfdef4e6a7089312a8941ae4299e4a3c7bd1e87af33c0dfb44ed48e17b3ed1",
                "md5": "89c228494b14bb1abd30d880a683e003",
                "sha256": "1d8d0cdf6a7343ac98b2812a01fd5619a76b5a68ab5d2b05498a25d2348ebec3"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89c228494b14bb1abd30d880a683e003",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 540026,
            "upload_time": "2024-02-03T22:45:58",
            "upload_time_iso_8601": "2024-02-03T22:45:58.042153Z",
            "url": "https://files.pythonhosted.org/packages/a2/cf/def4e6a7089312a8941ae4299e4a3c7bd1e87af33c0dfb44ed48e17b3ed1/cydifflib-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a247075ccb15f98d89633abf9a713675638bc0804152709657cb2047eaba98b8",
                "md5": "f08f69c5af8fa3ed7b0ec4e1b055eb41",
                "sha256": "5ca799cccdc2712d057b6e55361e41a655a9aecacf96143a7d2dc4d3af0e2a37"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f08f69c5af8fa3ed7b0ec4e1b055eb41",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 528383,
            "upload_time": "2024-02-03T22:45:59",
            "upload_time_iso_8601": "2024-02-03T22:45:59.958913Z",
            "url": "https://files.pythonhosted.org/packages/a2/47/075ccb15f98d89633abf9a713675638bc0804152709657cb2047eaba98b8/cydifflib-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dee27f37d0a302d5510db06eec248336a34b1524432d264595d31c4e03786ceb",
                "md5": "f9d3f29c72a794e9c97f8dbc00a57ae7",
                "sha256": "4501614f983f3a544d1616e001f2dfdca9c6023095a78ec252f0cef9da4e776f"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9d3f29c72a794e9c97f8dbc00a57ae7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 570092,
            "upload_time": "2024-02-03T22:46:01",
            "upload_time_iso_8601": "2024-02-03T22:46:01.871474Z",
            "url": "https://files.pythonhosted.org/packages/de/e2/7f37d0a302d5510db06eec248336a34b1524432d264595d31c4e03786ceb/cydifflib-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13a151932d24a0b60676a99c15a71d10440f49d70b53cce04106936f32a00b38",
                "md5": "d369068ff2ef687c6daa8654388dc55b",
                "sha256": "bd740be24f16472410f52d731cc1206b4e53afb5d706e1ab57cf06ea6c907661"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d369068ff2ef687c6daa8654388dc55b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 603005,
            "upload_time": "2024-02-03T22:46:03",
            "upload_time_iso_8601": "2024-02-03T22:46:03.505772Z",
            "url": "https://files.pythonhosted.org/packages/13/a1/51932d24a0b60676a99c15a71d10440f49d70b53cce04106936f32a00b38/cydifflib-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0259c95831143a53f926c8748b04abe2d4485ae739c51fec4f73eb03883ae4e3",
                "md5": "d38b201871c85203882fe0e180c5ec25",
                "sha256": "0f50d2200df2fd69c6795f677ac55104c16136a3958ab2d690cb0fc4549cb524"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d38b201871c85203882fe0e180c5ec25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 567832,
            "upload_time": "2024-02-03T22:46:05",
            "upload_time_iso_8601": "2024-02-03T22:46:05.015339Z",
            "url": "https://files.pythonhosted.org/packages/02/59/c95831143a53f926c8748b04abe2d4485ae739c51fec4f73eb03883ae4e3/cydifflib-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "074b9a3a9ed918b6e4810983554b9e8217de236366e046df93252ff18881c024",
                "md5": "1534e4a11912cd154e6ba1dc34144110",
                "sha256": "fda0105ac7dc44dc746c9c80bb2dd012810eaf5e0dc4f861911d2e822b8a449d"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1534e4a11912cd154e6ba1dc34144110",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 584620,
            "upload_time": "2024-02-03T22:46:06",
            "upload_time_iso_8601": "2024-02-03T22:46:06.456163Z",
            "url": "https://files.pythonhosted.org/packages/07/4b/9a3a9ed918b6e4810983554b9e8217de236366e046df93252ff18881c024/cydifflib-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3264be1dc4cfc591dbcfffe2c911603e8e39461188ba36af56a611d74221bab",
                "md5": "139b960d1f8c09b44ca295ba9bdcf27b",
                "sha256": "f8c570727bf76a7ba4da8d6e70f16158422d6af08d89b2dc524205c06d0ed63b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "139b960d1f8c09b44ca295ba9bdcf27b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 593268,
            "upload_time": "2024-02-03T22:46:08",
            "upload_time_iso_8601": "2024-02-03T22:46:08.597428Z",
            "url": "https://files.pythonhosted.org/packages/f3/26/4be1dc4cfc591dbcfffe2c911603e8e39461188ba36af56a611d74221bab/cydifflib-1.1.0-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": "4412aae86d6f7b7b5212b9067bf8a025d3b26a6dc2b88c93c1f9f7fc3cb86fe5",
                "md5": "890cd95f482c14dd0f1ec6d75c2bb6b1",
                "sha256": "fa0df6651d605e0cdbdfb6760142385f5b414a1b3667b3a1c920d37ed9598a04"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "890cd95f482c14dd0f1ec6d75c2bb6b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1104017,
            "upload_time": "2024-02-03T22:46:10",
            "upload_time_iso_8601": "2024-02-03T22:46:10.022067Z",
            "url": "https://files.pythonhosted.org/packages/44/12/aae86d6f7b7b5212b9067bf8a025d3b26a6dc2b88c93c1f9f7fc3cb86fe5/cydifflib-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47cd06ae12cfd5acb64e5584d8c5e90de031782962b812791cb4327656a89fc0",
                "md5": "55b494dfacde8c0a8e7431e83bba9ab0",
                "sha256": "1650047cd1ba888069666c3dd3ff28f51aa5e7c1bd6856735716d5c6da77f330"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "55b494dfacde8c0a8e7431e83bba9ab0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1185360,
            "upload_time": "2024-02-03T22:46:12",
            "upload_time_iso_8601": "2024-02-03T22:46:12.240373Z",
            "url": "https://files.pythonhosted.org/packages/47/cd/06ae12cfd5acb64e5584d8c5e90de031782962b812791cb4327656a89fc0/cydifflib-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81301c509a6d8fae3a7b957b1c159a68252badad197cb6ba8972b58f7ff5a51d",
                "md5": "39bad690b8dd6dfcd1c36d3d7f3f1ab2",
                "sha256": "2908482de33dae859c5c19a8dd98c690027784a1cef391c44c0fc1ac0a39e660"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "39bad690b8dd6dfcd1c36d3d7f3f1ab2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1173677,
            "upload_time": "2024-02-03T22:46:14",
            "upload_time_iso_8601": "2024-02-03T22:46:14.444375Z",
            "url": "https://files.pythonhosted.org/packages/81/30/1c509a6d8fae3a7b957b1c159a68252badad197cb6ba8972b58f7ff5a51d/cydifflib-1.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "942532506dde89c21bd6001da277f688658e0e3feb9ed4fdbfb722ce61e073bd",
                "md5": "ff35c26fa92f294b251488beb90fb3ee",
                "sha256": "a1a3c71ab203db64b135362ebecf37a3162937e9252d74a5de3bbbc3ea5a4bb5"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "ff35c26fa92f294b251488beb90fb3ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1164700,
            "upload_time": "2024-02-03T22:46:16",
            "upload_time_iso_8601": "2024-02-03T22:46:16.327535Z",
            "url": "https://files.pythonhosted.org/packages/94/25/32506dde89c21bd6001da277f688658e0e3feb9ed4fdbfb722ce61e073bd/cydifflib-1.1.0-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "535e398255eb17f713f45350d2612d8655b5cd0d4f6c6c028c43199d44c749b0",
                "md5": "635357bd463265af643bebb9770d2a4a",
                "sha256": "aa63db6c6cf59bd20f076d2537b12448e5a4220358d3b2302055078e1265f81c"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "635357bd463265af643bebb9770d2a4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1129144,
            "upload_time": "2024-02-03T22:46:17",
            "upload_time_iso_8601": "2024-02-03T22:46:17.831388Z",
            "url": "https://files.pythonhosted.org/packages/53/5e/398255eb17f713f45350d2612d8655b5cd0d4f6c6c028c43199d44c749b0/cydifflib-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e46140c145bc5d9c7e96c6e959ed0d2afbc8ed1b2aa855b2a6aeb3cc3c02e67",
                "md5": "bb44e4a45973ae71223016f2c901680e",
                "sha256": "442b433abaae3821c192d2d9c42edb01637883ff471411f457f19f21b427202b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "bb44e4a45973ae71223016f2c901680e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 481117,
            "upload_time": "2024-02-03T22:46:19",
            "upload_time_iso_8601": "2024-02-03T22:46:19.227467Z",
            "url": "https://files.pythonhosted.org/packages/5e/46/140c145bc5d9c7e96c6e959ed0d2afbc8ed1b2aa855b2a6aeb3cc3c02e67/cydifflib-1.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd8d632f8b3ad367ba953e640635ac87198fd6d5f3ed969f56458117db005734",
                "md5": "b75b620103c68c28cda96deda80dafdd",
                "sha256": "8d6ebeee6e480908188388a56e3670097bd529a0ac99027c814bfc58a0213ca7"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b75b620103c68c28cda96deda80dafdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 500139,
            "upload_time": "2024-02-03T22:46:20",
            "upload_time_iso_8601": "2024-02-03T22:46:20.770606Z",
            "url": "https://files.pythonhosted.org/packages/dd/8d/632f8b3ad367ba953e640635ac87198fd6d5f3ed969f56458117db005734/cydifflib-1.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b299190813dfbaa98b3dd176ecf7458dd5507e29526d3374fc147cd124104bda",
                "md5": "c358805bd6ea62a1d5e3c49d82a1cd7f",
                "sha256": "5502a7ec0580fe64b28250ab61c3c46b6c2ad58bb1e10cdceabfe94d5f84bdc6"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c358805bd6ea62a1d5e3c49d82a1cd7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 474732,
            "upload_time": "2024-02-03T22:46:22",
            "upload_time_iso_8601": "2024-02-03T22:46:22.152533Z",
            "url": "https://files.pythonhosted.org/packages/b2/99/190813dfbaa98b3dd176ecf7458dd5507e29526d3374fc147cd124104bda/cydifflib-1.1.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a362b837816978d3e56821b63fa2c5e108026b6fd071a7dae0cd1555b1131a32",
                "md5": "664c8ff91a3413dbf7386eb4a4d3bf37",
                "sha256": "72a5bea8845c4d361ada3a1d0805e2971024c416ef7bd53445ff18e029c82e0a"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "664c8ff91a3413dbf7386eb4a4d3bf37",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 517839,
            "upload_time": "2024-02-03T22:46:24",
            "upload_time_iso_8601": "2024-02-03T22:46:24.496079Z",
            "url": "https://files.pythonhosted.org/packages/a3/62/b837816978d3e56821b63fa2c5e108026b6fd071a7dae0cd1555b1131a32/cydifflib-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be54912ff0d2d8b9f2bc5194fba5f79ab3490e51933bf36be2855d07b0ce9a97",
                "md5": "e841422bd8dc62ac2deaa268c3b36916",
                "sha256": "ac1eb97fd4bc6483cd67ef300f5b5569a6dd2da137b9059a010bdd7ebafb2fba"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e841422bd8dc62ac2deaa268c3b36916",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 529186,
            "upload_time": "2024-02-03T22:46:26",
            "upload_time_iso_8601": "2024-02-03T22:46:26.016305Z",
            "url": "https://files.pythonhosted.org/packages/be/54/912ff0d2d8b9f2bc5194fba5f79ab3490e51933bf36be2855d07b0ce9a97/cydifflib-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c96448d9d6aee92125c78bc0d431b2566e1e88c16073abb6acd5ce2ab666423",
                "md5": "716a78da2c3f5573405b3f8c1db9c94e",
                "sha256": "0c4b99a501e6c2bdb1c071d9f3ed3c22b42ace04985166f2b3db8959e424d226"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "716a78da2c3f5573405b3f8c1db9c94e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 538259,
            "upload_time": "2024-02-03T22:46:27",
            "upload_time_iso_8601": "2024-02-03T22:46:27.495666Z",
            "url": "https://files.pythonhosted.org/packages/1c/96/448d9d6aee92125c78bc0d431b2566e1e88c16073abb6acd5ce2ab666423/cydifflib-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74a232b249874061b6f362cfbdc7241be14737aaf42d4486e73b5c56a33f5a6",
                "md5": "b367c696d74ba69dea82260f4de184dc",
                "sha256": "e55642068eff84da67657b430b79f0634599526d64cca0a5300b4b3156571e1a"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b367c696d74ba69dea82260f4de184dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 550834,
            "upload_time": "2024-02-03T22:46:28",
            "upload_time_iso_8601": "2024-02-03T22:46:28.915529Z",
            "url": "https://files.pythonhosted.org/packages/c7/4a/232b249874061b6f362cfbdc7241be14737aaf42d4486e73b5c56a33f5a6/cydifflib-1.1.0-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": "40789423b8e5468c35da99175d70647ee1a805c4cb2584f8de9643e1491f207c",
                "md5": "3b5dcfb45b615b0af0366d15e502cd6b",
                "sha256": "e7010322cdff29823d3ec102a5f7ed099f2e6b32dc5e403ba32027c76f638a8b"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b5dcfb45b615b0af0366d15e502cd6b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 497841,
            "upload_time": "2024-02-03T22:46:30",
            "upload_time_iso_8601": "2024-02-03T22:46:30.766687Z",
            "url": "https://files.pythonhosted.org/packages/40/78/9423b8e5468c35da99175d70647ee1a805c4cb2584f8de9643e1491f207c/cydifflib-1.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aff499cfb904c45b17f3c2b5813bb32750e0da35c00313a63118112aa4545dda",
                "md5": "01205748eb62fa8b8cbf543c92c7a958",
                "sha256": "c3e2178c071bbfdd91ac85779cbfbd1395d539fe56abbe2aa605d33b5da23a32"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01205748eb62fa8b8cbf543c92c7a958",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 516673,
            "upload_time": "2024-02-03T22:46:32",
            "upload_time_iso_8601": "2024-02-03T22:46:32.820962Z",
            "url": "https://files.pythonhosted.org/packages/af/f4/99cfb904c45b17f3c2b5813bb32750e0da35c00313a63118112aa4545dda/cydifflib-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0e0db3dc75dd2e06b8f837914ece3a2b58c0dfb10d74ab45db19d98ca43cfc6",
                "md5": "794c419be69c3c068bade028ccf8506d",
                "sha256": "5cd76c02c0d893cba616fc061cd2ccc52112e6723e87a563ffee08d7f5fcbf12"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "794c419be69c3c068bade028ccf8506d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 525917,
            "upload_time": "2024-02-03T22:46:34",
            "upload_time_iso_8601": "2024-02-03T22:46:34.481226Z",
            "url": "https://files.pythonhosted.org/packages/c0/e0/db3dc75dd2e06b8f837914ece3a2b58c0dfb10d74ab45db19d98ca43cfc6/cydifflib-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bb451e3d5140e8424f415121457db26dfec28a327bc47c15b9982ea0130b113",
                "md5": "d2a8cb5c8bdc74727bd07102567c7178",
                "sha256": "e2cd610ce7ab85e97844eb5ced01c32c515fcda356f28f91537dacedb4335c54"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2a8cb5c8bdc74727bd07102567c7178",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 536083,
            "upload_time": "2024-02-03T22:46:36",
            "upload_time_iso_8601": "2024-02-03T22:46:36.256366Z",
            "url": "https://files.pythonhosted.org/packages/5b/b4/51e3d5140e8424f415121457db26dfec28a327bc47c15b9982ea0130b113/cydifflib-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a9279959cd767e1723c771ffabf7a4ca4dea1b5ebe3478401b258c4a894afac",
                "md5": "912950ff61231fd88ce7243c3abdc9f8",
                "sha256": "7b109402fbadcd2fc7951e8362af99ab409644ee24fe3724aa1176b313d32ada"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "912950ff61231fd88ce7243c3abdc9f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 547399,
            "upload_time": "2024-02-03T22:46:37",
            "upload_time_iso_8601": "2024-02-03T22:46:37.845756Z",
            "url": "https://files.pythonhosted.org/packages/4a/92/79959cd767e1723c771ffabf7a4ca4dea1b5ebe3478401b258c4a894afac/cydifflib-1.1.0-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": "c073fc3280f4db0b09c640c409364de7b7baef940747f74babea6549229241c4",
                "md5": "dc7b5de9246535836e21a89ba90e4262",
                "sha256": "81839e764a32a8820873d44bee7a28dcc42d7f3c06df6d4803ee89334636b6c0"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc7b5de9246535836e21a89ba90e4262",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 497045,
            "upload_time": "2024-02-03T22:46:39",
            "upload_time_iso_8601": "2024-02-03T22:46:39.265501Z",
            "url": "https://files.pythonhosted.org/packages/c0/73/fc3280f4db0b09c640c409364de7b7baef940747f74babea6549229241c4/cydifflib-1.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d30b63fef9d613da18e1956ce80ad03d2c409cfd81ddbfd0e52444a523436a60",
                "md5": "049da632aa28eda8d214251e2eb2853e",
                "sha256": "9117957ed05944d51d6788580a9a0519f113532e76b4e8bfaf8ffb9eeeca2e8a"
            },
            "downloads": -1,
            "filename": "cydifflib-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "049da632aa28eda8d214251e2eb2853e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 309923,
            "upload_time": "2024-02-03T22:46:40",
            "upload_time_iso_8601": "2024-02-03T22:46:40.734436Z",
            "url": "https://files.pythonhosted.org/packages/d3/0b/63fef9d613da18e1956ce80ad03d2c409cfd81ddbfd0e52444a523436a60/cydifflib-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-03 22:46:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rapidfuzz",
    "github_project": "cydifflib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cydifflib"
}
        
Elapsed time: 0.21309s