python-bidi


Namepython-bidi JSON
Version 0.6.3 PyPI version JSON
download
home_pageNone
SummaryPython Bidi layout wrapping the Rust crate unicode-bidi
upload_time2024-10-15 16:18:11
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/74/b5/c1684fb8120ad868b43e4b037ac83aafaa70724cdb078d066bae836c31f6/python_bidi-0.6.3.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.3",
    "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": "29602e3f97f2b47dbfbaf4af9b0a2b44c50cbc2fe189a8c6aafefb1fc9f437d2",
                "md5": "117dc108787ba92b06e459733bdafedc",
                "sha256": "7e2a62d7ebb4af9831c85921063154ab4067c73768ad04f466dff1359e6f2650"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "117dc108787ba92b06e459733bdafedc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 257485,
            "upload_time": "2024-10-15T16:16:09",
            "upload_time_iso_8601": "2024-10-15T16:16:09.662663Z",
            "url": "https://files.pythonhosted.org/packages/29/60/2e3f97f2b47dbfbaf4af9b0a2b44c50cbc2fe189a8c6aafefb1fc9f437d2/python_bidi-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99b4a8a28b0380d3117ae8f206e38111c98b24b34a06c5c03457e5796998222b",
                "md5": "c05bfed9e403d7e51f65f2582a3ed6fc",
                "sha256": "6b8035f02c3fcb52d372bfe51db00a0c95a3fdd6f0504a32e70d4f799809070d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c05bfed9e403d7e51f65f2582a3ed6fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 253214,
            "upload_time": "2024-10-15T16:15:49",
            "upload_time_iso_8601": "2024-10-15T16:15:49.832035Z",
            "url": "https://files.pythonhosted.org/packages/99/b4/a8a28b0380d3117ae8f206e38111c98b24b34a06c5c03457e5796998222b/python_bidi-0.6.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94aa2f8db528f278a65b1e4358c08f8c5c227cf9ca1cd2bbdd54ea22c680008b",
                "md5": "24dc851da8db2f820edba7947efea3ff",
                "sha256": "854edec3ef1ef50c49f689b44900fb6c51d35f277e10b4749755d053f405a44a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "24dc851da8db2f820edba7947efea3ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 294838,
            "upload_time": "2024-10-15T16:14:04",
            "upload_time_iso_8601": "2024-10-15T16:14:04.288518Z",
            "url": "https://files.pythonhosted.org/packages/94/aa/2f8db528f278a65b1e4358c08f8c5c227cf9ca1cd2bbdd54ea22c680008b/python_bidi-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33e07f4953f874edbf19fded721c6dcb77aff1915709735b5781816d78980d30",
                "md5": "81f1dbd2c91df1c143699cfe40b6ad0e",
                "sha256": "fe4c4ab61701a5e3b916c6b63811c6fd708539a3f189ec6ca6bd22948a125af0"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "81f1dbd2c91df1c143699cfe40b6ad0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 297562,
            "upload_time": "2024-10-15T16:14:22",
            "upload_time_iso_8601": "2024-10-15T16:14:22.014759Z",
            "url": "https://files.pythonhosted.org/packages/33/e0/7f4953f874edbf19fded721c6dcb77aff1915709735b5781816d78980d30/python_bidi-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52c1e579542a519f7999421670f6d0b825371111a8542cd8cbccde1400ef655a",
                "md5": "2dc3971d1f6bc0882879a5856b8c3521",
                "sha256": "855a4dc2d237587a734babc6179130f9e7b7c028651cdead6ec5b162115ac112"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2dc3971d1f6bc0882879a5856b8c3521",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 323416,
            "upload_time": "2024-10-15T16:14:39",
            "upload_time_iso_8601": "2024-10-15T16:14:39.094131Z",
            "url": "https://files.pythonhosted.org/packages/52/c1/e579542a519f7999421670f6d0b825371111a8542cd8cbccde1400ef655a/python_bidi-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d96b09c31613ca545da21191d8e4f1956a7a1cd737a963ebbe5bf951301a045b",
                "md5": "b8c97c34a7d15a965369138a776d09c7",
                "sha256": "3c0635bf46ddd56cf3f71d0711fbc160fd90c36fd3176b3e91b0bf7447e549f1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b8c97c34a7d15a965369138a776d09c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 329408,
            "upload_time": "2024-10-15T16:14:55",
            "upload_time_iso_8601": "2024-10-15T16:14:55.933505Z",
            "url": "https://files.pythonhosted.org/packages/d9/6b/09c31613ca545da21191d8e4f1956a7a1cd737a963ebbe5bf951301a045b/python_bidi-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ceae451f3c838dd4931756f5bdd2bdea88d47c09399a5b7f018907281359569",
                "md5": "d3c860f1ceb60390454ee9302e23e47f",
                "sha256": "7a4b7b6e458173614348db8e4a4406e468338c13ecc7b74d1e208d38d0d1d264"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3c860f1ceb60390454ee9302e23e47f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 286782,
            "upload_time": "2024-10-15T16:15:31",
            "upload_time_iso_8601": "2024-10-15T16:15:31.810522Z",
            "url": "https://files.pythonhosted.org/packages/2c/ea/e451f3c838dd4931756f5bdd2bdea88d47c09399a5b7f018907281359569/python_bidi-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79fae008ae3d0da6f6414195754aa52d8d7c203fb2cc891d2af5d029e67096b3",
                "md5": "2df18673b4159c9ca32a2cc3eca40ea6",
                "sha256": "25a39a3b61851506ed489867c69f3580ba75063195bf4b00f1983de88e02bf30"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2df18673b4159c9ca32a2cc3eca40ea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 301152,
            "upload_time": "2024-10-15T16:15:14",
            "upload_time_iso_8601": "2024-10-15T16:15:14.012547Z",
            "url": "https://files.pythonhosted.org/packages/79/fa/e008ae3d0da6f6414195754aa52d8d7c203fb2cc891d2af5d029e67096b3/python_bidi-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0cf515e91808c2778a0611dd8c09f11708ee23f5bad43ef6546ed2bbecd6734",
                "md5": "e232771d36089528de598da37e11d5cc",
                "sha256": "24ea5c9f5cf9f3919d81669d24a1405709f4d66c82c3ffa7f982fcece856b325"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e232771d36089528de598da37e11d5cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 468021,
            "upload_time": "2024-10-15T16:16:29",
            "upload_time_iso_8601": "2024-10-15T16:16:29.579340Z",
            "url": "https://files.pythonhosted.org/packages/a0/cf/515e91808c2778a0611dd8c09f11708ee23f5bad43ef6546ed2bbecd6734/python_bidi-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2651fe80453916c398f67f2ff33023fe683c8c8f873dadda3a2a99388b504f4a",
                "md5": "eff1d541512e6bbfa92215e39bd8b86f",
                "sha256": "631d32fd1414d4795348122b820dadbff1ddaa6e53a70c1ee9d5a84911cc3c2d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eff1d541512e6bbfa92215e39bd8b86f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 549822,
            "upload_time": "2024-10-15T16:16:55",
            "upload_time_iso_8601": "2024-10-15T16:16:55.220529Z",
            "url": "https://files.pythonhosted.org/packages/26/51/fe80453916c398f67f2ff33023fe683c8c8f873dadda3a2a99388b504f4a/python_bidi-0.6.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f521282ea630232e8dad595d2e5a55303eb86496f22fbcee730868bfb426403d",
                "md5": "9288562af6e4e62b6deebf4c24517f59",
                "sha256": "205aac547f8166005e041b33069da2c8a345171b0d7c8177c3d16408acde9acd"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9288562af6e4e62b6deebf4c24517f59",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 471868,
            "upload_time": "2024-10-15T16:17:18",
            "upload_time_iso_8601": "2024-10-15T16:17:18.883728Z",
            "url": "https://files.pythonhosted.org/packages/f5/21/282ea630232e8dad595d2e5a55303eb86496f22fbcee730868bfb426403d/python_bidi-0.6.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46807d2c44d640d71b7c236936043ec48b4a72a320b8dde6e19597649c0152b6",
                "md5": "e1c82eb28a6e47daf196a9cdf65fba49",
                "sha256": "a05249eac27e983a103babb9a2812726312bd8f685fdc3264f78b8ff8124d09a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1c82eb28a6e47daf196a9cdf65fba49",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 452051,
            "upload_time": "2024-10-15T16:17:44",
            "upload_time_iso_8601": "2024-10-15T16:17:44.913882Z",
            "url": "https://files.pythonhosted.org/packages/46/80/7d2c44d640d71b7c236936043ec48b4a72a320b8dde6e19597649c0152b6/python_bidi-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83c41cff2dfaf363daa8e17ece18f4eee2d9543cb1f55803f6269aba1eb2329a",
                "md5": "673fab500fe7c1d532a69a52856d2bad",
                "sha256": "44023d51ae78ae119ef11043b5fb8f3dfc5de5ec04d937d7c5abc4da8cba1770"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "673fab500fe7c1d532a69a52856d2bad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 151742,
            "upload_time": "2024-10-15T16:18:33",
            "upload_time_iso_8601": "2024-10-15T16:18:33.957173Z",
            "url": "https://files.pythonhosted.org/packages/83/c4/1cff2dfaf363daa8e17ece18f4eee2d9543cb1f55803f6269aba1eb2329a/python_bidi-0.6.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efd65ed0414bdb9ba0c7d2710d967197c7b3a2b3c40d4f2b1974ba1ed175b8e6",
                "md5": "0d4dfd5aa45018ca23545d7e49cccfb5",
                "sha256": "866865bbbc97a144e74508e2513373bb590d38fca3b6e52b6905de54b34ddbd9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d4dfd5aa45018ca23545d7e49cccfb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 157244,
            "upload_time": "2024-10-15T16:18:15",
            "upload_time_iso_8601": "2024-10-15T16:18:15.099542Z",
            "url": "https://files.pythonhosted.org/packages/ef/d6/5ed0414bdb9ba0c7d2710d967197c7b3a2b3c40d4f2b1974ba1ed175b8e6/python_bidi-0.6.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00b0c3921d4c7b498d749cd0ca6ee2be9a78b3442e871bf590fd344118160f78",
                "md5": "5b8fa37e7bb07359354e2266b4296a1d",
                "sha256": "a656b91c74b77a5b005e6dac092947f00d546cce5d0ca70b6b6741b93f7705bf"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b8fa37e7bb07359354e2266b4296a1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 257551,
            "upload_time": "2024-10-15T16:16:11",
            "upload_time_iso_8601": "2024-10-15T16:16:11.624597Z",
            "url": "https://files.pythonhosted.org/packages/00/b0/c3921d4c7b498d749cd0ca6ee2be9a78b3442e871bf590fd344118160f78/python_bidi-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2929298501cf59ed614bb1e78728d1cad57555dda7d114e7f34aabf215a45c41",
                "md5": "cc96619d17e891ae8bfa0163ed7ce8b6",
                "sha256": "4cb80856ce1e3f24c0d878fc85ab767c201ab8891a68f41d8da87eaf39c827de"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc96619d17e891ae8bfa0163ed7ce8b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 253211,
            "upload_time": "2024-10-15T16:15:52",
            "upload_time_iso_8601": "2024-10-15T16:15:52.355834Z",
            "url": "https://files.pythonhosted.org/packages/29/29/298501cf59ed614bb1e78728d1cad57555dda7d114e7f34aabf215a45c41/python_bidi-0.6.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fce4dab2d83eabaae763ae637190a0af97676caf4f7bbe3fc12f25e5d3f4e2db",
                "md5": "85f9f952f6fe7416f6b23de4cd0f1ec5",
                "sha256": "9ad3f50925a5943d244c6ca05e0553922e917b3cc415580460d86af6a385ee23"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "85f9f952f6fe7416f6b23de4cd0f1ec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 294937,
            "upload_time": "2024-10-15T16:14:06",
            "upload_time_iso_8601": "2024-10-15T16:14:06.577725Z",
            "url": "https://files.pythonhosted.org/packages/fc/e4/dab2d83eabaae763ae637190a0af97676caf4f7bbe3fc12f25e5d3f4e2db/python_bidi-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef36747d1eb808c075d065b6fbab065b42c8be4925361b40af01e65afa598ff3",
                "md5": "c4affc3ded458adee651fcc14056f5de",
                "sha256": "22f293338ec7d44e02991787d306d39e02f0b145810eef60802abd7833b6c2d0"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c4affc3ded458adee651fcc14056f5de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 297497,
            "upload_time": "2024-10-15T16:14:23",
            "upload_time_iso_8601": "2024-10-15T16:14:23.928118Z",
            "url": "https://files.pythonhosted.org/packages/ef/36/747d1eb808c075d065b6fbab065b42c8be4925361b40af01e65afa598ff3/python_bidi-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bb6a04586be453fe3abaed5c190e3a00f19e33e7c0d98362bb522533457d2fe",
                "md5": "a66c61c127f960a4c06af85b5a2a8418",
                "sha256": "12b1d522cbd0af85094ccce8ae95c57a6a9d4f98e85f3e7c1ad1fb5d1c2cd09e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a66c61c127f960a4c06af85b5a2a8418",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 323300,
            "upload_time": "2024-10-15T16:14:40",
            "upload_time_iso_8601": "2024-10-15T16:14:40.714128Z",
            "url": "https://files.pythonhosted.org/packages/3b/b6/a04586be453fe3abaed5c190e3a00f19e33e7c0d98362bb522533457d2fe/python_bidi-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d486bf8b48d1d8712b951cc5594bfd3f0d53cfc5ffb02e1948475888c9c1945",
                "md5": "97f2b72666e7d2c30fb86fc18d17391a",
                "sha256": "da00726ebf17f857d458b310e868cae4b3bac668396cd5e874e17809894417e5"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "97f2b72666e7d2c30fb86fc18d17391a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 329011,
            "upload_time": "2024-10-15T16:14:57",
            "upload_time_iso_8601": "2024-10-15T16:14:57.955140Z",
            "url": "https://files.pythonhosted.org/packages/4d/48/6bf8b48d1d8712b951cc5594bfd3f0d53cfc5ffb02e1948475888c9c1945/python_bidi-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5961c707bf04de816c3278943e3fb1378ca41a4381ea8fedf9ca2feba87748e6",
                "md5": "eb3958f0a224af2c31e1a2017c5db137",
                "sha256": "3b1204f2aa62ac6226f11dd1bee250d428abb128046cf1999317b3f303c70ea2"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb3958f0a224af2c31e1a2017c5db137",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 286608,
            "upload_time": "2024-10-15T16:15:33",
            "upload_time_iso_8601": "2024-10-15T16:15:33.716020Z",
            "url": "https://files.pythonhosted.org/packages/59/61/c707bf04de816c3278943e3fb1378ca41a4381ea8fedf9ca2feba87748e6/python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "613b57b33a0785ec9899b02d70d061607ba33e4479c48ade36b2892c461a7f0d",
                "md5": "06c80b398cfde2528c2259e2aff720cf",
                "sha256": "7c99881440b2a4d8de7c2d7f3ac23e5f0a0ee0c5ae652f53188a21e9b0911f2d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "06c80b398cfde2528c2259e2aff720cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 301050,
            "upload_time": "2024-10-15T16:15:15",
            "upload_time_iso_8601": "2024-10-15T16:15:15.784844Z",
            "url": "https://files.pythonhosted.org/packages/61/3b/57b33a0785ec9899b02d70d061607ba33e4479c48ade36b2892c461a7f0d/python_bidi-0.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4893c36235c48d68003a63401591fd4884cade4369ec2e666af3029f1db12667",
                "md5": "96169d6160014713907d2a9e15757376",
                "sha256": "10f7c23dbb23dd0d2b0f67f7d4c2ba59eb42f777e1749ed9e13dbc8c4d28ea75"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96169d6160014713907d2a9e15757376",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 467960,
            "upload_time": "2024-10-15T16:16:31",
            "upload_time_iso_8601": "2024-10-15T16:16:31.843244Z",
            "url": "https://files.pythonhosted.org/packages/48/93/c36235c48d68003a63401591fd4884cade4369ec2e666af3029f1db12667/python_bidi-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56cd0e197aad0a8b8ff9c980adb4dc5dfc34ff1c1709c8dc3557dc15efafc73f",
                "md5": "3d094ea1d00d8385e9bca31377417ba6",
                "sha256": "d7527247a9d8e0aa9d2d4ecd24cbd8216bc4e3e89e77f9c833eedf278d9761cc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d094ea1d00d8385e9bca31377417ba6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 549878,
            "upload_time": "2024-10-15T16:16:57",
            "upload_time_iso_8601": "2024-10-15T16:16:57.643794Z",
            "url": "https://files.pythonhosted.org/packages/56/cd/0e197aad0a8b8ff9c980adb4dc5dfc34ff1c1709c8dc3557dc15efafc73f/python_bidi-0.6.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b42115e9444084c234758b32cbcde7be57f03ca9a153d8d82817723c85df27cb",
                "md5": "f4d087c241720d2ee7763da01bc6bc9a",
                "sha256": "5d6829865ff94925280af066c8536ff9595a6e40d300f9fc0e6ca4ebbf3bc306"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f4d087c241720d2ee7763da01bc6bc9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 471859,
            "upload_time": "2024-10-15T16:17:21",
            "upload_time_iso_8601": "2024-10-15T16:17:21.468877Z",
            "url": "https://files.pythonhosted.org/packages/b4/21/15e9444084c234758b32cbcde7be57f03ca9a153d8d82817723c85df27cb/python_bidi-0.6.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee6f583ab5578e73487466f1f12130689422f866be20b9b1b61d06dd160fc981",
                "md5": "69f40c106eaff86eab65cf927e4bdb11",
                "sha256": "0e0d574c22fbab1ea996ddb1ebb3eabae521f5d129d7c699445cad81e81bc351"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69f40c106eaff86eab65cf927e4bdb11",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 451875,
            "upload_time": "2024-10-15T16:17:47",
            "upload_time_iso_8601": "2024-10-15T16:17:47.983908Z",
            "url": "https://files.pythonhosted.org/packages/ee/6f/583ab5578e73487466f1f12130689422f866be20b9b1b61d06dd160fc981/python_bidi-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26f44f427662c154cd2ad7383ffa14740d39f3032ba088a973b95796d868f065",
                "md5": "060bf1defe8ee87eb4c192638dc26068",
                "sha256": "8c5fc9f065c24bd8058d7e9a5d42415134de3cc1aa480eebc27e2ca132919dd8"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "060bf1defe8ee87eb4c192638dc26068",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 151834,
            "upload_time": "2024-10-15T16:18:36",
            "upload_time_iso_8601": "2024-10-15T16:18:36.996573Z",
            "url": "https://files.pythonhosted.org/packages/26/f4/4f427662c154cd2ad7383ffa14740d39f3032ba088a973b95796d868f065/python_bidi-0.6.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5441fcb4350e6283a1ccd64666373274dd76eb0a9f91c3c1ac8e06e5046c5a5",
                "md5": "bb6ed595f5965f373ef3de75e6b51e2e",
                "sha256": "46ee694cf5a632a8d47cc35de6926581e586425b582216962d3e6d913aea0b88"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb6ed595f5965f373ef3de75e6b51e2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 157241,
            "upload_time": "2024-10-15T16:18:17",
            "upload_time_iso_8601": "2024-10-15T16:18:17.829731Z",
            "url": "https://files.pythonhosted.org/packages/f5/44/1fcb4350e6283a1ccd64666373274dd76eb0a9f91c3c1ac8e06e5046c5a5/python_bidi-0.6.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99154f316e1b463ea71b4533e904548f47000f9e20ad394b3e8c83ac65638534",
                "md5": "5d984e040edb49d1293d56c9e8470fe2",
                "sha256": "4bdc9dc1143c558ca6931d6712339a30470959f2b7eecb3d0687db7075c20a87"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d984e040edb49d1293d56c9e8470fe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 257039,
            "upload_time": "2024-10-15T16:16:13",
            "upload_time_iso_8601": "2024-10-15T16:16:13.850462Z",
            "url": "https://files.pythonhosted.org/packages/99/15/4f316e1b463ea71b4533e904548f47000f9e20ad394b3e8c83ac65638534/python_bidi-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad2a9b54acafa641c360ba3a632726046a8da38da1f3ed7b816ae6eec748ca95",
                "md5": "5b951195bf3ef4594204685bd6d65c18",
                "sha256": "0775499b8037103278f05b2bf92d25bf04f40a9f77884ec3d42b01a1e52a40fe"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b951195bf3ef4594204685bd6d65c18",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 252791,
            "upload_time": "2024-10-15T16:15:54",
            "upload_time_iso_8601": "2024-10-15T16:15:54.478638Z",
            "url": "https://files.pythonhosted.org/packages/ad/2a/9b54acafa641c360ba3a632726046a8da38da1f3ed7b816ae6eec748ca95/python_bidi-0.6.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cab255f4d18760dac53e542817b3a2e11e3d5ae631678f2c2248c6f1e67336ea",
                "md5": "2379ddbea5634c35cfb05474287b5137",
                "sha256": "eb3091aa5efbfc4da6fd52a2fccbf7853c6dc253ddaf9a189bcf3c4345865aa9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2379ddbea5634c35cfb05474287b5137",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 294297,
            "upload_time": "2024-10-15T16:14:08",
            "upload_time_iso_8601": "2024-10-15T16:14:08.477924Z",
            "url": "https://files.pythonhosted.org/packages/ca/b2/55f4d18760dac53e542817b3a2e11e3d5ae631678f2c2248c6f1e67336ea/python_bidi-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "637bd1ca351cdab44300296a4b758a370bf923666deaa4d19819a7fc4478dc52",
                "md5": "e8b7cbd31e849742ea027ce579448d43",
                "sha256": "c75a9b68b3f5a8da9a33fe37607d9b267a8a3c5806d283a4a47365256773dd1e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e8b7cbd31e849742ea027ce579448d43",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 297650,
            "upload_time": "2024-10-15T16:14:26",
            "upload_time_iso_8601": "2024-10-15T16:14:26.116118Z",
            "url": "https://files.pythonhosted.org/packages/63/7b/d1ca351cdab44300296a4b758a370bf923666deaa4d19819a7fc4478dc52/python_bidi-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e49ebcb93f0e30abbd9fbbda736402e3ee86566b1253ea57d1e9b465eb4b62a0",
                "md5": "8b120c5f5f17af53b16b2660a84e3383",
                "sha256": "208e09819ee0485c2ed4dc1932c39fc073dac3f2cb70b6d2ae0b7296e86831e6"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8b120c5f5f17af53b16b2660a84e3383",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 323959,
            "upload_time": "2024-10-15T16:14:42",
            "upload_time_iso_8601": "2024-10-15T16:14:42.898706Z",
            "url": "https://files.pythonhosted.org/packages/e4/9e/bcb93f0e30abbd9fbbda736402e3ee86566b1253ea57d1e9b465eb4b62a0/python_bidi-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26dde795e1186ba6b9e3ebb9bc316c6572036e59d0c2841a5e182403d483eb57",
                "md5": "c30c48f3aca10e8e029c62363b4ffccc",
                "sha256": "e17b67d86cd38f2bebc4a46090f83cabb0d1da3a3c920c68efe8093ae1a8d0d1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c30c48f3aca10e8e029c62363b4ffccc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 327207,
            "upload_time": "2024-10-15T16:15:00",
            "upload_time_iso_8601": "2024-10-15T16:15:00.469355Z",
            "url": "https://files.pythonhosted.org/packages/26/dd/e795e1186ba6b9e3ebb9bc316c6572036e59d0c2841a5e182403d483eb57/python_bidi-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c927fc5777273bcb3de7b82524852995edd67dc9948ed916a3f9236714628ae3",
                "md5": "b7e4108242c4409ebfa64746a647bc4b",
                "sha256": "933a17938f767fa64a8365732eba787a81c26214d89e1b3abe87912325ba26a9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7e4108242c4409ebfa64746a647bc4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 286371,
            "upload_time": "2024-10-15T16:15:35",
            "upload_time_iso_8601": "2024-10-15T16:15:35.940990Z",
            "url": "https://files.pythonhosted.org/packages/c9/27/fc5777273bcb3de7b82524852995edd67dc9948ed916a3f9236714628ae3/python_bidi-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e91190b4072461759074564a29d05a83128f02214fea1012ca0984d3a5a7fdbb",
                "md5": "5c5b68118db325935dd39512f81dc633",
                "sha256": "772efb3e0ef17396bfd9d47da4805c74ed6c04f27cac08d7757f76602837fb9d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5c5b68118db325935dd39512f81dc633",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 300797,
            "upload_time": "2024-10-15T16:15:17",
            "upload_time_iso_8601": "2024-10-15T16:15:17.994234Z",
            "url": "https://files.pythonhosted.org/packages/e9/11/90b4072461759074564a29d05a83128f02214fea1012ca0984d3a5a7fdbb/python_bidi-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "612cd50a50adf51b6c53022b9ad247d65cad50acde94f877fbab49a8854ccaae",
                "md5": "a04fbb0981fd615f7ebd2f1a543e5d83",
                "sha256": "9a99114f33f8c0273a61b4afe7d4d715e098318ee4e5ce8f6bb5da8dcd3f95c7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a04fbb0981fd615f7ebd2f1a543e5d83",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 468349,
            "upload_time": "2024-10-15T16:16:37",
            "upload_time_iso_8601": "2024-10-15T16:16:37.460417Z",
            "url": "https://files.pythonhosted.org/packages/61/2c/d50a50adf51b6c53022b9ad247d65cad50acde94f877fbab49a8854ccaae/python_bidi-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6846a9d285552961670aedc0bbac403defa7c9c4b17ab6957ef0b7db05d12eec",
                "md5": "13ac42cea9b4ca56022ae5d61f843820",
                "sha256": "b30e620d39e85a30bb42f460fd8b5274caf261517edeb853b975d9ea1939b6bd"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "13ac42cea9b4ca56022ae5d61f843820",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 549521,
            "upload_time": "2024-10-15T16:17:00",
            "upload_time_iso_8601": "2024-10-15T16:17:00.358659Z",
            "url": "https://files.pythonhosted.org/packages/68/46/a9d285552961670aedc0bbac403defa7c9c4b17ab6957ef0b7db05d12eec/python_bidi-0.6.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "363a5b6b6b73a210cc99b1d1ea697741fc4fc1853aa788b3db1737bfdcaabc75",
                "md5": "062ecbde646e55496ed07ff233be0a9a",
                "sha256": "bee94e3152a6c9ba731e086c9cc6203904290506ba52c505a2e59abab481eb13"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "062ecbde646e55496ed07ff233be0a9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 471509,
            "upload_time": "2024-10-15T16:17:24",
            "upload_time_iso_8601": "2024-10-15T16:17:24.585925Z",
            "url": "https://files.pythonhosted.org/packages/36/3a/5b6b6b73a210cc99b1d1ea697741fc4fc1853aa788b3db1737bfdcaabc75/python_bidi-0.6.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd5ad3d0588caeb041bbf85b421b30a7a9893057c72fcddcaaf2d54289123487",
                "md5": "21efb32e76b78cb0ee2d8f9a0e5b6897",
                "sha256": "926164ec594e9ea9a64faf54273c711d5e3233bcc6ef8966c6eeaddfb3b3075f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21efb32e76b78cb0ee2d8f9a0e5b6897",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 451688,
            "upload_time": "2024-10-15T16:17:51",
            "upload_time_iso_8601": "2024-10-15T16:17:51.185768Z",
            "url": "https://files.pythonhosted.org/packages/dd/5a/d3d0588caeb041bbf85b421b30a7a9893057c72fcddcaaf2d54289123487/python_bidi-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d1f0539881d381dda2a281056ccfb55905439bad86cfb2787792065a2d8d08b",
                "md5": "0296601bdad8ac3b42fafaeb5fe2af3a",
                "sha256": "cea395a7daee14c7d50a7e20890d12b9ff1938d81b23eb564f1707a175c37202"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0296601bdad8ac3b42fafaeb5fe2af3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 151600,
            "upload_time": "2024-10-15T16:18:39",
            "upload_time_iso_8601": "2024-10-15T16:18:39.890153Z",
            "url": "https://files.pythonhosted.org/packages/1d/1f/0539881d381dda2a281056ccfb55905439bad86cfb2787792065a2d8d08b/python_bidi-0.6.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aae7b4f6a71a7e7aec0e17c36bfca2ff5d962b86b0e04e278de6fc6c0cd6d643",
                "md5": "dd482c7f86d12111062818df2c9c6974",
                "sha256": "350e6c76f942465871f2b473a2076f5002f1df06e4c7abee3029ccca5f006786"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd482c7f86d12111062818df2c9c6974",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 156933,
            "upload_time": "2024-10-15T16:18:20",
            "upload_time_iso_8601": "2024-10-15T16:18:20.904853Z",
            "url": "https://files.pythonhosted.org/packages/aa/e7/b4f6a71a7e7aec0e17c36bfca2ff5d962b86b0e04e278de6fc6c0cd6d643/python_bidi-0.6.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6177957be8fa4f681c31af11323376ecd2dcac6cfbadb12e8555e2b826cf6653",
                "md5": "e5ea0a1b572b7f824782e6d54319e6c9",
                "sha256": "617d4391b19969de725922a256599e8218fc9c1ef0ff85884f1698fff482a977"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5ea0a1b572b7f824782e6d54319e6c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 256754,
            "upload_time": "2024-10-15T16:16:16",
            "upload_time_iso_8601": "2024-10-15T16:16:16.348841Z",
            "url": "https://files.pythonhosted.org/packages/61/77/957be8fa4f681c31af11323376ecd2dcac6cfbadb12e8555e2b826cf6653/python_bidi-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "397eb66b86a1aca9725366b6f4fd549ff36162de7acd53ba13de7704cbc56968",
                "md5": "dc9bbd3f4baf9f543d96315483bdf9eb",
                "sha256": "81f418d54948542b21c03cd8ce622a480ead85fc53175a124c4562bdf55cec49"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc9bbd3f4baf9f543d96315483bdf9eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 252526,
            "upload_time": "2024-10-15T16:15:56",
            "upload_time_iso_8601": "2024-10-15T16:15:56.653706Z",
            "url": "https://files.pythonhosted.org/packages/39/7e/b66b86a1aca9725366b6f4fd549ff36162de7acd53ba13de7704cbc56968/python_bidi-0.6.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbc9149957c1d75156bf617fd9824b92b7468926a4ba90e74cf1254acffb31de",
                "md5": "3e5c2a86503208a8a1d2357135352882",
                "sha256": "0999b77af58396cfd789c8d068bac78d2d51363265aaf1369622099be9e0eb32"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e5c2a86503208a8a1d2357135352882",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 294071,
            "upload_time": "2024-10-15T16:14:10",
            "upload_time_iso_8601": "2024-10-15T16:14:10.468067Z",
            "url": "https://files.pythonhosted.org/packages/cb/c9/149957c1d75156bf617fd9824b92b7468926a4ba90e74cf1254acffb31de/python_bidi-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "635029ba7d99cb23138da8ce070a677cc1eaaa1545f18cb54350d702366e94f3",
                "md5": "3f9926a7186b10c0ed9e7f400792d7ae",
                "sha256": "f5a0e852e8451147d96876f8233a9db6ed28c914d9767a6696cbc899e7df00c2"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3f9926a7186b10c0ed9e7f400792d7ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 297250,
            "upload_time": "2024-10-15T16:14:27",
            "upload_time_iso_8601": "2024-10-15T16:14:27.832469Z",
            "url": "https://files.pythonhosted.org/packages/63/50/29ba7d99cb23138da8ce070a677cc1eaaa1545f18cb54350d702366e94f3/python_bidi-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c54b793e5fe37dc59ec9c48349bfa6373aa771a02dc2270b14a90fa6d14a7920",
                "md5": "e3a1e93b6a0cd6d32a8b7012d9d6925c",
                "sha256": "905e212b12c9edfaa3a916a3acd11426b89507ed0f31641257ad586467602e8d"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e3a1e93b6a0cd6d32a8b7012d9d6925c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 323242,
            "upload_time": "2024-10-15T16:14:44",
            "upload_time_iso_8601": "2024-10-15T16:14:44.769003Z",
            "url": "https://files.pythonhosted.org/packages/c5/4b/793e5fe37dc59ec9c48349bfa6373aa771a02dc2270b14a90fa6d14a7920/python_bidi-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8aef0be940ac876ef120e26a40b3614996e2ae55c8abdd0e98e7e102207309a",
                "md5": "30b6e6cf97a643f9a60e3d15d2128036",
                "sha256": "144adab8dc3a8560e294461114ce6dafec1a986cde6297994c1d31b3252f3298"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "30b6e6cf97a643f9a60e3d15d2128036",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 326738,
            "upload_time": "2024-10-15T16:15:02",
            "upload_time_iso_8601": "2024-10-15T16:15:02.220577Z",
            "url": "https://files.pythonhosted.org/packages/b8/ae/f0be940ac876ef120e26a40b3614996e2ae55c8abdd0e98e7e102207309a/python_bidi-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a1f7757dacc33e95e38fd47f02dcb6d4f67ffce0ea432ae7299568129aa55a8",
                "md5": "ff8fdad0cc99aef236db32d5329641a4",
                "sha256": "abdbd5c265d64251798243d97228bb78441a1320fe3cf51c9a31191c56407839"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff8fdad0cc99aef236db32d5329641a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 286038,
            "upload_time": "2024-10-15T16:15:38",
            "upload_time_iso_8601": "2024-10-15T16:15:38.213990Z",
            "url": "https://files.pythonhosted.org/packages/9a/1f/7757dacc33e95e38fd47f02dcb6d4f67ffce0ea432ae7299568129aa55a8/python_bidi-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ab0be55c786d54e8d37e38ca5199727619d616312daeefa8a0be21ef1366412",
                "md5": "6659d7bc8c9668d878d64105dd5adda0",
                "sha256": "65f824a878a593121570ce3da847d3b9ac50521782c433996d7f81f770d3ed00"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6659d7bc8c9668d878d64105dd5adda0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 300370,
            "upload_time": "2024-10-15T16:15:19",
            "upload_time_iso_8601": "2024-10-15T16:15:19.806999Z",
            "url": "https://files.pythonhosted.org/packages/7a/b0/be55c786d54e8d37e38ca5199727619d616312daeefa8a0be21ef1366412/python_bidi-0.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1c83d89cef5bd8ebe6fa262f5035763ef99878a7634455a6b0eeb2abf0f1c0d",
                "md5": "a47612535fab1faf5dfe5cd6931b9de0",
                "sha256": "c7dcbc7eb70a0c7c66ed5219213ee2afcc815988cb9e4b134631579c4ae46980"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a47612535fab1faf5dfe5cd6931b9de0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 467798,
            "upload_time": "2024-10-15T16:16:40",
            "upload_time_iso_8601": "2024-10-15T16:16:40.072608Z",
            "url": "https://files.pythonhosted.org/packages/e1/c8/3d89cef5bd8ebe6fa262f5035763ef99878a7634455a6b0eeb2abf0f1c0d/python_bidi-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44529b7ee589eae15637722e17b7fcfa7f1ad7ead4b623c46fed23eaa687144c",
                "md5": "2b6063a101446a8ba8a80fbed8ca786e",
                "sha256": "ccbf53bc71a0a1b7f77524d1c2e51b245ae23a4f16afb80728071e21c187a768"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2b6063a101446a8ba8a80fbed8ca786e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 549247,
            "upload_time": "2024-10-15T16:17:03",
            "upload_time_iso_8601": "2024-10-15T16:17:03.367404Z",
            "url": "https://files.pythonhosted.org/packages/44/52/9b7ee589eae15637722e17b7fcfa7f1ad7ead4b623c46fed23eaa687144c/python_bidi-0.6.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8086cf732e0945e1aa03e189c61288f1d67acd051ffbaae84cb85e329d22d33",
                "md5": "0b86295f61cb03b25438d33a030ca5ce",
                "sha256": "702527506ca97bf549710ce03d89a2577ebe35e34c42eaecfbacb0862ba06dc6"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0b86295f61cb03b25438d33a030ca5ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 471227,
            "upload_time": "2024-10-15T16:17:27",
            "upload_time_iso_8601": "2024-10-15T16:17:27.713676Z",
            "url": "https://files.pythonhosted.org/packages/c8/08/6cf732e0945e1aa03e189c61288f1d67acd051ffbaae84cb85e329d22d33/python_bidi-0.6.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06b6929538d89494ae493bd67ed671e9a01c88b9054a5dc85dd4f400641cbbe7",
                "md5": "9486b1da399d98c12e3f857eff295b01",
                "sha256": "1563a8d9cfaeeeb5b4fc806f52a500b19893c63652bbd497dd6ed9def7b9ee8e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9486b1da399d98c12e3f857eff295b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 451042,
            "upload_time": "2024-10-15T16:17:53",
            "upload_time_iso_8601": "2024-10-15T16:17:53.824681Z",
            "url": "https://files.pythonhosted.org/packages/06/b6/929538d89494ae493bd67ed671e9a01c88b9054a5dc85dd4f400641cbbe7/python_bidi-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afa4d5e062e07fbf070c8982468280bae6418c513628df7881fdf46a5a02fba4",
                "md5": "ee85479e0892a6bfe2dee8bf070777bf",
                "sha256": "f9b8e024eeaddecb4ca189e3199181985fab20c224db9a1f08db48b905c9905a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ee85479e0892a6bfe2dee8bf070777bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 151261,
            "upload_time": "2024-10-15T16:18:43",
            "upload_time_iso_8601": "2024-10-15T16:18:43.174754Z",
            "url": "https://files.pythonhosted.org/packages/af/a4/d5e062e07fbf070c8982468280bae6418c513628df7881fdf46a5a02fba4/python_bidi-0.6.3-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3540b698ac336192ef5ae5c055ff60fa7d15f2411ce107129d3703323196ef2",
                "md5": "464320943cc89d663251c3983f62a1e5",
                "sha256": "36b3fb05ef990613a81a23822246eaf6eef29af5182f8d8cdd174be13c92d1cc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "464320943cc89d663251c3983f62a1e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 156666,
            "upload_time": "2024-10-15T16:18:23",
            "upload_time_iso_8601": "2024-10-15T16:18:23.728385Z",
            "url": "https://files.pythonhosted.org/packages/b3/54/0b698ac336192ef5ae5c055ff60fa7d15f2411ce107129d3703323196ef2/python_bidi-0.6.3-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "733daf247b79f648cef63cc9e07d20d607424942f48398dcd78c20350a1ecd3a",
                "md5": "b64cf673c703914afcb8828db402365f",
                "sha256": "3ef3c351c19348133e78aa4a05bc939f9f11d53c6733c5e8ec160a9fd78c902f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b64cf673c703914afcb8828db402365f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 257073,
            "upload_time": "2024-10-15T16:16:18",
            "upload_time_iso_8601": "2024-10-15T16:16:18.536754Z",
            "url": "https://files.pythonhosted.org/packages/73/3d/af247b79f648cef63cc9e07d20d607424942f48398dcd78c20350a1ecd3a/python_bidi-0.6.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a513e133215aa04d538abfd2b78a114896a4d1d4b4f616433f83fd77e4158aa",
                "md5": "5e5df0364e269c1ee79e80bde89af856",
                "sha256": "f482f205a62c958273e40c20405141f18c2d0529abb22ba6aa440602655f43a7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e5df0364e269c1ee79e80bde89af856",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 253129,
            "upload_time": "2024-10-15T16:15:58",
            "upload_time_iso_8601": "2024-10-15T16:15:58.694088Z",
            "url": "https://files.pythonhosted.org/packages/1a/51/3e133215aa04d538abfd2b78a114896a4d1d4b4f616433f83fd77e4158aa/python_bidi-0.6.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f91ccf81f8aef9acb5357aec6d267edb6e3620b73ee88771ea7d478d4e984c87",
                "md5": "bdb708a117cc7d2e4d497d62d1af8e76",
                "sha256": "982f805714a5ee83b034b8ad6a27f37db994483b72657c7898053333737a5fe3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bdb708a117cc7d2e4d497d62d1af8e76",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 294508,
            "upload_time": "2024-10-15T16:14:12",
            "upload_time_iso_8601": "2024-10-15T16:14:12.052972Z",
            "url": "https://files.pythonhosted.org/packages/f9/1c/cf81f8aef9acb5357aec6d267edb6e3620b73ee88771ea7d478d4e984c87/python_bidi-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11875c865591502f0d0bbbe451f13cdb47e4292ded3901d38a33c00fe55668cf",
                "md5": "77df70fbd554fd07982bfbf6bb3cec2d",
                "sha256": "3ee410954d7dc7591106f9526c3ce9893a64345e69edf86d084fe8841e62bfa0"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "77df70fbd554fd07982bfbf6bb3cec2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 297215,
            "upload_time": "2024-10-15T16:14:29",
            "upload_time_iso_8601": "2024-10-15T16:14:29.928850Z",
            "url": "https://files.pythonhosted.org/packages/11/87/5c865591502f0d0bbbe451f13cdb47e4292ded3901d38a33c00fe55668cf/python_bidi-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "401d5ffbf00646a7792316a5efe4ae1d3d9e87322c2066069824daf7d24e608c",
                "md5": "0f25414994526ad358b01ec1d330be5b",
                "sha256": "b4d4a8917804a1c749e92aafb152d239cd25127cea0bb8710b99315266022009"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0f25414994526ad358b01ec1d330be5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 323759,
            "upload_time": "2024-10-15T16:14:46",
            "upload_time_iso_8601": "2024-10-15T16:14:46.446026Z",
            "url": "https://files.pythonhosted.org/packages/40/1d/5ffbf00646a7792316a5efe4ae1d3d9e87322c2066069824daf7d24e608c/python_bidi-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2712e5a9f03755e50e85122cd244ccb062a10783863421b23b2363deae365da3",
                "md5": "f14bc1602ffe2895fa6f3f9a1930a371",
                "sha256": "984cb68c5bc7980f9cc66ae2f9d06b7426445b7dfcce4d555ff04333c34d01a6"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f14bc1602ffe2895fa6f3f9a1930a371",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 329195,
            "upload_time": "2024-10-15T16:15:03",
            "upload_time_iso_8601": "2024-10-15T16:15:03.860342Z",
            "url": "https://files.pythonhosted.org/packages/27/12/e5a9f03755e50e85122cd244ccb062a10783863421b23b2363deae365da3/python_bidi-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f71050a2e2402f541a1e442548484948aafc02d6bfd7b36c0bdf1c1e7d79e23d",
                "md5": "1e060802a97c0fb5b2f7f93e354ea46c",
                "sha256": "bedcbab3867227519e2dfee6c3ac26d7722ce6a048f5c72585cf83779b8e61f8"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e060802a97c0fb5b2f7f93e354ea46c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 286639,
            "upload_time": "2024-10-15T16:15:40",
            "upload_time_iso_8601": "2024-10-15T16:15:40.099160Z",
            "url": "https://files.pythonhosted.org/packages/f7/10/50a2e2402f541a1e442548484948aafc02d6bfd7b36c0bdf1c1e7d79e23d/python_bidi-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8acc7faac3de5e9f61bc7019808f4a09d43918fae4e211fb820a7881109fd02a",
                "md5": "9aa38c3fc9c6e792f97b31c4e9e6f8a4",
                "sha256": "eda3e04c6f54e0e44e55433da0fabab6776c69bcfb1965f09e4bb5b5b4446846"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9aa38c3fc9c6e792f97b31c4e9e6f8a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 300858,
            "upload_time": "2024-10-15T16:15:21",
            "upload_time_iso_8601": "2024-10-15T16:15:21.565465Z",
            "url": "https://files.pythonhosted.org/packages/8a/cc/7faac3de5e9f61bc7019808f4a09d43918fae4e211fb820a7881109fd02a/python_bidi-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11f8502b5d31017700df767b6dbc167cf7b7df2ba921475d130b9852c5e2eb13",
                "md5": "20dbfb7073b088e7f5278eff65ed8bc4",
                "sha256": "2825a720d9dbd8ff6158a458edfbdc55bfd3de3f8181a59c7126f78ef3e27b7b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20dbfb7073b088e7f5278eff65ed8bc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 468046,
            "upload_time": "2024-10-15T16:16:42",
            "upload_time_iso_8601": "2024-10-15T16:16:42.569321Z",
            "url": "https://files.pythonhosted.org/packages/11/f8/502b5d31017700df767b6dbc167cf7b7df2ba921475d130b9852c5e2eb13/python_bidi-0.6.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b45e995e7933404303a85a7fcffc95d1a24d8436601b3dcb46d32bdaecd20e4",
                "md5": "a16375becbbdb2ea89b2de99b39a711a",
                "sha256": "6b5f60865b4d10de024c35d9900efe371844da4a0cda1cb2a4bd35746ba69097"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a16375becbbdb2ea89b2de99b39a711a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 549611,
            "upload_time": "2024-10-15T16:17:05",
            "upload_time_iso_8601": "2024-10-15T16:17:05.874438Z",
            "url": "https://files.pythonhosted.org/packages/2b/45/e995e7933404303a85a7fcffc95d1a24d8436601b3dcb46d32bdaecd20e4/python_bidi-0.6.3-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e4fbb4e5e26b73067ed392f7ecc5befc349317a72d929688049b98cb4bbe3e5",
                "md5": "88e93a5b44caf73c0f6fa6f4263a1585",
                "sha256": "9f859236e69250a0cc857968b8beef749ab4f7b29164cb9a8a3150d094c318fc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "88e93a5b44caf73c0f6fa6f4263a1585",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 471568,
            "upload_time": "2024-10-15T16:17:30",
            "upload_time_iso_8601": "2024-10-15T16:17:30.501385Z",
            "url": "https://files.pythonhosted.org/packages/3e/4f/bb4e5e26b73067ed392f7ecc5befc349317a72d929688049b98cb4bbe3e5/python_bidi-0.6.3-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49999c3bde08ec866301b61b05f91b9b05e44f3f2a11ba0e951cf7e0d44cd6e4",
                "md5": "380cb715522d28c08fb4f3b8a1181508",
                "sha256": "282c60f86f30ba6263e10427fec528ab17dde97c7a6653c0187d8e2412dec6f4"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "380cb715522d28c08fb4f3b8a1181508",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 451799,
            "upload_time": "2024-10-15T16:17:56",
            "upload_time_iso_8601": "2024-10-15T16:17:56.746252Z",
            "url": "https://files.pythonhosted.org/packages/49/99/9c3bde08ec866301b61b05f91b9b05e44f3f2a11ba0e951cf7e0d44cd6e4/python_bidi-0.6.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac4647676c4ba20faf21b29a39be3d07d0f055c4b40f35df985764a284c712bb",
                "md5": "12857631dce39d3fc62d7ca8829dac8a",
                "sha256": "5d33d011d334795ff4d5d0de57457a980f76055a338ebabe558e795f9e0fbe63"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "12857631dce39d3fc62d7ca8829dac8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 151614,
            "upload_time": "2024-10-15T16:18:46",
            "upload_time_iso_8601": "2024-10-15T16:18:46.131946Z",
            "url": "https://files.pythonhosted.org/packages/ac/46/47676c4ba20faf21b29a39be3d07d0f055c4b40f35df985764a284c712bb/python_bidi-0.6.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f59ac68f68556e08270aea3abea8bb9af15bfc6066981b7bb8350565e8c02da9",
                "md5": "dcf519d86017f5f764835e98bba49c13",
                "sha256": "535069329c12ea08ad6a3b38c48cba2d912a704dee25566e7a37f2b67be9fece"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dcf519d86017f5f764835e98bba49c13",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 157007,
            "upload_time": "2024-10-15T16:18:26",
            "upload_time_iso_8601": "2024-10-15T16:18:26.962819Z",
            "url": "https://files.pythonhosted.org/packages/f5/9a/c68f68556e08270aea3abea8bb9af15bfc6066981b7bb8350565e8c02da9/python_bidi-0.6.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37012e6c15ad74d213a116cd4ecb9fd9c0ba8ba7531d37aaa56578c23b196a36",
                "md5": "818dfefab2ea53b953fa62f3053f1389",
                "sha256": "d0945a3f116700ebc791911797096afe3e24953927b335c9c818f56475915aef"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "818dfefab2ea53b953fa62f3053f1389",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 257632,
            "upload_time": "2024-10-15T16:16:20",
            "upload_time_iso_8601": "2024-10-15T16:16:20.658826Z",
            "url": "https://files.pythonhosted.org/packages/37/01/2e6c15ad74d213a116cd4ecb9fd9c0ba8ba7531d37aaa56578c23b196a36/python_bidi-0.6.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "128d4d6a3f3e457e50216161f7924dcc35bc6322fa2ca5f0e0db78ef78296f9d",
                "md5": "840960fbffd5c6187cb6e58c2c42a3ae",
                "sha256": "8eb231d9ab92bfd4a9b7e7282210f02d130d7935ec8cfb1d82d6d53fa858a3de"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "840960fbffd5c6187cb6e58c2c42a3ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 253032,
            "upload_time": "2024-10-15T16:16:01",
            "upload_time_iso_8601": "2024-10-15T16:16:01.059220Z",
            "url": "https://files.pythonhosted.org/packages/12/8d/4d6a3f3e457e50216161f7924dcc35bc6322fa2ca5f0e0db78ef78296f9d/python_bidi-0.6.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d4f7a69b19e8f46d167b9383f59d5b8a9a18c1bf648a631e2b5514072bd8e05",
                "md5": "3f2d1daa5f72c29904a031f9e3ef9274",
                "sha256": "ce288cb2af08d5242b034ce4e6936e540046a4c5fbccda72610ac67d8b06b5cc"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f2d1daa5f72c29904a031f9e3ef9274",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 294668,
            "upload_time": "2024-10-15T16:14:13",
            "upload_time_iso_8601": "2024-10-15T16:14:13.573070Z",
            "url": "https://files.pythonhosted.org/packages/9d/4f/7a69b19e8f46d167b9383f59d5b8a9a18c1bf648a631e2b5514072bd8e05/python_bidi-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e01812aaf9471326e34d89d65cb97fd45b6396c1492a7a6d1176f4aed108c41c",
                "md5": "6266c1ffc7612e263229b41d6ae7bf79",
                "sha256": "304094c931a9ca45a347fa31db9e01b9cbefd48a194950b1441f20ba24ff0d17"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6266c1ffc7612e263229b41d6ae7bf79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 297474,
            "upload_time": "2024-10-15T16:14:31",
            "upload_time_iso_8601": "2024-10-15T16:14:31.849379Z",
            "url": "https://files.pythonhosted.org/packages/e0/18/12aaf9471326e34d89d65cb97fd45b6396c1492a7a6d1176f4aed108c41c/python_bidi-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a16c4551909563302e9ccc0d2ea779c650c951c7de16337d27a8fda654d313f",
                "md5": "8aef33d31ed2c062d1a026b3093d1a50",
                "sha256": "3df42de54d0f0daea931439abefc97da6c642d3665bcde510cd31689230777ff"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8aef33d31ed2c062d1a026b3093d1a50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 323250,
            "upload_time": "2024-10-15T16:14:48",
            "upload_time_iso_8601": "2024-10-15T16:14:48.063600Z",
            "url": "https://files.pythonhosted.org/packages/2a/16/c4551909563302e9ccc0d2ea779c650c951c7de16337d27a8fda654d313f/python_bidi-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f819b17bd9cfc51baff7da26770ef4e1c752977a63ad3bb0cad579f6b072459",
                "md5": "778e1794ebca1192ffd8d934ba1b3556",
                "sha256": "fc5a29d459deb7ce923cf33283de15776fa8008c55b42e1eed5ba76980cc01f3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "778e1794ebca1192ffd8d934ba1b3556",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 329298,
            "upload_time": "2024-10-15T16:15:06",
            "upload_time_iso_8601": "2024-10-15T16:15:06.181306Z",
            "url": "https://files.pythonhosted.org/packages/3f/81/9b17bd9cfc51baff7da26770ef4e1c752977a63ad3bb0cad579f6b072459/python_bidi-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69ec95957d02ba60debe20b98ef3e2fbda3c07bb5b3ce0679d9ffba69ff892b9",
                "md5": "1b982616143db71ec3395f6388e7bbd3",
                "sha256": "ae862fc829ee747b30cce23353b2266c706376c9b1ebfea943d63731eb1a0cbd"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b982616143db71ec3395f6388e7bbd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 286706,
            "upload_time": "2024-10-15T16:15:42",
            "upload_time_iso_8601": "2024-10-15T16:15:42.011269Z",
            "url": "https://files.pythonhosted.org/packages/69/ec/95957d02ba60debe20b98ef3e2fbda3c07bb5b3ce0679d9ffba69ff892b9/python_bidi-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a29fa628d0b33b9f2f9be15fcd79427ea3f1bce3532587056f9e4ef925be6d1",
                "md5": "111ccee15a5a127278919e3320b8cde4",
                "sha256": "a9419c87a7657b1b39497302461c7e501bbfd03442186083007e9a1627656871"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "111ccee15a5a127278919e3320b8cde4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 301084,
            "upload_time": "2024-10-15T16:15:23",
            "upload_time_iso_8601": "2024-10-15T16:15:23.294573Z",
            "url": "https://files.pythonhosted.org/packages/7a/29/fa628d0b33b9f2f9be15fcd79427ea3f1bce3532587056f9e4ef925be6d1/python_bidi-0.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08cb9fb1836d14244db536ac1e62f0c5cf01ae43b9425a65c19de618e1176450",
                "md5": "b54ca88ef0dcbedbe300b86ab24d3f55",
                "sha256": "d352154a636a243235260ecd8dcbd2b73e3e7d1f42c280fdb6802876152f1435"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b54ca88ef0dcbedbe300b86ab24d3f55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 468428,
            "upload_time": "2024-10-15T16:16:45",
            "upload_time_iso_8601": "2024-10-15T16:16:45.010002Z",
            "url": "https://files.pythonhosted.org/packages/08/cb/9fb1836d14244db536ac1e62f0c5cf01ae43b9425a65c19de618e1176450/python_bidi-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63aca5b1c796aaba31365b1eb4c1d7467bc200e2d9ab2010b20d8ed07f97845b",
                "md5": "0035916e777667c5b943ca3132a88901",
                "sha256": "04448d5355db4233da49c9f656b43b34fa0467f6b0c8ff766c1543eaed52f974"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0035916e777667c5b943ca3132a88901",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 549632,
            "upload_time": "2024-10-15T16:17:08",
            "upload_time_iso_8601": "2024-10-15T16:17:08.275310Z",
            "url": "https://files.pythonhosted.org/packages/63/ac/a5b1c796aaba31365b1eb4c1d7467bc200e2d9ab2010b20d8ed07f97845b/python_bidi-0.6.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88f80f4193432a78638d7c3ab056ca4a80decd0a6bb99d63ce4bac9aaca90420",
                "md5": "7539c5d053e73ec847198c476c2a42d0",
                "sha256": "07eb504fcefc9e9f416f03c089dce23b1ba79d0dd38e976f6f00944d8c708461"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7539c5d053e73ec847198c476c2a42d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 471771,
            "upload_time": "2024-10-15T16:17:33",
            "upload_time_iso_8601": "2024-10-15T16:17:33.127151Z",
            "url": "https://files.pythonhosted.org/packages/88/f8/0f4193432a78638d7c3ab056ca4a80decd0a6bb99d63ce4bac9aaca90420/python_bidi-0.6.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "978070e04d2e165f1cc262b81f802da84523d8abc413d7d6c93f595efc43b1b2",
                "md5": "6259264e9f11acf088cc3e425d74ae35",
                "sha256": "7e083f0e7391b5672f9e76393d8d111e1bf875f784ad3659776a4881440ebf1c"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6259264e9f11acf088cc3e425d74ae35",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 451859,
            "upload_time": "2024-10-15T16:17:59",
            "upload_time_iso_8601": "2024-10-15T16:17:59.408705Z",
            "url": "https://files.pythonhosted.org/packages/97/80/70e04d2e165f1cc262b81f802da84523d8abc413d7d6c93f595efc43b1b2/python_bidi-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c63b9fdf03f1335c679dc05f3b136ef9e7038e359aef4212e75de915e2db6d84",
                "md5": "bf2bbf2887df8e060d700fc66ce825ae",
                "sha256": "a153364706cacaea4f97a63b3d5db780d56b66c0a64f1d202065d3863f782075"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bf2bbf2887df8e060d700fc66ce825ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 151809,
            "upload_time": "2024-10-15T16:18:49",
            "upload_time_iso_8601": "2024-10-15T16:18:49.118444Z",
            "url": "https://files.pythonhosted.org/packages/c6/3b/9fdf03f1335c679dc05f3b136ef9e7038e359aef4212e75de915e2db6d84/python_bidi-0.6.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "992d72494d95d6bcdeae6a4d203b408e5bd5c73431c40060d0c5cdf80c53156d",
                "md5": "3bd39cca26f6e2824ceced0a566cba48",
                "sha256": "4be0d628b84c2a524d080c653726fba6e518432f33ac970db25c6366b9b71303"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3bd39cca26f6e2824ceced0a566cba48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 157042,
            "upload_time": "2024-10-15T16:18:30",
            "upload_time_iso_8601": "2024-10-15T16:18:30.082958Z",
            "url": "https://files.pythonhosted.org/packages/99/2d/72494d95d6bcdeae6a4d203b408e5bd5c73431c40060d0c5cdf80c53156d/python_bidi-0.6.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b999e91d30bcf0f61f1ef055aa180d7337321c09b5684246b83c6b2b4aed69",
                "md5": "3942c4c0e1c1f2cca5eb65d3fdb37fce",
                "sha256": "28cd25ef6141a77e04a7fb6fef0a19cc307106f84a891777fcdd3306ae8cfc20"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3942c4c0e1c1f2cca5eb65d3fdb37fce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 258864,
            "upload_time": "2024-10-15T16:16:22",
            "upload_time_iso_8601": "2024-10-15T16:16:22.843657Z",
            "url": "https://files.pythonhosted.org/packages/72/b9/99e91d30bcf0f61f1ef055aa180d7337321c09b5684246b83c6b2b4aed69/python_bidi-0.6.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "052f8330d6c9ff768d6e76f765ba4bf082c74c1abcfda390efb4888421a47c5d",
                "md5": "9cdf0c3cc1f153f7fcf530e8dbb0613a",
                "sha256": "e4eab3736a14b8d9daea3e8e638ca5a24051497152ba32fb08db9259dd77b858"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9cdf0c3cc1f153f7fcf530e8dbb0613a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 254338,
            "upload_time": "2024-10-15T16:16:03",
            "upload_time_iso_8601": "2024-10-15T16:16:03.257214Z",
            "url": "https://files.pythonhosted.org/packages/05/2f/8330d6c9ff768d6e76f765ba4bf082c74c1abcfda390efb4888421a47c5d/python_bidi-0.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ae597c0285bfd52b26f0050c24ac568968fc911c12f9b1128dc05fca3616ccf",
                "md5": "aebdea2e7adc85927b2eb7f125297e49",
                "sha256": "78d12927cab0f6b8304f04c9ed72bc1a2880df8974d8596e40e7e596c6a98b2e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aebdea2e7adc85927b2eb7f125297e49",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 296023,
            "upload_time": "2024-10-15T16:14:15",
            "upload_time_iso_8601": "2024-10-15T16:14:15.263216Z",
            "url": "https://files.pythonhosted.org/packages/2a/e5/97c0285bfd52b26f0050c24ac568968fc911c12f9b1128dc05fca3616ccf/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87c56480d468ae982df6985d7c99ce48b46b4cff2fb1c8264d9bce576a8eac96",
                "md5": "e75a7414f725f1c4790fb7d906c7e754",
                "sha256": "440be542b334da05673bd94d53ba4922482b06fa3f4daca6c8fa7434afb33e8a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e75a7414f725f1c4790fb7d906c7e754",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 298678,
            "upload_time": "2024-10-15T16:14:33",
            "upload_time_iso_8601": "2024-10-15T16:14:33.813563Z",
            "url": "https://files.pythonhosted.org/packages/87/c5/6480d468ae982df6985d7c99ce48b46b4cff2fb1c8264d9bce576a8eac96/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0773653ca3948deee129ca5a674bd81300cd825e22875397a45c208570cf5cb8",
                "md5": "9dd99d41378591dc98852407375c9186",
                "sha256": "a9635ae0c9ee71b69f11cb6ab9523165c79fdb82ca53afb5afb0d401616fef80"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9dd99d41378591dc98852407375c9186",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 325314,
            "upload_time": "2024-10-15T16:14:49",
            "upload_time_iso_8601": "2024-10-15T16:14:49.901003Z",
            "url": "https://files.pythonhosted.org/packages/07/73/653ca3948deee129ca5a674bd81300cd825e22875397a45c208570cf5cb8/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f66ab2d13d7ca80221ff072f8cfa1d78a8c11ca85d8e728312ad065520cd783c",
                "md5": "50c883c2aeb5af643f6e0329d4ec04c2",
                "sha256": "1ebac008620916b0c02623926fd80719f2e61e4fa9b626ed1e309a6818b57486"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "50c883c2aeb5af643f6e0329d4ec04c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 331300,
            "upload_time": "2024-10-15T16:15:08",
            "upload_time_iso_8601": "2024-10-15T16:15:08.372078Z",
            "url": "https://files.pythonhosted.org/packages/f6/6a/b2d13d7ca80221ff072f8cfa1d78a8c11ca85d8e728312ad065520cd783c/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2b9b52b327837644d25debc6d1bff633578bf3376c10bff3a2e212c8f3721b8",
                "md5": "845bf9802eac9bf3754ab45382080ebd",
                "sha256": "57bb5fd4d9ccad52584ce8ad1468ec2e5b535519840ab1debe05c7fe4d32b800"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "845bf9802eac9bf3754ab45382080ebd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 288331,
            "upload_time": "2024-10-15T16:15:43",
            "upload_time_iso_8601": "2024-10-15T16:15:43.933238Z",
            "url": "https://files.pythonhosted.org/packages/b2/b9/b52b327837644d25debc6d1bff633578bf3376c10bff3a2e212c8f3721b8/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f8ebe90d3fd423848baf6ddc2728af168a4688e273115439093ff4881dab1f2",
                "md5": "533e2ff3fef615061dc698c8e007d90c",
                "sha256": "1caacb766872c54742cdb8a5c042bec1282c5a3144e4aeba6f8650ab8911d7f3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "533e2ff3fef615061dc698c8e007d90c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 302091,
            "upload_time": "2024-10-15T16:15:25",
            "upload_time_iso_8601": "2024-10-15T16:15:25.403410Z",
            "url": "https://files.pythonhosted.org/packages/9f/8e/be90d3fd423848baf6ddc2728af168a4688e273115439093ff4881dab1f2/python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ae655ae3cb6f117fe4d150d22860c7409eb733c97daf7f3b34f204867c19b88",
                "md5": "f53aa2c4cb75b6bcab4608eb1e34506e",
                "sha256": "584dd7c4617ea0ef39900ef7b06b8c61e6ce3ccb4b90c28ed28fa3bf770c5124"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f53aa2c4cb75b6bcab4608eb1e34506e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 470230,
            "upload_time": "2024-10-15T16:16:47",
            "upload_time_iso_8601": "2024-10-15T16:16:47.244938Z",
            "url": "https://files.pythonhosted.org/packages/0a/e6/55ae3cb6f117fe4d150d22860c7409eb733c97daf7f3b34f204867c19b88/python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "413fc886a8ddd11798ced50470f6e2beedee338b6a6960e190ce1f025079d333",
                "md5": "850ab5417a80266f27b255ef8cd4ce2b",
                "sha256": "a3bdc284cc4a1d70942ba0582b91853403c5ca7df79909b755be69089ecc5e17"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "850ab5417a80266f27b255ef8cd4ce2b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 551042,
            "upload_time": "2024-10-15T16:17:10",
            "upload_time_iso_8601": "2024-10-15T16:17:10.807957Z",
            "url": "https://files.pythonhosted.org/packages/41/3f/c886a8ddd11798ced50470f6e2beedee338b6a6960e190ce1f025079d333/python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "198cecb89be8ccf908bcbd1ccccd36662ac7c0710b194867525508385fa162e1",
                "md5": "c1d17c4dbb289eabfb498b7d880e58cd",
                "sha256": "995ed295f2d9095facbef3025d79e209ec7ae1be0d1f385a49818edb2cb4421e"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c1d17c4dbb289eabfb498b7d880e58cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 473635,
            "upload_time": "2024-10-15T16:17:36",
            "upload_time_iso_8601": "2024-10-15T16:17:36.372162Z",
            "url": "https://files.pythonhosted.org/packages/19/8c/ecb89be8ccf908bcbd1ccccd36662ac7c0710b194867525508385fa162e1/python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "849e6956703cb46b9bf7dae4256123b363e9f8550bdfe3fddd3e0eabd3c75f6d",
                "md5": "585616fbbd8aad6dce8afe5e285e657b",
                "sha256": "a50d62f4f1e10682babd529d46e9e62236ff202d3025a223c17ead32035cb410"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "585616fbbd8aad6dce8afe5e285e657b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 453347,
            "upload_time": "2024-10-15T16:18:02",
            "upload_time_iso_8601": "2024-10-15T16:18:02.456153Z",
            "url": "https://files.pythonhosted.org/packages/84/9e/6956703cb46b9bf7dae4256123b363e9f8550bdfe3fddd3e0eabd3c75f6d/python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1369f99800f2eb641a756bc5e2ba34759d0aea6544b80fe14f9f52f2ab7b7bdd",
                "md5": "4b16eb8a7c5014fe605a57d7aabe583e",
                "sha256": "ea2898279afde47dcfec7a821abb54f7476e5584b655389aa731a50b90f8ea52"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b16eb8a7c5014fe605a57d7aabe583e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 259017,
            "upload_time": "2024-10-15T16:16:25",
            "upload_time_iso_8601": "2024-10-15T16:16:25.113267Z",
            "url": "https://files.pythonhosted.org/packages/13/69/f99800f2eb641a756bc5e2ba34759d0aea6544b80fe14f9f52f2ab7b7bdd/python_bidi-0.6.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22e7764aec5b27125043d28f006c58fdd3c61a698857e32821572cc727d71c0f",
                "md5": "cdf698ba4a63f7eaf2eeeeffdd4e157f",
                "sha256": "fe9b6a33f281814dfbf12fe27f35b8780edd6da62ce2a034994f006d6d0184e7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cdf698ba4a63f7eaf2eeeeffdd4e157f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 254257,
            "upload_time": "2024-10-15T16:16:05",
            "upload_time_iso_8601": "2024-10-15T16:16:05.495242Z",
            "url": "https://files.pythonhosted.org/packages/22/e7/764aec5b27125043d28f006c58fdd3c61a698857e32821572cc727d71c0f/python_bidi-0.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24d01ac95eb831fcc905f3517774925fb30bded40c21b3c01cca26816b139a9b",
                "md5": "06c4508affa09a792a86b61e9b71b18f",
                "sha256": "435579d0bf2a7e2f872bb5c7254fe89cddfdea6909ed6dc3e8af4ffe1f3f1f18"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06c4508affa09a792a86b61e9b71b18f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 296014,
            "upload_time": "2024-10-15T16:14:17",
            "upload_time_iso_8601": "2024-10-15T16:14:17.459949Z",
            "url": "https://files.pythonhosted.org/packages/24/d0/1ac95eb831fcc905f3517774925fb30bded40c21b3c01cca26816b139a9b/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cc075f4f9d8d9662b20deedb6e1d31cae91022ce01ca02b05a8990b841e064d",
                "md5": "fcfc7b90fde35573c8ebbe45cb757735",
                "sha256": "f8d76a8452c9fa1ece0a70a7be15a516861c3875bb621e125305d0141ceac8e3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fcfc7b90fde35573c8ebbe45cb757735",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 298703,
            "upload_time": "2024-10-15T16:14:35",
            "upload_time_iso_8601": "2024-10-15T16:14:35.496120Z",
            "url": "https://files.pythonhosted.org/packages/9c/c0/75f4f9d8d9662b20deedb6e1d31cae91022ce01ca02b05a8990b841e064d/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e422ca5e15e047f5f0b752b29e1e5cf8ab61cf5b36e09a62247fe721913a5fa9",
                "md5": "65ca5d66a0860f2cf1037dd27b5c8a9c",
                "sha256": "fbf64f5e3f19913f63f34832c0ddef5ea6a772c5dda54907a949e804c20021e3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "65ca5d66a0860f2cf1037dd27b5c8a9c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 325121,
            "upload_time": "2024-10-15T16:14:52",
            "upload_time_iso_8601": "2024-10-15T16:14:52.661606Z",
            "url": "https://files.pythonhosted.org/packages/e4/22/ca5e15e047f5f0b752b29e1e5cf8ab61cf5b36e09a62247fe721913a5fa9/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b59e24291f657420aa2ff34bc51d21e8618ff170c6481d517e7b7f2ac9b0060",
                "md5": "bb1eaf69751af89c98d41be17b0ee71a",
                "sha256": "8e226a888e13c9cf1e9f0de0a2ff5c98a50561cada19c0b0c69c76343685ee54"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bb1eaf69751af89c98d41be17b0ee71a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 331323,
            "upload_time": "2024-10-15T16:15:10",
            "upload_time_iso_8601": "2024-10-15T16:15:10.336551Z",
            "url": "https://files.pythonhosted.org/packages/9b/59/e24291f657420aa2ff34bc51d21e8618ff170c6481d517e7b7f2ac9b0060/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d79e9a0138d6386c53ca22ba9405ab59ad0ed9e471c8da38991b65e2c0bef572",
                "md5": "1e9fbe991986df94971d7b7c7559027c",
                "sha256": "308ee73ffaa771048b1ccec37145a2735da9d67df55583c2fc2cb73d78e86a91"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e9fbe991986df94971d7b7c7559027c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 288124,
            "upload_time": "2024-10-15T16:15:45",
            "upload_time_iso_8601": "2024-10-15T16:15:45.935458Z",
            "url": "https://files.pythonhosted.org/packages/d7/9e/9a0138d6386c53ca22ba9405ab59ad0ed9e471c8da38991b65e2c0bef572/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81a1720a28c47c1c22ac6f5a56f7faa80cd86c6472620c0e2cbcea18b793a2b5",
                "md5": "192a9d27dbdf334ae0671ee75cb1b692",
                "sha256": "d85744ddcfeb207bbf6774b7e1a29af6e5e208ed5dbecc5853ec60ed8bc8242f"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "192a9d27dbdf334ae0671ee75cb1b692",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 301966,
            "upload_time": "2024-10-15T16:15:27",
            "upload_time_iso_8601": "2024-10-15T16:15:27.671943Z",
            "url": "https://files.pythonhosted.org/packages/81/a1/720a28c47c1c22ac6f5a56f7faa80cd86c6472620c0e2cbcea18b793a2b5/python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4adb3c89cffce317eae26873d1fb05de4534f322fe613a12a00a9d16b75fe72b",
                "md5": "7635ac86528c37599b84dc41acf61d5c",
                "sha256": "40ab8bf2f528a28a70231ce4015d81aea6d8f0a0cdd2bdaf024e9e7849a5ee55"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7635ac86528c37599b84dc41acf61d5c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 470055,
            "upload_time": "2024-10-15T16:16:50",
            "upload_time_iso_8601": "2024-10-15T16:16:50.392647Z",
            "url": "https://files.pythonhosted.org/packages/4a/db/3c89cffce317eae26873d1fb05de4534f322fe613a12a00a9d16b75fe72b/python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f37f3a0a445efb24118635abedac5068bd7a201113ad8f3bb235548a82977b5",
                "md5": "27853c2b2f73fd18260b201f45efa7f8",
                "sha256": "aa857199f9d797c615a92ae1dec90d443a50373caf7af2cf4e791714afc31b2a"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "27853c2b2f73fd18260b201f45efa7f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 551246,
            "upload_time": "2024-10-15T16:17:13",
            "upload_time_iso_8601": "2024-10-15T16:17:13.450678Z",
            "url": "https://files.pythonhosted.org/packages/0f/37/f3a0a445efb24118635abedac5068bd7a201113ad8f3bb235548a82977b5/python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a93dfdb7fe2ac0a3d5a6ee6bc79f9c99813a50f75b048f6d96469826d24d3191",
                "md5": "111f0f4e18c3f5c14bfe1f779d5b36e7",
                "sha256": "197fcd6cb88f021333622f83d7d68e842ab9e2df492ab04e1e84b6de8f15c698"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "111f0f4e18c3f5c14bfe1f779d5b36e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 473417,
            "upload_time": "2024-10-15T16:17:39",
            "upload_time_iso_8601": "2024-10-15T16:17:39.036061Z",
            "url": "https://files.pythonhosted.org/packages/a9/3d/fdb7fe2ac0a3d5a6ee6bc79f9c99813a50f75b048f6d96469826d24d3191/python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b6bea91fe1db5e95f4063cc2aea50478f2eaed8cb607fb72c4b811f8cf41cf4",
                "md5": "c001edfd787f904e4d8d0e76e20ed203",
                "sha256": "f832a45f05c15072edf473c6c3b9b164b25a2515f723d42c7400db848c299e59"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c001edfd787f904e4d8d0e76e20ed203",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 453302,
            "upload_time": "2024-10-15T16:18:05",
            "upload_time_iso_8601": "2024-10-15T16:18:05.604771Z",
            "url": "https://files.pythonhosted.org/packages/6b/6b/ea91fe1db5e95f4063cc2aea50478f2eaed8cb607fb72c4b811f8cf41cf4/python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86168a3adbf0d94437255672ae53b4e392aeb3ab318bfaaa2be7ac63b0963e3c",
                "md5": "531a5967d5dbfe5faa309f4832bac2d2",
                "sha256": "3b2ee6cf7cadb5d5cc05eca4b8b55a433dab922633faf85b0d19ec2aeed9ad5b"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "531a5967d5dbfe5faa309f4832bac2d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 259013,
            "upload_time": "2024-10-15T16:16:27",
            "upload_time_iso_8601": "2024-10-15T16:16:27.380064Z",
            "url": "https://files.pythonhosted.org/packages/86/16/8a3adbf0d94437255672ae53b4e392aeb3ab318bfaaa2be7ac63b0963e3c/python_bidi-0.6.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4098a103bad1cbbde88c6a0fa08ada7d24516f46a49c2ad1420d6267b696fa2",
                "md5": "4602f1adf43e390f39c843491911e484",
                "sha256": "835b1d72364618fc8313bfdba2f65ce8e11bd9c1eab01fe9a3c3ec93063cb5b1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4602f1adf43e390f39c843491911e484",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 254234,
            "upload_time": "2024-10-15T16:16:07",
            "upload_time_iso_8601": "2024-10-15T16:16:07.521092Z",
            "url": "https://files.pythonhosted.org/packages/c4/09/8a103bad1cbbde88c6a0fa08ada7d24516f46a49c2ad1420d6267b696fa2/python_bidi-0.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4975ab7e04845ae47653fbe21b5f60f072144e647d4c6a190eb2239463bc306",
                "md5": "b6a53510341f8732ec4a59aedfb9d170",
                "sha256": "5f92e0d6771d184bbb7b06645edb069c023f695de312bf78e35efe45e0da7f66"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6a53510341f8732ec4a59aedfb9d170",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 296044,
            "upload_time": "2024-10-15T16:14:19",
            "upload_time_iso_8601": "2024-10-15T16:14:19.843507Z",
            "url": "https://files.pythonhosted.org/packages/a4/97/5ab7e04845ae47653fbe21b5f60f072144e647d4c6a190eb2239463bc306/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03b419356630d8f548526be6985d6a72e5052c17301628fcf228afc9cbece9c5",
                "md5": "259ad31e8c65b5143ee0255154ae4ff6",
                "sha256": "7a6a3e0e130a0db20c4808242470277045e921b414cd9f545cba67a8c17bb785"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "259ad31e8c65b5143ee0255154ae4ff6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 298694,
            "upload_time": "2024-10-15T16:14:37",
            "upload_time_iso_8601": "2024-10-15T16:14:37.298450Z",
            "url": "https://files.pythonhosted.org/packages/03/b4/19356630d8f548526be6985d6a72e5052c17301628fcf228afc9cbece9c5/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c044eccacac878c080e4cb330955efc16455880ae64a101fc4c1b5ffe130c7ea",
                "md5": "07e728b81ef29f7eed0b4f28e1bd6e1e",
                "sha256": "e2b2ee73e0f799ed234ed52af258f77a72aca216477d3ef072c59303f1a938c9"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "07e728b81ef29f7eed0b4f28e1bd6e1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 325164,
            "upload_time": "2024-10-15T16:14:54",
            "upload_time_iso_8601": "2024-10-15T16:14:54.323289Z",
            "url": "https://files.pythonhosted.org/packages/c0/44/eccacac878c080e4cb330955efc16455880ae64a101fc4c1b5ffe130c7ea/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d111b066dd9d86b57af0ec61f972e7b1a15fcd2869814621dfdf8fc1e8557a1",
                "md5": "9565b1094d8943bd1d4785d48fa67b1e",
                "sha256": "042d0ee4bb9286b605b252488501bdae6f5b249fe2422fb12e4884aa4dc316d1"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9565b1094d8943bd1d4785d48fa67b1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 331243,
            "upload_time": "2024-10-15T16:15:12",
            "upload_time_iso_8601": "2024-10-15T16:15:12.102648Z",
            "url": "https://files.pythonhosted.org/packages/8d/11/1b066dd9d86b57af0ec61f972e7b1a15fcd2869814621dfdf8fc1e8557a1/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6527d46a3f36650aea27267517bee71d2cdb5c77c2a82ff35abf6502ad4be8a7",
                "md5": "ac3f147799f0c1ea59b137070e230628",
                "sha256": "fa68ef8e955d0d63fe2d9aac4f8b8b9f47869bf98a8773c7322918312dbdd109"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac3f147799f0c1ea59b137070e230628",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 288046,
            "upload_time": "2024-10-15T16:15:47",
            "upload_time_iso_8601": "2024-10-15T16:15:47.963716Z",
            "url": "https://files.pythonhosted.org/packages/65/27/d46a3f36650aea27267517bee71d2cdb5c77c2a82ff35abf6502ad4be8a7/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2537e1b661f6c5c8f711b82f89cbfe798af3c730dfc74e7658fd9aee0e811f8",
                "md5": "757a329df6b81c3022a14abcb2f0c27a",
                "sha256": "d07c491c2cede5b022356003070bc8e452a0dcf1d884db4a384e9a3383b9efd3"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "757a329df6b81c3022a14abcb2f0c27a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 301973,
            "upload_time": "2024-10-15T16:15:29",
            "upload_time_iso_8601": "2024-10-15T16:15:29.695469Z",
            "url": "https://files.pythonhosted.org/packages/f2/53/7e1b661f6c5c8f711b82f89cbfe798af3c730dfc74e7658fd9aee0e811f8/python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f3ffcbac1df91fa26fe14faaf3deddcb90bcac37006bbec88a6aaf6e4ac1ea7",
                "md5": "06d9345da920bc13d5af0b9c31e17585",
                "sha256": "6132d661a3bfac2b8cf0d301bcdd59c7cc3e2145ea090b75505816604d8118d5"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06d9345da920bc13d5af0b9c31e17585",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 470028,
            "upload_time": "2024-10-15T16:16:52",
            "upload_time_iso_8601": "2024-10-15T16:16:52.941517Z",
            "url": "https://files.pythonhosted.org/packages/8f/3f/fcbac1df91fa26fe14faaf3deddcb90bcac37006bbec88a6aaf6e4ac1ea7/python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7008bac569f9ff4df5e1539e3336eeed22f4de196e0080a2572a258d55188a64",
                "md5": "84f54156d44c80a56dc2a5927f9d00da",
                "sha256": "61b8a3dc229617b2f8c15165001babf4a199af9001087cad10ded14ec0a028d4"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84f54156d44c80a56dc2a5927f9d00da",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 551173,
            "upload_time": "2024-10-15T16:17:16",
            "upload_time_iso_8601": "2024-10-15T16:17:16.461062Z",
            "url": "https://files.pythonhosted.org/packages/70/08/bac569f9ff4df5e1539e3336eeed22f4de196e0080a2572a258d55188a64/python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c19a4ee76dfeccf4d57d94b793394d74149f12b08fdb86aa25f017babee601e3",
                "md5": "23c80c8e032e9a5fd885b1f7d545468e",
                "sha256": "5bcab7ac734c5102e90b0f41274b81bdcf55009b05aaa6a653320d63304f20a7"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "23c80c8e032e9a5fd885b1f7d545468e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 473304,
            "upload_time": "2024-10-15T16:17:42",
            "upload_time_iso_8601": "2024-10-15T16:17:42.151080Z",
            "url": "https://files.pythonhosted.org/packages/c1/9a/4ee76dfeccf4d57d94b793394d74149f12b08fdb86aa25f017babee601e3/python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "640180be9899383c4cb79ee1e06ef2855231fb181fc1b5e75acee6c2910ec4ff",
                "md5": "b8f0bf1d94ade958f450df3d964df319",
                "sha256": "44560c6abcf3a512e618b52b33bce3d053eaf020c0677d3b4512167715900e66"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8f0bf1d94ade958f450df3d964df319",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 453101,
            "upload_time": "2024-10-15T16:18:08",
            "upload_time_iso_8601": "2024-10-15T16:18:08.943532Z",
            "url": "https://files.pythonhosted.org/packages/64/01/80be9899383c4cb79ee1e06ef2855231fb181fc1b5e75acee6c2910ec4ff/python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74b5c1684fb8120ad868b43e4b037ac83aafaa70724cdb078d066bae836c31f6",
                "md5": "34f50384b016e1f97ccad9fb3b2cea16",
                "sha256": "e12114969001a328aea859f79efc30ab9c15241befb86e07029d8961d97fae36"
            },
            "downloads": -1,
            "filename": "python_bidi-0.6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "34f50384b016e1f97ccad9fb3b2cea16",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 45054,
            "upload_time": "2024-10-15T16:18:11",
            "upload_time_iso_8601": "2024-10-15T16:18:11.938732Z",
            "url": "https://files.pythonhosted.org/packages/74/b5/c1684fb8120ad868b43e4b037ac83aafaa70724cdb078d066bae836c31f6/python_bidi-0.6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-15 16:18:11",
    "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.38750s