python-bidi


Namepython-bidi JSON
Version 0.6.6 PyPI version JSON
download
home_pageNone
SummaryPython Bidi layout wrapping the Rust crate unicode-bidi
upload_time2025-02-18 21:43:05
maintainerNone
docs_urlNone
authorMeir Kriheli <mkriheli@gmail.com>
requires_pythonNone
licenseNone
keywords bidi unicode layout
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================
Python BiDi
===============================

`Bi-directional`_ (BiDi) layout for Python providing 2 implementations:

* V5 of the algorithm implemented with Python.
* Wrapper the `unicode-bidi`_ Rust crate.

`Package documentation`_

.. _Bi-directional: http://en.wikipedia.org/wiki/Bi-directional_text
.. _unicode-bidi: https://crates.io/crates/unicode-bidi
.. _Package documentation: http://python-bidi.readthedocs.org/en/latest/


For the python implementation, and compatible with previous versions, use::

    from bidi.algorithm import get_display


For the newer Rust based one, which seems to implement higher version of
the algorithm (albeit with some missing see #25), use the top level import::

    from bidi import get_display


API
----

The algorithm starts with a single entry point `get_display` (see above for selecting the implementaion).

**Required arguments:**

* ``str_or_bytes``: The string or bytes (i.e.: storage). If it's bytes
  use the optional argument ``encoding`` to specify it's encoding.

**Optional arguments:**

* ``encoding``: If unicode_or_str is a string, specifies the encoding. The
  algorithm uses unicodedata_ which requires unicode. This encoding will be
  used to decode and encode back to string before returning
  (default: "utf-8").

* ``base_dir``:  ``'L'`` or ``'R'``, override the calculated base_level.

* ``debug``: ``True`` to display the Unicode levels as seen by the algorithm
  (default: ``False``).


The Python implementaion adds one more optional argument:

* ``upper_is_rtl``: True to treat upper case chars as strong 'R' for
  debugging (default: False).


It returns the display layout, either as ``str`` or ``encoding`` encoded ``bytes``
(depending on the type of ``str_or_bytes'``).

.. _unicodedata: http://docs.python.org/library/unicodedata.html

Example::

    >>> from bidi import get_display
    >>> # keep as list with char per line to prevent browsers from changing display order
    >>> HELLO_HEB = "".join([
    ...     "ש",
    ...     "ל",
    ...     "ו",
    ...     "ם"
    ... ])
    >>>
    >>> HELLO_HEB_DISPLAY = "".join([
    ...     "ם",
    ...     "ו",
    ...     "ל",
    ...     "ש",
    ... ])
    >>>
    >>> get_display(HELLO_HEB) == HELLO_HEB_DISPLAY
    True


CLI
----

``pybidi`` is a command line utility (calling  ``bidi.main``) for running the
display algorithm. The script can get a string as a parameter or read text from
`stdin`.

Usage::

    $ pybidi -h
    usage: pybidi [-h] [-e ENCODING] [-u] [-d] [-b {L,R}] [-r] [-v]

    options:
    -h, --help            show this help message and exit
    -e ENCODING, --encoding ENCODING
                            Text encoding (default: utf-8)
    -u, --upper-is-rtl    Treat upper case chars as strong 'R' for debugging (default: False), Ignored in Rust algo
    -d, --debug           Output to stderr steps taken with the algorithm
    -b {L,R}, --base-dir {L,R}
                            Override base direction [L|R]
    -r, --rust            Use the Rust unicode-bidi implemention instead of the Python one
    -v, --version         show program's version number and exit


Examples::

    $ pybidi -u 'Your string here'
    $ cat ~/Documents/example.txt | pybidi


Installation
-------------

At the command line (assuming you're using some virtualenv)::

    pip install python-bidi


Running tests
--------------

To run the tests::

    pip install nox
    nox


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "python-bidi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "bidi, unicode, layout",
    "author": "Meir Kriheli <mkriheli@gmail.com>",
    "author_email": "Meir Kriheli <mkriheli@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c4/de/1822200711beaadb2f334fa25f59ad9c2627de423c103dde7e81aedbc8e2/python_bidi-0.6.6.tar.gz",
    "platform": null,
    "description": "===============================\nPython BiDi\n===============================\n\n`Bi-directional`_ (BiDi) layout for Python providing 2 implementations:\n\n* V5 of the algorithm implemented with Python.\n* Wrapper the `unicode-bidi`_ Rust crate.\n\n`Package documentation`_\n\n.. _Bi-directional: http://en.wikipedia.org/wiki/Bi-directional_text\n.. _unicode-bidi: https://crates.io/crates/unicode-bidi\n.. _Package documentation: http://python-bidi.readthedocs.org/en/latest/\n\n\nFor the python implementation, and compatible with previous versions, use::\n\n    from bidi.algorithm import get_display\n\n\nFor the newer Rust based one, which seems to implement higher version of\nthe algorithm (albeit with some missing see #25), use the top level import::\n\n    from bidi import get_display\n\n\nAPI\n----\n\nThe algorithm starts with a single entry point `get_display` (see above for selecting the implementaion).\n\n**Required arguments:**\n\n* ``str_or_bytes``: The string or bytes (i.e.: storage). If it's bytes\n  use the optional argument ``encoding`` to specify it's encoding.\n\n**Optional arguments:**\n\n* ``encoding``: If unicode_or_str is a string, specifies the encoding. The\n  algorithm uses unicodedata_ which requires unicode. This encoding will be\n  used to decode and encode back to string before returning\n  (default: \"utf-8\").\n\n* ``base_dir``:  ``'L'`` or ``'R'``, override the calculated base_level.\n\n* ``debug``: ``True`` to display the Unicode levels as seen by the algorithm\n  (default: ``False``).\n\n\nThe Python implementaion adds one more optional argument:\n\n* ``upper_is_rtl``: True to treat upper case chars as strong 'R' for\n  debugging (default: False).\n\n\nIt returns the display layout, either as ``str`` or ``encoding`` encoded ``bytes``\n(depending on the type of ``str_or_bytes'``).\n\n.. _unicodedata: http://docs.python.org/library/unicodedata.html\n\nExample::\n\n    >>> from bidi import get_display\n    >>> # keep as list with char per line to prevent browsers from changing display order\n    >>> HELLO_HEB = \"\".join([\n    ...     \"\u05e9\",\n    ...     \"\u05dc\",\n    ...     \"\u05d5\",\n    ...     \"\u05dd\"\n    ... ])\n    >>>\n    >>> HELLO_HEB_DISPLAY = \"\".join([\n    ...     \"\u05dd\",\n    ...     \"\u05d5\",\n    ...     \"\u05dc\",\n    ...     \"\u05e9\",\n    ... ])\n    >>>\n    >>> get_display(HELLO_HEB) == HELLO_HEB_DISPLAY\n    True\n\n\nCLI\n----\n\n``pybidi`` is a command line utility (calling  ``bidi.main``) for running the\ndisplay algorithm. The script can get a string as a parameter or read text from\n`stdin`.\n\nUsage::\n\n    $ pybidi -h\n    usage: pybidi [-h] [-e ENCODING] [-u] [-d] [-b {L,R}] [-r] [-v]\n\n    options:\n    -h, --help            show this help message and exit\n    -e ENCODING, --encoding ENCODING\n                            Text encoding (default: utf-8)\n    -u, --upper-is-rtl    Treat upper case chars as strong 'R' for debugging (default: False), Ignored in Rust algo\n    -d, --debug           Output to stderr steps taken with the algorithm\n    -b {L,R}, --base-dir {L,R}\n                            Override base direction [L|R]\n    -r, --rust            Use the Rust unicode-bidi implemention instead of the Python one\n    -v, --version         show program's version number and exit\n\n\nExamples::\n\n    $ pybidi -u 'Your string here'\n    $ cat ~/Documents/example.txt | pybidi\n\n\nInstallation\n-------------\n\nAt the command line (assuming you're using some virtualenv)::\n\n    pip install python-bidi\n\n\nRunning tests\n--------------\n\nTo run the tests::\n\n    pip install nox\n    nox\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python Bidi layout wrapping the Rust crate unicode-bidi",
    "version": "0.6.6",
    "project_urls": {
        "Changelog": "https://github.com/MeirKriheli/python-bidi/blob/master/CHANGELOG.rst",
        "Documentation": "https://python-bidi.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/MeirKriheli/python-bidi",
        "Issues": "https://github.com/MeirKriheli/python-bidi/issues",
        "Repository": "https://github.com/MeirKriheli/python-bidi"
    },
    "split_keywords": [
        "bidi",
        " unicode",
        " layout"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ee0fdb20f2e421e1d2fc4b519e1c2cd24361cbeb92c75750683790ef0301207",
                "md5": "9fa06d70d014388cd05fb2cb07ba42db",
                "sha256": "09d4da6b5851d0df01d7313a11d22f308fdfb0e12461f7262e0f55c521ccc0f1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fa06d70d014388cd05fb2cb07ba42db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 269449,
            "upload_time": "2025-02-18T21:42:02",
            "upload_time_iso_8601": "2025-02-18T21:42:02.074898Z",
            "url": "https://files.pythonhosted.org/packages/3e/e0/fdb20f2e421e1d2fc4b519e1c2cd24361cbeb92c75750683790ef0301207/python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f92a7371ab49b3f64f969ca01ee143614268868220a8d5cb742459103b2bf259",
                "md5": "ef7303ece883c7eefaee02d589c0331d",
                "sha256": "493a844891e23264411b01df58ba77d5dbb0045da3787f4195f50a56bfb847d9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef7303ece883c7eefaee02d589c0331d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 264036,
            "upload_time": "2025-02-18T21:41:49",
            "upload_time_iso_8601": "2025-02-18T21:41:49.050275Z",
            "url": "https://files.pythonhosted.org/packages/f9/2a/7371ab49b3f64f969ca01ee143614268868220a8d5cb742459103b2bf259/python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa98f1eada157c94cdebc3dde997ab9f3b4e3e5f43155eaf69954c899231e23b",
                "md5": "9dd27b2744c9e0db75f226698d640388",
                "sha256": "6a4f4c664b2594d2d6be6a31c9254e784d6d5c1b17edfdccb5f0fac317a1cd5e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9dd27b2744c9e0db75f226698d640388",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 291174,
            "upload_time": "2025-02-18T21:40:32",
            "upload_time_iso_8601": "2025-02-18T21:40:32.185191Z",
            "url": "https://files.pythonhosted.org/packages/aa/98/f1eada157c94cdebc3dde997ab9f3b4e3e5f43155eaf69954c899231e23b/python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62eef37710b6947e67279e08619b6c10dcffaca1da9f045137ce5e69e046f63e",
                "md5": "bef9f4ce24524723b8d58765f7dda4d3",
                "sha256": "b53b8b061b67908b5b436abede8c450c8d2fa965cb713d541688f552b4cfa3d3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bef9f4ce24524723b8d58765f7dda4d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 298418,
            "upload_time": "2025-02-18T21:40:45",
            "upload_time_iso_8601": "2025-02-18T21:40:45.782573Z",
            "url": "https://files.pythonhosted.org/packages/62/ee/f37710b6947e67279e08619b6c10dcffaca1da9f045137ce5e69e046f63e/python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6734b584fe00869c14784fd2417f14cf9f7fcb83c68164a125aa8c11446d048",
                "md5": "f0b105d535146044ca4a802cbd00022c",
                "sha256": "b144a1b8766fa6a536cc0feb6fdd29d91af7a82a0c09d89db5fc0b79d5678d7d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f0b105d535146044ca4a802cbd00022c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 351783,
            "upload_time": "2025-02-18T21:40:59",
            "upload_time_iso_8601": "2025-02-18T21:40:59.760831Z",
            "url": "https://files.pythonhosted.org/packages/f6/73/4b584fe00869c14784fd2417f14cf9f7fcb83c68164a125aa8c11446d048/python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a37ecb6310ce12030e1c31b1bb743bda64945d1ec047051f1ed9f008f24ffc92",
                "md5": "ea0fc4d371357889eb59de930d9d0bd8",
                "sha256": "41fde9b4bb45c0e1b3283599e7539c82624ef8a8d3115da76b06160d923aab09"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ea0fc4d371357889eb59de930d9d0bd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 331616,
            "upload_time": "2025-02-18T21:41:12",
            "upload_time_iso_8601": "2025-02-18T21:41:12.822575Z",
            "url": "https://files.pythonhosted.org/packages/a3/7e/cb6310ce12030e1c31b1bb743bda64945d1ec047051f1ed9f008f24ffc92/python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bd3b577d4457f678dd2d61b6e80011e20ee4b1bf0be5233340deaacd358c878",
                "md5": "ab32ef7dad3c51a0edda2791c39608bc",
                "sha256": "de020488c334c31916ee7526c1a867bf632516c1c2a0420d14d10b79f00761c7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab32ef7dad3c51a0edda2791c39608bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 293050,
            "upload_time": "2025-02-18T21:41:37",
            "upload_time_iso_8601": "2025-02-18T21:41:37.308228Z",
            "url": "https://files.pythonhosted.org/packages/2b/d3/b577d4457f678dd2d61b6e80011e20ee4b1bf0be5233340deaacd358c878/python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98f21dfc79bbdcac958826c77e787a03668bd52a165d132defc3c71b21783219",
                "md5": "2ff61922ae4f2e74534882045f83f05e",
                "sha256": "27cf629a0ef983a25cfd62c6238ee1e742e35552409d5c1b43f6d22945adc4c2"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2ff61922ae4f2e74534882045f83f05e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 307793,
            "upload_time": "2025-02-18T21:41:26",
            "upload_time_iso_8601": "2025-02-18T21:41:26.878024Z",
            "url": "https://files.pythonhosted.org/packages/98/f2/1dfc79bbdcac958826c77e787a03668bd52a165d132defc3c71b21783219/python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3be35f7c96c156e50b3318cbd6b77bc95de096f170f88e8efbd90b00a5489671",
                "md5": "57527fbc404595b1dc1ea280bd931ca8",
                "sha256": "9a9de76229ac22cb6bd40b56a8f7f0c42cbdff985dbd14b65bac955acf070594"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "57527fbc404595b1dc1ea280bd931ca8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 465721,
            "upload_time": "2025-02-18T21:42:14",
            "upload_time_iso_8601": "2025-02-18T21:42:14.846151Z",
            "url": "https://files.pythonhosted.org/packages/3b/e3/5f7c96c156e50b3318cbd6b77bc95de096f170f88e8efbd90b00a5489671/python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d1a9a17f900770bb1124d7619b9587c12a36a71992a6a3b6e61d0119bf210f1",
                "md5": "42eeab63405d8a90cc53b832f7a21b66",
                "sha256": "2150ac84f7b15f00f8cd9e29fee7edb4639b7ed2cd9e3d23e2dfd83098f719b7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "42eeab63405d8a90cc53b832f7a21b66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 557260,
            "upload_time": "2025-02-18T21:42:27",
            "upload_time_iso_8601": "2025-02-18T21:42:27.003094Z",
            "url": "https://files.pythonhosted.org/packages/2d/1a/9a17f900770bb1124d7619b9587c12a36a71992a6a3b6e61d0119bf210f1/python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f963448671801beb65c1bcdb1c2b1a4cea752037ce3534ef9f491794646cc5d4",
                "md5": "9691a372f970c6c1f2af1052ec124803",
                "sha256": "dc8b0566cef5277f127a80e7546b52393050e5a572f08a352ca220e3f94807cf"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9691a372f970c6c1f2af1052ec124803",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 485449,
            "upload_time": "2025-02-18T21:42:40",
            "upload_time_iso_8601": "2025-02-18T21:42:40.079007Z",
            "url": "https://files.pythonhosted.org/packages/f9/63/448671801beb65c1bcdb1c2b1a4cea752037ce3534ef9f491794646cc5d4/python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0e85c93fd22a87913fbbfd35c1d54142601e2877f5672546b885e739c19b070",
                "md5": "2e555cc702a1f5cdf1e60ce29cf71aa3",
                "sha256": "3564e574db1a0b3826ed6e646dc7206602189c31194d8da412007477ce653174"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e555cc702a1f5cdf1e60ce29cf71aa3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 459763,
            "upload_time": "2025-02-18T21:42:52",
            "upload_time_iso_8601": "2025-02-18T21:42:52.110775Z",
            "url": "https://files.pythonhosted.org/packages/b0/e8/5c93fd22a87913fbbfd35c1d54142601e2877f5672546b885e739c19b070/python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e407e80d714a2a9b089a1bc621f06c29da5adf01149b21d8cb2e10a942126650",
                "md5": "a420c57261500bba67502567cb502bae",
                "sha256": "92eb89f9d8aa0c877cb49fc6356c7f5566e819ea29306992e26be59a5ce468d7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "a420c57261500bba67502567cb502bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 155585,
            "upload_time": "2025-02-18T21:43:14",
            "upload_time_iso_8601": "2025-02-18T21:43:14.497844Z",
            "url": "https://files.pythonhosted.org/packages/e4/07/e80d714a2a9b089a1bc621f06c29da5adf01149b21d8cb2e10a942126650/python_bidi-0.6.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23ef92757e766ae753a264a5c0d2213f19a073d0b0389210b2eef86c65bb02d0",
                "md5": "1ea8322db7e1c313c90ee32171ebfb58",
                "sha256": "1d627f8cfeba70fe4e0ec27b35615c938a483cbef2d9eb7e1e42400d2196019e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1ea8322db7e1c313c90ee32171ebfb58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 160555,
            "upload_time": "2025-02-18T21:43:06",
            "upload_time_iso_8601": "2025-02-18T21:43:06.639432Z",
            "url": "https://files.pythonhosted.org/packages/23/ef/92757e766ae753a264a5c0d2213f19a073d0b0389210b2eef86c65bb02d0/python_bidi-0.6.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb03b10c5c320fa5f3bc3d7736b2268179cc7f4dca4d054cdf2c932532d6b11a",
                "md5": "fd332f1ade9c6a449bab0baaf82f1267",
                "sha256": "da4949496e563b51f53ff34aad5a9f4c3aaf06f4180cf3bcb42bec649486c8f1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd332f1ade9c6a449bab0baaf82f1267",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 269512,
            "upload_time": "2025-02-18T21:42:03",
            "upload_time_iso_8601": "2025-02-18T21:42:03.267651Z",
            "url": "https://files.pythonhosted.org/packages/bb/03/b10c5c320fa5f3bc3d7736b2268179cc7f4dca4d054cdf2c932532d6b11a/python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91d88f6bd8f4662e8340e1aabb3b9a01fb1de24e8d1ce4f38b160f5cac2524f4",
                "md5": "a46a1c2d2cd84605c3da1b6ca61c1570",
                "sha256": "c48a755ca8ba3f2b242d6795d4a60e83ca580cc4fa270a3aaa8af05d93b7ba7f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a46a1c2d2cd84605c3da1b6ca61c1570",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 264042,
            "upload_time": "2025-02-18T21:41:50",
            "upload_time_iso_8601": "2025-02-18T21:41:50.298256Z",
            "url": "https://files.pythonhosted.org/packages/91/d8/8f6bd8f4662e8340e1aabb3b9a01fb1de24e8d1ce4f38b160f5cac2524f4/python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "519f2c831510ab8afb03b5ec4b15271dc547a2e8643563a7bcc712cd43b29d26",
                "md5": "ef20b5bba62e0b6094c23525dbb08c5b",
                "sha256": "76a1cd320993ba3e91a567e97f057a03f2c6b493096b3fff8b5630f51a38e7eb"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef20b5bba62e0b6094c23525dbb08c5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 290963,
            "upload_time": "2025-02-18T21:40:35",
            "upload_time_iso_8601": "2025-02-18T21:40:35.243085Z",
            "url": "https://files.pythonhosted.org/packages/51/9f/2c831510ab8afb03b5ec4b15271dc547a2e8643563a7bcc712cd43b29d26/python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "954517a76e7052d4d4bc1549ac2061f1fdebbaa9b7448ce81e774b7f77dc70b2",
                "md5": "df1de6bb9c9e2f84b31bcc4cf3fde45e",
                "sha256": "e8bf3e396f9ebe8f4f81e92fa4c98c50160d60c58964b89c8ff4ee0c482befaa"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "df1de6bb9c9e2f84b31bcc4cf3fde45e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 298639,
            "upload_time": "2025-02-18T21:40:49",
            "upload_time_iso_8601": "2025-02-18T21:40:49.357609Z",
            "url": "https://files.pythonhosted.org/packages/95/45/17a76e7052d4d4bc1549ac2061f1fdebbaa9b7448ce81e774b7f77dc70b2/python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0011fb5857168dcc50a2ebb2a5d8771a64b7fc66c19c9586b6f2a4d8a76db2e8",
                "md5": "307e4bafe7258bcff1071d28d71c84f7",
                "sha256": "a2a49b506ed21f762ebf332de6de689bc4912e24dcc3b85f120b34e5f01e541a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "307e4bafe7258bcff1071d28d71c84f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 351898,
            "upload_time": "2025-02-18T21:41:00",
            "upload_time_iso_8601": "2025-02-18T21:41:00.939898Z",
            "url": "https://files.pythonhosted.org/packages/00/11/fb5857168dcc50a2ebb2a5d8771a64b7fc66c19c9586b6f2a4d8a76db2e8/python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18e7d25b3e767e204b9e236e7cb042bf709fd5a985cfede8c990da3bbca862a3",
                "md5": "d5bba8e732481307087c2e2f5999cdef",
                "sha256": "3428331e7ce0d58c15b5a57e18a43a12e28f8733086066e6fd75b0ded80e1cae"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d5bba8e732481307087c2e2f5999cdef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 331117,
            "upload_time": "2025-02-18T21:41:14",
            "upload_time_iso_8601": "2025-02-18T21:41:14.819047Z",
            "url": "https://files.pythonhosted.org/packages/18/e7/d25b3e767e204b9e236e7cb042bf709fd5a985cfede8c990da3bbca862a3/python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7550248decd41096b4954c3887fc7fae864b8e1e90d28d1b4ce5a28c087c3d8d",
                "md5": "7c2bf75219411c758b0e7b835ff229f6",
                "sha256": "35adfb9fed3e72b9043a5c00b6ab69e4b33d53d2d8f8b9f60d4df700f77bc2c0"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c2bf75219411c758b0e7b835ff229f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 292950,
            "upload_time": "2025-02-18T21:41:38",
            "upload_time_iso_8601": "2025-02-18T21:41:38.530403Z",
            "url": "https://files.pythonhosted.org/packages/75/50/248decd41096b4954c3887fc7fae864b8e1e90d28d1b4ce5a28c087c3d8d/python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bd86ae7827fbba1403882930d4da8cbab28ab6b86b61a381c991074fb5003d1",
                "md5": "6887482eedc1932aefb011e0df8579c3",
                "sha256": "589c5b24a8c4b5e07a1e97654020734bf16ed01a4353911ab663a37aaf1c281d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6887482eedc1932aefb011e0df8579c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 307909,
            "upload_time": "2025-02-18T21:41:28",
            "upload_time_iso_8601": "2025-02-18T21:41:28.221403Z",
            "url": "https://files.pythonhosted.org/packages/0b/d8/6ae7827fbba1403882930d4da8cbab28ab6b86b61a381c991074fb5003d1/python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ca35b369c5da7b08b36907dcce7a78c730370ad6899459282f5e703ec1964c6",
                "md5": "f68e6db6522d9210fc768c3143e2d46f",
                "sha256": "994534e47260d712c3b3291a6ab55b46cdbfd78a879ef95d14b27bceebfd4049"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f68e6db6522d9210fc768c3143e2d46f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 465552,
            "upload_time": "2025-02-18T21:42:16",
            "upload_time_iso_8601": "2025-02-18T21:42:16.157552Z",
            "url": "https://files.pythonhosted.org/packages/4c/a3/5b369c5da7b08b36907dcce7a78c730370ad6899459282f5e703ec1964c6/python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82077779668967c0f17a107a916ec7891507b7bcdc9c7ee4d2c4b6a80ba1ac5e",
                "md5": "e687cf81b5caf2d34683fca922117ae5",
                "sha256": "00622f54a80826a918b22a2d6d5481bb3f669147e17bac85c81136b6ffbe7c06"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e687cf81b5caf2d34683fca922117ae5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 557371,
            "upload_time": "2025-02-18T21:42:28",
            "upload_time_iso_8601": "2025-02-18T21:42:28.392151Z",
            "url": "https://files.pythonhosted.org/packages/82/07/7779668967c0f17a107a916ec7891507b7bcdc9c7ee4d2c4b6a80ba1ac5e/python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2de53154ac009a167bf0811195f12cf5e896c77a29243522b4b0697985881bc4",
                "md5": "3c398638c34cd5ac88587609fbda2158",
                "sha256": "965e6f2182e7b9352f2d79221f6c49502a307a9778d7d87d82dc36bb1ffecbab"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c398638c34cd5ac88587609fbda2158",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 485458,
            "upload_time": "2025-02-18T21:42:41",
            "upload_time_iso_8601": "2025-02-18T21:42:41.465126Z",
            "url": "https://files.pythonhosted.org/packages/2d/e5/3154ac009a167bf0811195f12cf5e896c77a29243522b4b0697985881bc4/python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fddb88af6f0048d8ec7281b44b5599a3d2afa18fac5dd22eb72526f28f4ea647",
                "md5": "c3128d71055366c6500c7647e2f279bf",
                "sha256": "53d7d3a550d176df99dd0bb0cc2da16b40634f11c8b9f5715777441d679c0a62"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3128d71055366c6500c7647e2f279bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 459588,
            "upload_time": "2025-02-18T21:42:53",
            "upload_time_iso_8601": "2025-02-18T21:42:53.483300Z",
            "url": "https://files.pythonhosted.org/packages/fd/db/88af6f0048d8ec7281b44b5599a3d2afa18fac5dd22eb72526f28f4ea647/python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbd277b649c8b32c2b88e2facf5a42fb51dfdcc9e13db411c8bc84831ad64893",
                "md5": "4a78d4d79f5af8c0d4783cd7c1e1f56d",
                "sha256": "b271cd05cb40f47eb4600de79a8e47f8579d81ce35f5650b39b7860d018c3ece"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4a78d4d79f5af8c0d4783cd7c1e1f56d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 155683,
            "upload_time": "2025-02-18T21:43:15",
            "upload_time_iso_8601": "2025-02-18T21:43:15.740046Z",
            "url": "https://files.pythonhosted.org/packages/bb/d2/77b649c8b32c2b88e2facf5a42fb51dfdcc9e13db411c8bc84831ad64893/python_bidi-0.6.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9541d4dbc72b96e2eea3aeb9292707459372c8682ef039cd19fcac7e09d513ef",
                "md5": "da034144b8e59ac7d4a7dceeb96bf3e1",
                "sha256": "4ff1eba0ff87e04bd35d7e164203ad6e5ce19f0bac0bdf673134c0b78d919608"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da034144b8e59ac7d4a7dceeb96bf3e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 160587,
            "upload_time": "2025-02-18T21:43:07",
            "upload_time_iso_8601": "2025-02-18T21:43:07.872688Z",
            "url": "https://files.pythonhosted.org/packages/95/41/d4dbc72b96e2eea3aeb9292707459372c8682ef039cd19fcac7e09d513ef/python_bidi-0.6.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f8445484b091e89d657b0edbfc4378d94ae39915e1f230cb13614f355ff7f22",
                "md5": "7705adb1f7d8104b72231eb9ce56a93d",
                "sha256": "166060a31c10aa3ffadd52cf10a3c9c2b8d78d844e0f2c5801e2ed511d3ec316"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7705adb1f7d8104b72231eb9ce56a93d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 267218,
            "upload_time": "2025-02-18T21:42:04",
            "upload_time_iso_8601": "2025-02-18T21:42:04.539366Z",
            "url": "https://files.pythonhosted.org/packages/6f/84/45484b091e89d657b0edbfc4378d94ae39915e1f230cb13614f355ff7f22/python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b717b314c260366a8fb370c58b98298f903fb2a3c476267efbe792bb8694ac7c",
                "md5": "a1a76c13c50929d372bf0d2bf67bf96e",
                "sha256": "8706addd827840c2c3b3a9963060d9b979b43801cc9be982efa9644facd3ed26"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a1a76c13c50929d372bf0d2bf67bf96e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 262129,
            "upload_time": "2025-02-18T21:41:52",
            "upload_time_iso_8601": "2025-02-18T21:41:52.492969Z",
            "url": "https://files.pythonhosted.org/packages/b7/17/b314c260366a8fb370c58b98298f903fb2a3c476267efbe792bb8694ac7c/python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27b68212d0f83aaa361ab33f98c156a453ea5cfb9ac40fab06eef9a156ba4dfa",
                "md5": "0e2c79a5eed1fd9bb1f89254636d9167",
                "sha256": "69c02316a4f72a168ea6f66b90d845086e2f2d2de6b08eb32c576db36582177c"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e2c79a5eed1fd9bb1f89254636d9167",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 290811,
            "upload_time": "2025-02-18T21:40:36",
            "upload_time_iso_8601": "2025-02-18T21:40:36.781417Z",
            "url": "https://files.pythonhosted.org/packages/27/b6/8212d0f83aaa361ab33f98c156a453ea5cfb9ac40fab06eef9a156ba4dfa/python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd05cd503307cd478d18f09b301d20e38ef4107526e65e9cbb9ce489cc2ddbf3",
                "md5": "84a88db6e4cbaea8c89a151c2c5e7af7",
                "sha256": "a525bcb77b8edbfdcf8b199dbed24556e6d1436af8f5fa392f6cdc93ed79b4af"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84a88db6e4cbaea8c89a151c2c5e7af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 298175,
            "upload_time": "2025-02-18T21:40:50",
            "upload_time_iso_8601": "2025-02-18T21:40:50.993989Z",
            "url": "https://files.pythonhosted.org/packages/cd/05/cd503307cd478d18f09b301d20e38ef4107526e65e9cbb9ce489cc2ddbf3/python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e00cbd7bbd70bd330f282c534f03235a9b8da56262ea97a353d8fe9e367d0d7c",
                "md5": "056a16db689dd9a4f6f9876de423e3d9",
                "sha256": "4bb186c8da4bdc953893504bba93f41d5b412fd767ba5661ff606f22950ec609"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "056a16db689dd9a4f6f9876de423e3d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 351470,
            "upload_time": "2025-02-18T21:41:04",
            "upload_time_iso_8601": "2025-02-18T21:41:04.365977Z",
            "url": "https://files.pythonhosted.org/packages/e0/0c/bd7bbd70bd330f282c534f03235a9b8da56262ea97a353d8fe9e367d0d7c/python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5eab05a1864d5317e69e022930457f198c2d0344fd281117499ad3fedec5b77c",
                "md5": "50549e9f613caf2cc89fa288be8e5334",
                "sha256": "25fa21b46dc80ac7099d2dee424b634eb1f76b2308d518e505a626c55cdbf7b1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "50549e9f613caf2cc89fa288be8e5334",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 329468,
            "upload_time": "2025-02-18T21:41:16",
            "upload_time_iso_8601": "2025-02-18T21:41:16.741839Z",
            "url": "https://files.pythonhosted.org/packages/5e/ab/05a1864d5317e69e022930457f198c2d0344fd281117499ad3fedec5b77c/python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "077c094bbcb97089ac79f112afa762051129c55d52a7f58923203dfc62f75feb",
                "md5": "8c2d5673889c84ad2efbf56fbfeebae8",
                "sha256": "b31f5562839e7ecea881ba337f9d39716e2e0e6b3ba395e824620ee5060050ff"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c2d5673889c84ad2efbf56fbfeebae8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 292102,
            "upload_time": "2025-02-18T21:41:39",
            "upload_time_iso_8601": "2025-02-18T21:41:39.770654Z",
            "url": "https://files.pythonhosted.org/packages/07/7c/094bbcb97089ac79f112afa762051129c55d52a7f58923203dfc62f75feb/python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "996b5e2e6c2d76e7669b9dd68227e8e70cf72a6566ffdf414b31b64098406030",
                "md5": "d246e8cf57d105819a0d06a71c317b63",
                "sha256": "fb750d3d5ac028e8afd62d000928a2110dbca012fee68b1a325a38caa03dc50b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d246e8cf57d105819a0d06a71c317b63",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 307282,
            "upload_time": "2025-02-18T21:41:29",
            "upload_time_iso_8601": "2025-02-18T21:41:29.429712Z",
            "url": "https://files.pythonhosted.org/packages/99/6b/5e2e6c2d76e7669b9dd68227e8e70cf72a6566ffdf414b31b64098406030/python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5eda6cbe04f605100978755fc5f4d8a8209789b167568e1e08e753d1a88edcc5",
                "md5": "73a621cd4ee7d46dc6efa4c77f2ff000",
                "sha256": "8b5f648ee8e9f4ac0400f71e671934b39837d7031496e0edde867a303344d758"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73a621cd4ee7d46dc6efa4c77f2ff000",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 464487,
            "upload_time": "2025-02-18T21:42:17",
            "upload_time_iso_8601": "2025-02-18T21:42:17.380971Z",
            "url": "https://files.pythonhosted.org/packages/5e/da/6cbe04f605100978755fc5f4d8a8209789b167568e1e08e753d1a88edcc5/python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d583d15a0c944b819b8f101418b973772c42fb818c325c82236978db71b1ed7e",
                "md5": "6e87a436f928f2a604f70da5e68c8c6b",
                "sha256": "c4c0255940e6ff98fb05f9d5de3ffcaab7b60d821d4ca072b50c4f871b036562"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6e87a436f928f2a604f70da5e68c8c6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 556449,
            "upload_time": "2025-02-18T21:42:29",
            "upload_time_iso_8601": "2025-02-18T21:42:29.650341Z",
            "url": "https://files.pythonhosted.org/packages/d5/83/d15a0c944b819b8f101418b973772c42fb818c325c82236978db71b1ed7e/python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f9a80f0551adcbc9dd02304a4e4ae46113bb1f6f5172831ad86b860814ff498",
                "md5": "338b59c382c1720464419c654ecbcca8",
                "sha256": "e7e36601edda15e67527560b1c00108b0d27831260b6b251cf7c6dd110645c03"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "338b59c382c1720464419c654ecbcca8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 484368,
            "upload_time": "2025-02-18T21:42:42",
            "upload_time_iso_8601": "2025-02-18T21:42:42.804686Z",
            "url": "https://files.pythonhosted.org/packages/0f/9a/80f0551adcbc9dd02304a4e4ae46113bb1f6f5172831ad86b860814ff498/python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e054a4074530e54a3e384535d185c77fe9bf0321b207bfcb3a9c1676ee9976f",
                "md5": "c7cc45c922bca34c0245f721883a4aeb",
                "sha256": "07c9f000671b187319bacebb9e98d8b75005ccd16aa41b9d4411e66813c467bb"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7cc45c922bca34c0245f721883a4aeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 458846,
            "upload_time": "2025-02-18T21:42:55",
            "upload_time_iso_8601": "2025-02-18T21:42:55.521191Z",
            "url": "https://files.pythonhosted.org/packages/9e/05/4a4074530e54a3e384535d185c77fe9bf0321b207bfcb3a9c1676ee9976f/python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f1091d112d152b273e54ca7b7d476faaf27e9a350ef85b4fcc281bdd577d13b",
                "md5": "81274ddca804867fd5513d06a9b74d2a",
                "sha256": "57c0ca449a116c4f804422111b3345281c4e69c733c4556fa216644ec9907078"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "81274ddca804867fd5513d06a9b74d2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 155236,
            "upload_time": "2025-02-18T21:43:17",
            "upload_time_iso_8601": "2025-02-18T21:43:17.446017Z",
            "url": "https://files.pythonhosted.org/packages/9f/10/91d112d152b273e54ca7b7d476faaf27e9a350ef85b4fcc281bdd577d13b/python_bidi-0.6.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30dae1537900bc8a838b0637124cf8f7ef36ce87b5cdc41fb4c26752a4b9c25a",
                "md5": "31f939c6000c9344a3950c1b067857c4",
                "sha256": "f60afe457a37bd908fdc7b520c07620b1a7cc006e08b6e3e70474025b4f5e5c7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31f939c6000c9344a3950c1b067857c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 160251,
            "upload_time": "2025-02-18T21:43:09",
            "upload_time_iso_8601": "2025-02-18T21:43:09.098200Z",
            "url": "https://files.pythonhosted.org/packages/30/da/e1537900bc8a838b0637124cf8f7ef36ce87b5cdc41fb4c26752a4b9c25a/python_bidi-0.6.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5b1b24cb64b441dadd911b39d8b86a91606481f84be1b3f01ffca3f9847a4f1",
                "md5": "fb72adc1fc5fd6ffe04b1c78893fd20c",
                "sha256": "61cf12f6b7d0b9bb37838a5f045e6acbd91e838b57f0369c55319bb3969ffa4d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb72adc1fc5fd6ffe04b1c78893fd20c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 266728,
            "upload_time": "2025-02-18T21:42:07",
            "upload_time_iso_8601": "2025-02-18T21:42:07.711676Z",
            "url": "https://files.pythonhosted.org/packages/a5/b1/b24cb64b441dadd911b39d8b86a91606481f84be1b3f01ffca3f9847a4f1/python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c19d4d449dcdc5eb72b6ffb97b34db710ea307682cae065fbe83a0e42fee00a",
                "md5": "6e668bdd99c625b538d34d7638c48007",
                "sha256": "33bd0ba5eedf18315a1475ac0f215b5134e48011b7320aedc2fb97df31d4e5bf"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6e668bdd99c625b538d34d7638c48007",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 261475,
            "upload_time": "2025-02-18T21:41:54",
            "upload_time_iso_8601": "2025-02-18T21:41:54.315999Z",
            "url": "https://files.pythonhosted.org/packages/0c/19/d4d449dcdc5eb72b6ffb97b34db710ea307682cae065fbe83a0e42fee00a/python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a874ecaecf7cc17443129b0f3a967b6f455c0d773b58d68b93c5949a91a0b8b",
                "md5": "61af518f209ad0cf72f00c8b5ad3bd8a",
                "sha256": "5c9f798dd49b24bb1a9d90f065ef25c7bffa94c04c554f1fc02d0aea0a9b10b0"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61af518f209ad0cf72f00c8b5ad3bd8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 290153,
            "upload_time": "2025-02-18T21:40:38",
            "upload_time_iso_8601": "2025-02-18T21:40:38.099307Z",
            "url": "https://files.pythonhosted.org/packages/0a/87/4ecaecf7cc17443129b0f3a967b6f455c0d773b58d68b93c5949a91a0b8b/python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "426e4b57a3dba455f42fa82a9b5caf3d35535bd6eb644a37a031ac1d5e8b6a3e",
                "md5": "18573fc99aaf3436135a4d513ed82673",
                "sha256": "43a0409570c618d93706dc875b1d33b4adfe67144f6f2ebeb32d85d8bbdb85ed"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "18573fc99aaf3436135a4d513ed82673",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 297567,
            "upload_time": "2025-02-18T21:40:52",
            "upload_time_iso_8601": "2025-02-18T21:40:52.135216Z",
            "url": "https://files.pythonhosted.org/packages/42/6e/4b57a3dba455f42fa82a9b5caf3d35535bd6eb644a37a031ac1d5e8b6a3e/python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3939dc9ce9b15888b6391206d77fc36fd23447fb5313aee1fa1031432b2a4072",
                "md5": "7eb26f72694edd63dc52a8a79d30dea8",
                "sha256": "ada1aecd32773c61b16f7c9f74d9ec1b57ea433e2083e08ca387c5cd4b0ceaed"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7eb26f72694edd63dc52a8a79d30dea8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 351186,
            "upload_time": "2025-02-18T21:41:05",
            "upload_time_iso_8601": "2025-02-18T21:41:05.739046Z",
            "url": "https://files.pythonhosted.org/packages/39/39/dc9ce9b15888b6391206d77fc36fd23447fb5313aee1fa1031432b2a4072/python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e66cc9795903be4ce781b89fa4fe0e493369d58cd0fc0dda9287ab227d410d3",
                "md5": "6b68d11077c942e38d486b15c70b9e6c",
                "sha256": "125a815f2b20313a2f6d331aa84abdd07de7d270985b056e6729390a4cda90df"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6b68d11077c942e38d486b15c70b9e6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 329159,
            "upload_time": "2025-02-18T21:41:17",
            "upload_time_iso_8601": "2025-02-18T21:41:17.919502Z",
            "url": "https://files.pythonhosted.org/packages/9e/66/cc9795903be4ce781b89fa4fe0e493369d58cd0fc0dda9287ab227d410d3/python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca40071dc08645daa09cb8c008db888141998a895d2d1ed03ba780971b595297",
                "md5": "2cb3bf193526cd41d1f0217c33280480",
                "sha256": "183fee39bd2de787f632376bd5ba0d5f1daf6a09d3ebfaa211df25d62223e531"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cb3bf193526cd41d1f0217c33280480",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 291743,
            "upload_time": "2025-02-18T21:41:40",
            "upload_time_iso_8601": "2025-02-18T21:41:40.996491Z",
            "url": "https://files.pythonhosted.org/packages/ca/40/071dc08645daa09cb8c008db888141998a895d2d1ed03ba780971b595297/python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "175a5f60915a9f73f48df27bf262a210fa66ea8ffe5fd0072c67288e55e3304e",
                "md5": "0989cb066153332c534f93b110221ff0",
                "sha256": "c4e08753d32d633f5ecb5eb02624272eeffaa6d5c6f4f9ddf012637bcaabfc0a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0989cb066153332c534f93b110221ff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 306568,
            "upload_time": "2025-02-18T21:41:30",
            "upload_time_iso_8601": "2025-02-18T21:41:30.549120Z",
            "url": "https://files.pythonhosted.org/packages/17/5a/5f60915a9f73f48df27bf262a210fa66ea8ffe5fd0072c67288e55e3304e/python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e0103341516d895ee937036d38ab4f9987857b1066f7c267b99963ee056eb9e",
                "md5": "f9462c8ccbaf3ea7e6a92d693436c535",
                "sha256": "d1dcd7a82ae00b86821fce627e310791f56da90924f15877cfda844e340679de"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9462c8ccbaf3ea7e6a92d693436c535",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 463890,
            "upload_time": "2025-02-18T21:42:18",
            "upload_time_iso_8601": "2025-02-18T21:42:18.705713Z",
            "url": "https://files.pythonhosted.org/packages/9e/01/03341516d895ee937036d38ab4f9987857b1066f7c267b99963ee056eb9e/python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fa836bb9553e00d33acee2d2d447b60bccb0aad5c1d589cd364ddd95d9b876b",
                "md5": "8e1ba40835259347f9e467d1fede6ccd",
                "sha256": "5506ba56380140b3cb3504029de014d21eb8874c5e081d88495f8775f6ed90bc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8e1ba40835259347f9e467d1fede6ccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 555980,
            "upload_time": "2025-02-18T21:42:30",
            "upload_time_iso_8601": "2025-02-18T21:42:30.936998Z",
            "url": "https://files.pythonhosted.org/packages/4f/a8/36bb9553e00d33acee2d2d447b60bccb0aad5c1d589cd364ddd95d9b876b/python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "460588aa85522472afda215a6b436eaa0aac6bbe9e29a64db0f99f61d1aa6527",
                "md5": "d3e266b75220cd83841b13c90b55be9e",
                "sha256": "207b0a7082ec38045910d37700a0dd73c10d4ffccb22a4fd0391d7e9ce241672"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d3e266b75220cd83841b13c90b55be9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 483881,
            "upload_time": "2025-02-18T21:42:44",
            "upload_time_iso_8601": "2025-02-18T21:42:44.379179Z",
            "url": "https://files.pythonhosted.org/packages/46/05/88aa85522472afda215a6b436eaa0aac6bbe9e29a64db0f99f61d1aa6527/python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "487ef813de1a92e10c302649134ea3a8c6429f9c2e5dd161e82e88f08b4c7565",
                "md5": "2913006de7ee81a2eabc1cb5e3b92574",
                "sha256": "686642a52acdeffb1d9a593a284d07b175c63877c596fa3ccceeb2649ced1dd8"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2913006de7ee81a2eabc1cb5e3b92574",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 458296,
            "upload_time": "2025-02-18T21:42:57",
            "upload_time_iso_8601": "2025-02-18T21:42:57.775791Z",
            "url": "https://files.pythonhosted.org/packages/48/7e/f813de1a92e10c302649134ea3a8c6429f9c2e5dd161e82e88f08b4c7565/python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9eaa775bec616ec01d9a0df7d5a6e1b3729285dd5e7f1fdb0dfce2e0604c6a3",
                "md5": "03ac84efcfc0477b30e0fa57c8db3131",
                "sha256": "485f2ee109e7aa73efc165b90a6d90da52546801413540c08b7133fe729d5e0a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "03ac84efcfc0477b30e0fa57c8db3131",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 155033,
            "upload_time": "2025-02-18T21:43:18",
            "upload_time_iso_8601": "2025-02-18T21:43:18.737806Z",
            "url": "https://files.pythonhosted.org/packages/e9/ea/a775bec616ec01d9a0df7d5a6e1b3729285dd5e7f1fdb0dfce2e0604c6a3/python_bidi-0.6.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74793323f08c98b9a5b726303b68babdd26cf4fe710709b7c61c96e6bb4f3d10",
                "md5": "735a4aff070c0ba4528b951a54547a4d",
                "sha256": "63f7a9eaec31078e7611ab958b6e18e796c05b63ca50c1f7298311dc1e15ac3e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "735a4aff070c0ba4528b951a54547a4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 159973,
            "upload_time": "2025-02-18T21:43:10",
            "upload_time_iso_8601": "2025-02-18T21:43:10.431379Z",
            "url": "https://files.pythonhosted.org/packages/74/79/3323f08c98b9a5b726303b68babdd26cf4fe710709b7c61c96e6bb4f3d10/python_bidi-0.6.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bece6b888bb1a889f90f066c8bfeab2ceee70b87c8ff484116fd45111542970c",
                "md5": "b131bf02e786e5f3ccd764759d22e854",
                "sha256": "fe31aa2d2be1c79300bda36b1a3daf8c2dda963539e0c6eedeb9882fc8c15491"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b131bf02e786e5f3ccd764759d22e854",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 268860,
            "upload_time": "2025-02-18T21:42:08",
            "upload_time_iso_8601": "2025-02-18T21:42:08.863963Z",
            "url": "https://files.pythonhosted.org/packages/be/ce/6b888bb1a889f90f066c8bfeab2ceee70b87c8ff484116fd45111542970c/python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4ef272a1dff862df1a9332c0f7269d73493bc9d3bfa573b22469b5613f26f0c",
                "md5": "3595fcc8d934c50b2e7f563cb0de5032",
                "sha256": "f1020fcd3c8f1b93091730e3e16810d3741cbf69c6bacaa9d6a95fb15032848f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3595fcc8d934c50b2e7f563cb0de5032",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 263715,
            "upload_time": "2025-02-18T21:41:56",
            "upload_time_iso_8601": "2025-02-18T21:41:56.467282Z",
            "url": "https://files.pythonhosted.org/packages/c4/ef/272a1dff862df1a9332c0f7269d73493bc9d3bfa573b22469b5613f26f0c/python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b6be149a16474c808587b9c9608b9758963192531ed854125aca467ded201d4",
                "md5": "e94b803358f88337d5608a3347f222a2",
                "sha256": "bd5b3aa43d5222f1deef9894356a42f2443486501405977cda3aad0f23e20f9d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e94b803358f88337d5608a3347f222a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 291095,
            "upload_time": "2025-02-18T21:40:39",
            "upload_time_iso_8601": "2025-02-18T21:40:39.400233Z",
            "url": "https://files.pythonhosted.org/packages/5b/6b/e149a16474c808587b9c9608b9758963192531ed854125aca467ded201d4/python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4311b25fea9711c3539fbfebde09a1ac914a12b69983b6c3c5120b60f4e58002",
                "md5": "78aae1889c47ed406b3edabae2a46db2",
                "sha256": "6c84d901fad5fe3b58a329c0b4a5c9d93a2d5430d150ad41f0e1165fc75ff439"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "78aae1889c47ed406b3edabae2a46db2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 298128,
            "upload_time": "2025-02-18T21:40:54",
            "upload_time_iso_8601": "2025-02-18T21:40:54.063908Z",
            "url": "https://files.pythonhosted.org/packages/43/11/b25fea9711c3539fbfebde09a1ac914a12b69983b6c3c5120b60f4e58002/python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "977279a57726548e643d5226ce64dd630f52bb0bc80a1170f3cf25899761471c",
                "md5": "779d689b5ef9632cb723d3b56c4d4d1a",
                "sha256": "0c298868017614d6b7e0e31293775ebe6622e87009d95e1ecd0abdc1fa5228a2"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "779d689b5ef9632cb723d3b56c4d4d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 350902,
            "upload_time": "2025-02-18T21:41:07",
            "upload_time_iso_8601": "2025-02-18T21:41:07.778556Z",
            "url": "https://files.pythonhosted.org/packages/97/72/79a57726548e643d5226ce64dd630f52bb0bc80a1170f3cf25899761471c/python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d2a1da9513dc3577c7854985b6dc601d0b243fa9f5be5636d60e68b400146cd",
                "md5": "b53adff3ab6156f10d612c717f2d2714",
                "sha256": "02255a04e26520b19081f7d378881b39050f5893e2fb4d65da81b849f58f4f76"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b53adff3ab6156f10d612c717f2d2714",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 331551,
            "upload_time": "2025-02-18T21:41:19",
            "upload_time_iso_8601": "2025-02-18T21:41:19.198628Z",
            "url": "https://files.pythonhosted.org/packages/7d/2a/1da9513dc3577c7854985b6dc601d0b243fa9f5be5636d60e68b400146cd/python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b271d302b52d91bb697e7eff8899264eae15f1ab443c1227af34e54c2611d05",
                "md5": "b908fe8654a02d7e3edce1fb1d6e22b8",
                "sha256": "f1d3e139ca3963201994ee7f45d51dce6015166462cffa025daf95508547e503"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b908fe8654a02d7e3edce1fb1d6e22b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 292826,
            "upload_time": "2025-02-18T21:41:43",
            "upload_time_iso_8601": "2025-02-18T21:41:43.500370Z",
            "url": "https://files.pythonhosted.org/packages/2b/27/1d302b52d91bb697e7eff8899264eae15f1ab443c1227af34e54c2611d05/python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d25c2d98960e0274c6b7eac8efbe35fe7b638a66dbe2e25d2456a4ef2f6f5cbd",
                "md5": "9c9d2ca06518092da2d67ea5d307899a",
                "sha256": "e99e9ae745ba283f0230ac50af3f91657dd0b763778f88e4f0cbbc53b3e45d6e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9c9d2ca06518092da2d67ea5d307899a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 307475,
            "upload_time": "2025-02-18T21:41:31",
            "upload_time_iso_8601": "2025-02-18T21:41:31.877675Z",
            "url": "https://files.pythonhosted.org/packages/d2/5c/2d98960e0274c6b7eac8efbe35fe7b638a66dbe2e25d2456a4ef2f6f5cbd/python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21dd119d27113d9f3df26aaab0e513d40956d3f13c1228266cacd7772169ddc8",
                "md5": "4f1a0339475a0ba79f8eee47edda6315",
                "sha256": "91c12d58cec15385817f8b2c7c56de8e37523f05926f2de0e59199d3e50e1516"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f1a0339475a0ba79f8eee47edda6315",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 465235,
            "upload_time": "2025-02-18T21:42:20",
            "upload_time_iso_8601": "2025-02-18T21:42:20.571107Z",
            "url": "https://files.pythonhosted.org/packages/21/dd/119d27113d9f3df26aaab0e513d40956d3f13c1228266cacd7772169ddc8/python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90800d31ea3417ada6d67e59c17c8c0888b65dd0530b4df22e9dd0349e60a630",
                "md5": "1401c2bc9a646ebd2e6b6c4be2189369",
                "sha256": "646e83862dadfee00b75c93a930015e9f1cb924b26c34319a75aef65fcb3ddfa"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1401c2bc9a646ebd2e6b6c4be2189369",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 556884,
            "upload_time": "2025-02-18T21:42:33",
            "upload_time_iso_8601": "2025-02-18T21:42:33.908409Z",
            "url": "https://files.pythonhosted.org/packages/90/80/0d31ea3417ada6d67e59c17c8c0888b65dd0530b4df22e9dd0349e60a630/python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8a05f19cbf099a706ddf45bb8086afb146d7067a825008b112e7d46a9eb562a",
                "md5": "ed87f0dfedb27921c2ad5ca3fe9b3057",
                "sha256": "fefea733a1acaaf0c0daba8ccd5e161b9419efb62d8f6f4c679c51ef754ee750"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ed87f0dfedb27921c2ad5ca3fe9b3057",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 484794,
            "upload_time": "2025-02-18T21:42:45",
            "upload_time_iso_8601": "2025-02-18T21:42:45.721500Z",
            "url": "https://files.pythonhosted.org/packages/c8/a0/5f19cbf099a706ddf45bb8086afb146d7067a825008b112e7d46a9eb562a/python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36f90c9f5eb9cbb6055dd7b42ea737c96c1a53ecb06ebc15f0ef2b5b89711912",
                "md5": "52f97f7180029726570c70a3f729073b",
                "sha256": "b9498ead7f09eee272ff9c45900a8dcdc50a9558e126420a71d15774cc98bb44"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52f97f7180029726570c70a3f729073b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 460095,
            "upload_time": "2025-02-18T21:42:59",
            "upload_time_iso_8601": "2025-02-18T21:42:59.261297Z",
            "url": "https://files.pythonhosted.org/packages/36/f9/0c9f5eb9cbb6055dd7b42ea737c96c1a53ecb06ebc15f0ef2b5b89711912/python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d93ec72c496d79cbbc089b5c745373ba1513b81b9f37e31e2ed5dc2f001580a",
                "md5": "17e85c11eca9ce7a7a2dfdb03e79743d",
                "sha256": "e4a6251e212f828bb10ea69e0aa6b92b54f00bf56526b490fe890ca5f4333ec1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "17e85c11eca9ce7a7a2dfdb03e79743d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 155069,
            "upload_time": "2025-02-18T21:43:20",
            "upload_time_iso_8601": "2025-02-18T21:43:20.048830Z",
            "url": "https://files.pythonhosted.org/packages/6d/93/ec72c496d79cbbc089b5c745373ba1513b81b9f37e31e2ed5dc2f001580a/python_bidi-0.6.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab32eae714e76ce80d1b1a8cfae4179cc27106a2976c880b20a84bb6e6e20d41",
                "md5": "ec0d1d80dd7b78c212d9681ce7d440b4",
                "sha256": "53122c3492fe3df871eb682c17eb848e24aa702946622ab78141c7027775519f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ec0d1d80dd7b78c212d9681ce7d440b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 160381,
            "upload_time": "2025-02-18T21:43:11",
            "upload_time_iso_8601": "2025-02-18T21:43:11.733460Z",
            "url": "https://files.pythonhosted.org/packages/ab/32/eae714e76ce80d1b1a8cfae4179cc27106a2976c880b20a84bb6e6e20d41/python_bidi-0.6.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e814619e45ea0ed20f10a8b4bc96b1100abd4066936f612eb7158ccf746ff05",
                "md5": "718fe8d9abdcc3800ca8623cca08ad35",
                "sha256": "5351efb4e86281eb26c420066fade935cd670c0c0960edc323b80d0b94a0bc19"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "718fe8d9abdcc3800ca8623cca08ad35",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 269203,
            "upload_time": "2025-02-18T21:42:10",
            "upload_time_iso_8601": "2025-02-18T21:42:10.099271Z",
            "url": "https://files.pythonhosted.org/packages/5e/81/4619e45ea0ed20f10a8b4bc96b1100abd4066936f612eb7158ccf746ff05/python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3043eef6432d029d3d624f3d1b0ef91dc44f2e9089179645117837490d4fcec",
                "md5": "68b2dfc00258a1d8defc1f1832c234ce",
                "sha256": "b8a83f28c104ef3b86ad60219d885b31728eb40c644f414f505068a6ecba3575"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "68b2dfc00258a1d8defc1f1832c234ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 263985,
            "upload_time": "2025-02-18T21:41:57",
            "upload_time_iso_8601": "2025-02-18T21:41:57.582942Z",
            "url": "https://files.pythonhosted.org/packages/f3/04/3eef6432d029d3d624f3d1b0ef91dc44f2e9089179645117837490d4fcec/python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2ee3776d9604496216ebbe92eb0480d724839126eb95400d5c59653453e48e6",
                "md5": "33e2921e6411db04d459847aceae4f9e",
                "sha256": "825d15e547a9a2da5501966db672d6c8a5a063c041b2741ba32cc9775694b0ff"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "33e2921e6411db04d459847aceae4f9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 291228,
            "upload_time": "2025-02-18T21:40:40",
            "upload_time_iso_8601": "2025-02-18T21:40:40.529200Z",
            "url": "https://files.pythonhosted.org/packages/d2/ee/3776d9604496216ebbe92eb0480d724839126eb95400d5c59653453e48e6/python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62b66364a4242ec32d26dff79b14b104968143629cb5b58de88635039d456afd",
                "md5": "3b54e02b26b993dda40d44dec5d45c93",
                "sha256": "82c7f6bb3dfc4f61aecb2290f1ea24bb2450a5cbc94ee8abe5d6278b67859e0b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3b54e02b26b993dda40d44dec5d45c93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 298090,
            "upload_time": "2025-02-18T21:40:55",
            "upload_time_iso_8601": "2025-02-18T21:40:55.579624Z",
            "url": "https://files.pythonhosted.org/packages/62/b6/6364a4242ec32d26dff79b14b104968143629cb5b58de88635039d456afd/python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e4c575f0dd3d9469d326cb62db0afe3e8e7d8173531c675560d06ae9614d137",
                "md5": "b31324a38c5125920c70155701291cf0",
                "sha256": "e7edb0d1baf45c70384e700e10d723a13aabe116e14453cbf099eea4dd763e28"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b31324a38c5125920c70155701291cf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 351642,
            "upload_time": "2025-02-18T21:41:09",
            "upload_time_iso_8601": "2025-02-18T21:41:09.033523Z",
            "url": "https://files.pythonhosted.org/packages/4e/4c/575f0dd3d9469d326cb62db0afe3e8e7d8173531c675560d06ae9614d137/python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "048a657c8e9c03d46c9685d0462b5d929d0f3bc2d1361830d2b607b336a35b22",
                "md5": "7b83db70ba85a8a8ea6b3e5a15e41d95",
                "sha256": "4ecfd1d0f6d2927eb2114b55a63b298766b85fc9f0c9aaacb4e8df3e0468538a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7b83db70ba85a8a8ea6b3e5a15e41d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 331708,
            "upload_time": "2025-02-18T21:41:20",
            "upload_time_iso_8601": "2025-02-18T21:41:20.381842Z",
            "url": "https://files.pythonhosted.org/packages/04/8a/657c8e9c03d46c9685d0462b5d929d0f3bc2d1361830d2b607b336a35b22/python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9ec3088a751cf30eb1bb5a10fd0117d1c12182fd074fd05f503f17ebd423a38",
                "md5": "d2a5f3070a15e7e2eb7017a5ad673bf5",
                "sha256": "534bc7c84159b6e4b777f5fb9122902d6e19223c4242f5b94417de1afcfe2fd9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2a5f3070a15e7e2eb7017a5ad673bf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 292845,
            "upload_time": "2025-02-18T21:41:44",
            "upload_time_iso_8601": "2025-02-18T21:41:44.695770Z",
            "url": "https://files.pythonhosted.org/packages/e9/ec/3088a751cf30eb1bb5a10fd0117d1c12182fd074fd05f503f17ebd423a38/python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "584debb967047a4487dd6311d74b07530fb3e2d4919bef8dbaa8dd125b8f1441",
                "md5": "c3c679bcefbeee7e9f4ebeea137267f6",
                "sha256": "490f8fe09ed423bfe00531f215e3b87e6000b8170408a0ead6ea5626f644b1d1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c3c679bcefbeee7e9f4ebeea137267f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 307560,
            "upload_time": "2025-02-18T21:41:32",
            "upload_time_iso_8601": "2025-02-18T21:41:32.992988Z",
            "url": "https://files.pythonhosted.org/packages/58/4d/ebb967047a4487dd6311d74b07530fb3e2d4919bef8dbaa8dd125b8f1441/python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49d08d79f0d8a7c94504f96ec011cddcf42ce892bebb7a6b9263392592aad40b",
                "md5": "d13ea00e8904bddf7e033a713d0fe26b",
                "sha256": "7906229befa0cea2fe0278a934a27f657b68ce07a2606b1244f814a38b4ab42a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d13ea00e8904bddf7e033a713d0fe26b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 465700,
            "upload_time": "2025-02-18T21:42:21",
            "upload_time_iso_8601": "2025-02-18T21:42:21.853189Z",
            "url": "https://files.pythonhosted.org/packages/49/d0/8d79f0d8a7c94504f96ec011cddcf42ce892bebb7a6b9263392592aad40b/python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f04dedc2138107746dd3f95a08a975bf7797067f7c5aed9b7ba40218716d9a3",
                "md5": "1cd7324a256769acf7ced3b97dbb4f42",
                "sha256": "2d139bab64962731b5288edb1b6db76060c5a5183187efa590499951cd230b02"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1cd7324a256769acf7ced3b97dbb4f42",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 557121,
            "upload_time": "2025-02-18T21:42:35",
            "upload_time_iso_8601": "2025-02-18T21:42:35.159578Z",
            "url": "https://files.pythonhosted.org/packages/3f/04/dedc2138107746dd3f95a08a975bf7797067f7c5aed9b7ba40218716d9a3/python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dd2dcaa0f8db4e1822f4d5c6d54718b26ce0911cff9d283f32b5b3d39b84086",
                "md5": "30a74bca12e85100445ca9be29ee59b8",
                "sha256": "4eb3f28ca5e2f7238eaf67126c7634ec35603cbfbbe9b9b340ffee4a3314455f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "30a74bca12e85100445ca9be29ee59b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 485381,
            "upload_time": "2025-02-18T21:42:47",
            "upload_time_iso_8601": "2025-02-18T21:42:47.747255Z",
            "url": "https://files.pythonhosted.org/packages/7d/d2/dcaa0f8db4e1822f4d5c6d54718b26ce0911cff9d283f32b5b3d39b84086/python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5440967cc37d15d0d5f1684743cff39d8ae1e397680a73e8eaa27b88a18ab182",
                "md5": "9b63802e4071beb0add6c5db96721a14",
                "sha256": "af828457e46b31542569b4391014e6645023f6144de1dabf9fce7e9683235c25"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b63802e4071beb0add6c5db96721a14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 460323,
            "upload_time": "2025-02-18T21:43:00",
            "upload_time_iso_8601": "2025-02-18T21:43:00.600358Z",
            "url": "https://files.pythonhosted.org/packages/54/40/967cc37d15d0d5f1684743cff39d8ae1e397680a73e8eaa27b88a18ab182/python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a344637336105fe7e2a997973ac73963e47b20522b21816f30456daeeabb96cb",
                "md5": "41de9d2f4e7f98b0577091e5092644e7",
                "sha256": "691822fac1d6f3caf12e667dd8b41956485c78b211032747c5f97822ba208726"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "41de9d2f4e7f98b0577091e5092644e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 155286,
            "upload_time": "2025-02-18T21:43:22",
            "upload_time_iso_8601": "2025-02-18T21:43:22.119455Z",
            "url": "https://files.pythonhosted.org/packages/a3/44/637336105fe7e2a997973ac73963e47b20522b21816f30456daeeabb96cb/python_bidi-0.6.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e8937e7a629bef2813aee8e8cd9b3ddbdc44e2653062e21550c12a410961b7b",
                "md5": "aa04f48a2ff7031d749c7975cb3d8fa5",
                "sha256": "edae3dd8e595a40d3cdd6ff8b6d9f3860cd17f674792ea05bba5bf5f1b36e5ab"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aa04f48a2ff7031d749c7975cb3d8fa5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 160575,
            "upload_time": "2025-02-18T21:43:13",
            "upload_time_iso_8601": "2025-02-18T21:43:13.025046Z",
            "url": "https://files.pythonhosted.org/packages/0e/89/37e7a629bef2813aee8e8cd9b3ddbdc44e2653062e21550c12a410961b7b/python_bidi-0.6.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11515f20d5e4db6230ba5a45ad5f900b97a0e692fbf78afce01ee9ffcd7282c3",
                "md5": "ca56a540b60fe35335ecef1eba19ec1a",
                "sha256": "fd9bf9736269ad5cb0d215308fd44e1e02fe591cb9fbb7927d83492358c7ed5f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca56a540b60fe35335ecef1eba19ec1a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 271242,
            "upload_time": "2025-02-18T21:42:11",
            "upload_time_iso_8601": "2025-02-18T21:42:11.928428Z",
            "url": "https://files.pythonhosted.org/packages/11/51/5f20d5e4db6230ba5a45ad5f900b97a0e692fbf78afce01ee9ffcd7282c3/python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe4e5128c25b5a056007eb7597951cc747dfe9712ccfcfdf7e2247fa2715f338",
                "md5": "5d61a3d53906c84cbcc21278dc62aa79",
                "sha256": "d941a6a8a7159982d904982cfe0feb0a794913c5592d8137ccae0d518b2575e4"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d61a3d53906c84cbcc21278dc62aa79",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 265519,
            "upload_time": "2025-02-18T21:41:58",
            "upload_time_iso_8601": "2025-02-18T21:41:58.858141Z",
            "url": "https://files.pythonhosted.org/packages/fe/4e/5128c25b5a056007eb7597951cc747dfe9712ccfcfdf7e2247fa2715f338/python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c1ccaf6cb04639c1e026bf23f4370fc93cef7e70c4864c4fd38ba5f3000668f",
                "md5": "f259e5138057ba2c3b593b49090f4962",
                "sha256": "c0e715b500b09cefccaddb7087978dcd755443b9620aa1cc7b441824253cf2b8"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f259e5138057ba2c3b593b49090f4962",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 292721,
            "upload_time": "2025-02-18T21:40:42",
            "upload_time_iso_8601": "2025-02-18T21:40:42.462055Z",
            "url": "https://files.pythonhosted.org/packages/5c/1c/caf6cb04639c1e026bf23f4370fc93cef7e70c4864c4fd38ba5f3000668f/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420b1185d08bb3744619afb72c2ec83bded6bcfb6e4dcfbeda1cb523c3a48534",
                "md5": "c8c8a61b295a2d22041545c0e606a551",
                "sha256": "4142467ec0caa063aca894ca8f1e8a4d9ca6834093c06b0ad5e7aa98dc801079"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c8c8a61b295a2d22041545c0e606a551",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 299840,
            "upload_time": "2025-02-18T21:40:56",
            "upload_time_iso_8601": "2025-02-18T21:40:56.741622Z",
            "url": "https://files.pythonhosted.org/packages/42/0b/1185d08bb3744619afb72c2ec83bded6bcfb6e4dcfbeda1cb523c3a48534/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "307ef537fac0dec5d2e994f3fe17053183f8afba36f8e5793fdcee7d0e9996bb",
                "md5": "f4e53765233f9569fca0c2eb68677ad8",
                "sha256": "e2f227ee564e0241e57269043bdfa13025d08d0919b349f5c686e8cfc0540dbf"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f4e53765233f9569fca0c2eb68677ad8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 352467,
            "upload_time": "2025-02-18T21:41:10",
            "upload_time_iso_8601": "2025-02-18T21:41:10.277377Z",
            "url": "https://files.pythonhosted.org/packages/30/7e/f537fac0dec5d2e994f3fe17053183f8afba36f8e5793fdcee7d0e9996bb/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06cc2f5347a5bf7f218d4db8a35901b9dce3efe2eb146e5173f768396724dfd6",
                "md5": "936aeaa6f7bcc11614cb65b1bd783cef",
                "sha256": "00081439e969c9d9d2ede8eccef4e91397f601931c4f02864edccb760c8f1db5"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "936aeaa6f7bcc11614cb65b1bd783cef",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 333942,
            "upload_time": "2025-02-18T21:41:23",
            "upload_time_iso_8601": "2025-02-18T21:41:23.879770Z",
            "url": "https://files.pythonhosted.org/packages/06/cc/2f5347a5bf7f218d4db8a35901b9dce3efe2eb146e5173f768396724dfd6/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a001d404c3efc450eff2322a47b5f37685bfff812c42e99228d994ba05767f7a",
                "md5": "c6fcee39edd4499578ad9ea7762ac4ba",
                "sha256": "804c74d070f4e85c6976e55cdbb3f4ead5ec5d7ea0cfad8f18f5464be5174ec9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6fcee39edd4499578ad9ea7762ac4ba",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 294379,
            "upload_time": "2025-02-18T21:41:46",
            "upload_time_iso_8601": "2025-02-18T21:41:46.652727Z",
            "url": "https://files.pythonhosted.org/packages/a0/01/d404c3efc450eff2322a47b5f37685bfff812c42e99228d994ba05767f7a/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e91ff576c53d2f13bf8a84ef46bdad8b7cc0843db303a02818ffdb0861ecd8b",
                "md5": "90dd817f7ed716526977d7eb5cdeb655",
                "sha256": "0781c3c63b4bc3b37273de2076cb9b875436ae19be0ff04752914d02a4375790"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "90dd817f7ed716526977d7eb5cdeb655",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 309616,
            "upload_time": "2025-02-18T21:41:34",
            "upload_time_iso_8601": "2025-02-18T21:41:34.960014Z",
            "url": "https://files.pythonhosted.org/packages/6e/91/ff576c53d2f13bf8a84ef46bdad8b7cc0843db303a02818ffdb0861ecd8b/python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "418ff58e2b990fcb5c8f75aab646e4a16925f119110bbb3907bb70de2c1afd07",
                "md5": "56c6d240f38ee2e949c15d7c263b705d",
                "sha256": "39eed023add8c53684f1de96cb72b4309cc4d412745f59b5d0dab48e6b88317b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56c6d240f38ee2e949c15d7c263b705d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 466775,
            "upload_time": "2025-02-18T21:42:23",
            "upload_time_iso_8601": "2025-02-18T21:42:23.179658Z",
            "url": "https://files.pythonhosted.org/packages/41/8f/f58e2b990fcb5c8f75aab646e4a16925f119110bbb3907bb70de2c1afd07/python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bdbef34eb7bb88d6ab5c7085a89b975e19af821713395be0d3a7423df3db60b",
                "md5": "47d91bb6794ae2d7ef4f2b560b551ea9",
                "sha256": "91a8cb8feac5d0042e2897042fe7bbbeab5dea1ab785f4b7d0c0bbbf6bc7aefd"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "47d91bb6794ae2d7ef4f2b560b551ea9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 558457,
            "upload_time": "2025-02-18T21:42:37",
            "upload_time_iso_8601": "2025-02-18T21:42:37.442243Z",
            "url": "https://files.pythonhosted.org/packages/3b/db/ef34eb7bb88d6ab5c7085a89b975e19af821713395be0d3a7423df3db60b/python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bc5b7829e222f721339f0578f102d467101633970d1443c65b565654944c114",
                "md5": "4fa76236252391a6f61343d98d3a3194",
                "sha256": "a6ac2a3ec5ccc3736e29bb201f27bd33707bfde774d3d222826aa181552590b2"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4fa76236252391a6f61343d98d3a3194",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 486442,
            "upload_time": "2025-02-18T21:42:49",
            "upload_time_iso_8601": "2025-02-18T21:42:49.100810Z",
            "url": "https://files.pythonhosted.org/packages/2b/c5/b7829e222f721339f0578f102d467101633970d1443c65b565654944c114/python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "114046a72df7d1b703023749b73b68dec5d99d36d2740582337d572b9d1f92c4",
                "md5": "5b8814ddd3b40f70f96def4bbed9d8e3",
                "sha256": "6dfa55611022f95058bb7deb2ac20755ae8abbe1104f87515f561e4a56944ba1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b8814ddd3b40f70f96def4bbed9d8e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 461310,
            "upload_time": "2025-02-18T21:43:01",
            "upload_time_iso_8601": "2025-02-18T21:43:01.898670Z",
            "url": "https://files.pythonhosted.org/packages/11/40/46a72df7d1b703023749b73b68dec5d99d36d2740582337d572b9d1f92c4/python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34f7a762d2d75ae62bdc30de7deda9f97d752ebf20d6d092524921c225153722",
                "md5": "b55054f34bba3590b9bed318ae366320",
                "sha256": "a138a7607b459414431a5cdcf5834624d6f87911a8863b51dd363a1e2e5744ab"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b55054f34bba3590b9bed318ae366320",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 271281,
            "upload_time": "2025-02-18T21:42:13",
            "upload_time_iso_8601": "2025-02-18T21:42:13.442472Z",
            "url": "https://files.pythonhosted.org/packages/34/f7/a762d2d75ae62bdc30de7deda9f97d752ebf20d6d092524921c225153722/python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56c0f1f73f7f4b8df6a23d7a214b51e8b5d75c674eaac14ad554c1cdf0b44fe1",
                "md5": "6b75f55ea8a1e20a5e06a699b8ead9aa",
                "sha256": "3e17441d31a8665a44f5f42dba7646bbcd3c51ae6657dd019f6a7bb12618b12f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6b75f55ea8a1e20a5e06a699b8ead9aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 265534,
            "upload_time": "2025-02-18T21:42:00",
            "upload_time_iso_8601": "2025-02-18T21:42:00.913831Z",
            "url": "https://files.pythonhosted.org/packages/56/c0/f1f73f7f4b8df6a23d7a214b51e8b5d75c674eaac14ad554c1cdf0b44fe1/python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84d94346c804619f81ffe4af30ce086807eac2f5250ceb981cca8f44338e7d39",
                "md5": "8e3e62d5b0f61a39b395509c09dd782a",
                "sha256": "7d395e537a34d59e776fcdf50a50786d1a82084849d55cf644f4969ef8156643"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e3e62d5b0f61a39b395509c09dd782a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 293006,
            "upload_time": "2025-02-18T21:40:43",
            "upload_time_iso_8601": "2025-02-18T21:40:43.713563Z",
            "url": "https://files.pythonhosted.org/packages/84/d9/4346c804619f81ffe4af30ce086807eac2f5250ceb981cca8f44338e7d39/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a1a4f5e75997606eebad3aea14d805b6267d2035394adf24ae59fe4532c68e8",
                "md5": "8ee45aa25506a8c93110a0f037e21f35",
                "sha256": "471c1a5fcdbb3de47377d74a7f1017216d9464e5428ca4e66f863e49dca73393"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8ee45aa25506a8c93110a0f037e21f35",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 299933,
            "upload_time": "2025-02-18T21:40:57",
            "upload_time_iso_8601": "2025-02-18T21:40:57.901043Z",
            "url": "https://files.pythonhosted.org/packages/7a/1a/4f5e75997606eebad3aea14d805b6267d2035394adf24ae59fe4532c68e8/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97e9faf9f5b75d82d05651ee5a2e186b27399fc7e9292d44f56c1f15683eb1f8",
                "md5": "115f858c8d32c2ff009da1f44e9492a8",
                "sha256": "6cc626d2f77cac470b3167a28d4975744f3d99f5eaf8f5c2048ac9c0b9cba9dc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "115f858c8d32c2ff009da1f44e9492a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 353332,
            "upload_time": "2025-02-18T21:41:11",
            "upload_time_iso_8601": "2025-02-18T21:41:11.489157Z",
            "url": "https://files.pythonhosted.org/packages/97/e9/faf9f5b75d82d05651ee5a2e186b27399fc7e9292d44f56c1f15683eb1f8/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f5804d878c71c9d2cddb1993c2e72d98a7f4eb389559f2b859077a6513fc150",
                "md5": "2a5e04eac635875cfc08f00d5da1ddd9",
                "sha256": "87a5489189b0a852da0129df77f0cc8e874b7b1ab1f968a209d340477906f076"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2a5e04eac635875cfc08f00d5da1ddd9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 333948,
            "upload_time": "2025-02-18T21:41:25",
            "upload_time_iso_8601": "2025-02-18T21:41:25.642826Z",
            "url": "https://files.pythonhosted.org/packages/7f/58/04d878c71c9d2cddb1993c2e72d98a7f4eb389559f2b859077a6513fc150/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ff7c7dfb7150af1ae50655e38f09f93fab94b61631aa68bc498210abd4d69a9",
                "md5": "765fd42c95042f07d86225401e54fe63",
                "sha256": "0eb12b724cc99853e0e0425b54c1c2219492486afaca106c827204b4189504db"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "765fd42c95042f07d86225401e54fe63",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 294529,
            "upload_time": "2025-02-18T21:41:47",
            "upload_time_iso_8601": "2025-02-18T21:41:47.882840Z",
            "url": "https://files.pythonhosted.org/packages/2f/f7/c7dfb7150af1ae50655e38f09f93fab94b61631aa68bc498210abd4d69a9/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63f46881eee008329903e222bf9e961ca26d14a3f3fabfa694ae2149ec1809b1",
                "md5": "c605a6fe04b5829bcb9dd2c596c18d79",
                "sha256": "82e0befbc1078a964c6b6f2f7a616ae8015b52fdcd2f03979abf0fb1f2f18b48"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c605a6fe04b5829bcb9dd2c596c18d79",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 309433,
            "upload_time": "2025-02-18T21:41:36",
            "upload_time_iso_8601": "2025-02-18T21:41:36.174363Z",
            "url": "https://files.pythonhosted.org/packages/63/f4/6881eee008329903e222bf9e961ca26d14a3f3fabfa694ae2149ec1809b1/python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abe1c2041fbc433f9db8788eecbe30dcfc32b487f16aa7a9aa9956ae8265900f",
                "md5": "c9efb871fe89d507484335c49599458f",
                "sha256": "6255ad385bb90aa39f8340967eef35657e52f8ed011773d37113cafa0ed5eefd"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9efb871fe89d507484335c49599458f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 466673,
            "upload_time": "2025-02-18T21:42:24",
            "upload_time_iso_8601": "2025-02-18T21:42:24.830776Z",
            "url": "https://files.pythonhosted.org/packages/ab/e1/c2041fbc433f9db8788eecbe30dcfc32b487f16aa7a9aa9956ae8265900f/python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5056fd599b934410b989542a076ebd254d080daab3056917f3542b705335904b",
                "md5": "51dc487e73380dd6ab757f7260d81b24",
                "sha256": "c07e4d6d8c8f574aa135436207a37bba522443a8490b0ba720b54d343dfde1a7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "51dc487e73380dd6ab757f7260d81b24",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 558376,
            "upload_time": "2025-02-18T21:42:38",
            "upload_time_iso_8601": "2025-02-18T21:42:38.800254Z",
            "url": "https://files.pythonhosted.org/packages/50/56/fd599b934410b989542a076ebd254d080daab3056917f3542b705335904b/python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fcc641ee9d3c8bcc58891105c9746100cabc2450cb1d6a4835f4464969014fd",
                "md5": "f9a666de9b76c8ec76cae2ccee21c980",
                "sha256": "bbbcb28474b71e3ad05d8bd483348efe41fb7dfef6bd3046f3072baa0954d746"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f9a666de9b76c8ec76cae2ccee21c980",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 486355,
            "upload_time": "2025-02-18T21:42:50",
            "upload_time_iso_8601": "2025-02-18T21:42:50.449829Z",
            "url": "https://files.pythonhosted.org/packages/8f/cc/641ee9d3c8bcc58891105c9746100cabc2450cb1d6a4835f4464969014fd/python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74cfa0a6d4483b15939540a07af89e40650fc792c11c48de912a3375144f1121",
                "md5": "ea7880b13dc6e191290bc6bced3549fb",
                "sha256": "b65b4105998436405a3e6bca60cbf9714f6a08099b16c0cf4752a4a3a70eb45b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea7880b13dc6e191290bc6bced3549fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 461465,
            "upload_time": "2025-02-18T21:43:04",
            "upload_time_iso_8601": "2025-02-18T21:43:04.155420Z",
            "url": "https://files.pythonhosted.org/packages/74/cf/a0a6d4483b15939540a07af89e40650fc792c11c48de912a3375144f1121/python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4de1822200711beaadb2f334fa25f59ad9c2627de423c103dde7e81aedbc8e2",
                "md5": "39d23d7525337e0dd84473d48fa9b66b",
                "sha256": "07db4c7da502593bd6e39c07b3a38733704070de0cbf92a7b7277b7be8867dd9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.6.tar.gz",
            "has_sig": false,
            "md5_digest": "39d23d7525337e0dd84473d48fa9b66b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 45102,
            "upload_time": "2025-02-18T21:43:05",
            "upload_time_iso_8601": "2025-02-18T21:43:05.598665Z",
            "url": "https://files.pythonhosted.org/packages/c4/de/1822200711beaadb2f334fa25f59ad9c2627de423c103dde7e81aedbc8e2/python_bidi-0.6.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-18 21:43:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MeirKriheli",
    "github_project": "python-bidi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "python-bidi"
}
        
Elapsed time: 0.55660s