marisa-trie


Namemarisa-trie JSON
Version 1.3.0 PyPI version JSON
download
home_pageNone
SummaryStatic memory-efficient and fast Trie-like structures for Python.
upload_time2025-08-16 10:05:20
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            MARISA Trie
===========

|PyPI Version|
|PyPI Status|
|PyPI Python Versions|
|Github Build Status|

.. tip::

    Become **my boss** to help me work on this awesome software, and make the world better:

   |Patreon|

Static memory-efficient Trie-like structures for Python (3.8+)
based on `marisa-trie`_ C++ library.

String data in a MARISA-trie may take up to 50x-100x less memory than
in a standard Python dict; the raw lookup speed is comparable; trie also
provides fast advanced methods like prefix search.

.. note::

    There are official SWIG-based Python bindings included
    in C++ library distribution; this package provides alternative
    Cython-based pip-installable Python bindings.

.. _marisa-trie: https://github.com/s-yata/marisa-trie

Installation
============

::

    python -m pip install -U marisa-trie

Usage
=====

See `tutorial`_ and `API`_ for details.

.. _tutorial: https://marisa-trie.readthedocs.io/en/latest/tutorial.html
.. _API: https://marisa-trie.readthedocs.io/en/latest/api.html

Current limitations
===================

* The library is not tested with mingw32 compiler;
* ``.prefixes()`` method of ``BytesTrie`` and ``RecordTrie`` is quite slow
  and doesn't have iterator counterpart;
* ``read()`` and ``write()`` methods don't work with file-like objects
  (they work only with real files; pickling works fine for file-like objects);
* there are ``keys()`` and ``items()`` methods but no ``values()`` method.

License
=======

Wrapper code is licensed under MIT License.

Bundled `marisa-trie`_ C++ library is dual-licensed under
LGPL or BSD 2-clause license.

.. |PyPI Version| image:: https://img.shields.io/pypi/v/marisa-trie.svg
   :target: https://pypi.python.org/pypi/marisa-trie/
.. |PyPI Status| image:: https://img.shields.io/pypi/status/marisa-trie.svg
   :target: https://pypi.python.org/pypi/marisa-trie/
.. |PyPI Python Versions| image:: https://img.shields.io/pypi/pyversions/marisa-trie.svg
   :target: https://pypi.python.org/pypi/marisa-trie/
.. |Github Build Status| image:: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml/badge.svg
   :target: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml
.. |Patreon| image:: https://img.shields.io/badge/Patreon-F96854?style=for-the-badge&logo=patreon&logoColor=white
   :target: https://www.patreon.com/mschoentgen


CHANGES
=======

1.3.0 (2025-08-16)
------------------

* Updated ``libmarisa-trie`` to the latest version (0.2.7) (#116).
* Dropped Python 3.7, 3.8 support (#112, #120).
* Added Python 3.13 support (#112).
* Rebuild Cython wrapper with Cython 3.1.3 (#119, [4d564de](4d564de332191c3fe33aa2240cae2494c597bba2)).
* Moved static project metadata to ``pyproject.toml`` (#120).
* Updated metadata license to include the bundled one from marisa-trie as well (#120).
* Add Cython as build dependency (#122).

1.2.1 (2024-10-12)
------------------

* Publish Python 3.13 wheels (only CPython ones, PyPy ones are skipped until https://github.com/pypa/distutils/issues/283 is fixed).
* Rebuild Cython wrapper with Cython 3.0.11.

1.2.0 (2024-06-05)
------------------

* Added Python 3.13 support (#105).
* Rebuild Cython wrapper with Cython 3.0.10 (#105).

1.1.1 (2024-05-06)
------------------

* Publish Linux aarch64 wheels (#101).

1.1.0 (2023-10-06)
------------------

* Added Python 3.12 support.

1.0.0 (2023-09-03)
------------------

* Dropped Python 2.7, 3.4, 3.5, 3.6 support.
* Added ``Trie.map()`` (#90).
* Rebuilt Cython wrapper with Cython 3.0.2.
* Fixed benchmark documentation typos (#89).

0.8.0 (2023-03-25)
------------------

* Add ``Trie.iter_prefixes_with_ids()`` method to return ``(prefix, id)`` pairs (#83).
* Rebuild Cython wrapper with Cython 0.29.33 (#88).

0.7.8 (2022-10-25)
------------------

* Added Python 3.11 support.
* Rebuild Cython wrapper with Cython 0.29.32.

0.7.7 (2021-08-04)
------------------

* Restored Python 2.7 support.
* Fixed README image references not working on Windows.

0.7.6 (2021-07-28)
------------------

* Wheels are now published for all platforms.
* Fixed ``ResourceWarning: unclosed file`` in ``setup.py``.
* Run ``black`` on the entire source code.
* Moved the QA/CI to GitHub.
* Rebuild Cython wrapper with Cython 0.29.24.
* Updated ``libmarisa-trie`` to the latest version (0.2.6).
* Fixed failing tests and usage of deprecated methods.
* Expanded supported Python version (2.7, 3.4 - 3.10).

0.7.5 (2018-04-10)
------------------

* Removed redundant ``DeprecationWarning`` messages in ``Trie.save`` and
  ``Trie.load``.
* Dropped support for Python 2.6.
* Rebuild Cython wrapper with Cython 0.28.1.

0.7.4 (2017-03-27)
------------------

* Fixed packaging issue, ``MANIFEST.in`` was not updated after ``libmarisa-trie``
  became a submodule.

0.7.3 (2017-02-14)
------------------

* Added ``BinaryTrie`` for storing arbitrary sequences of bytes, e.g. IP
  addresses (thanks Tomasz Melcer);
* Deprecated ``Trie.has_keys_with_prefix`` which can be trivially implemented in
  terms of ``Trie.iterkeys``;
* Deprecated ``Trie.read`` and ``Trie.write`` which onlywork for "real" files
  and duplicate the functionality of ``load`` and ``save``. See issue #31 on
  GitHub;
* Updated ``libmarisa-trie`` to the latest version. Yay, 64-bit Windows support.
* Rebuilt Cython wrapper with Cython 0.25.2.

0.7.2 (2015-04-21)
------------------

* packaging issue is fixed.

0.7.1 (2015-04-21)
------------------

* setup.py is switched to setuptools;
* a tiny speedup;
* wrapper is rebuilt with Cython 0.22.

0.7 (2014-12-15)
----------------

* ``trie1 == trie2`` and ``trie1 != trie2`` now work (thanks Sergei Lebedev);
* ``for key in trie:`` is fixed (thanks Sergei Lebedev);
* wrapper is rebuilt with Cython 0.21.1 (thanks Sergei Lebedev);
* https://bitbucket.org/kmike/marisa-trie repo is no longer supported.

0.6 (2014-02-22)
----------------

* New ``Trie`` methods: ``__getitem__``, ``get``, ``items``, ``iteritems``.
  ``trie[u'key']`` is now the same as ``trie.key_id(u'key')``.
* small optimization for ``BytesTrie.get``.
* wrapper is rebuilt with Cython 0.20.1.

0.5.3 (2014-02-08)
------------------

* small ``Trie.restore_key`` optimization (it should work 5-15% faster)

0.5.2 (2014-02-08)
------------------

* fix ``Trie.restore_key`` method - it was reading past declared string length;
* rebuild wrapper with Cython 0.20.

0.5.1 (2013-10-03)
------------------

* ``has_keys_with_prefix(prefix)`` method (thanks
  `Matt Hickford <https://github.com/matt-hickford>`_)

0.5 (2013-05-07)
----------------

* ``BytesTrie.iterkeys``, ``BytesTrie.iteritems``,
  ``RecordTrie.iterkeys`` and ``RecordTrie.iteritems`` methods;
* wrapper is rebuilt with Cython 0.19;
* ``value_separator`` parameter for ``BytesTrie`` and ``RecordTrie``.

0.4 (2013-02-28)
----------------

* improved trie building: ``weights`` optional parameter;
* improved trie building: unnecessary input sorting is removed;
* wrapper is rebuilt with Cython 0.18;
* bundled marisa-trie C++ library is updated to svn r133.

0.3.8 (2013-01-03)
------------------

* Rebuild wrapper with Cython pre-0.18;
* update benchmarks.

0.3.7 (2012-09-21)
------------------

* Update bundled marisa-trie C++ library (this may fix more mingw issues);
* Python 3.3 support is back.

0.3.6 (2012-09-05)
------------------

* much faster (3x-7x) ``.items()`` and ``.keys()`` methods for all tries;
  faster (up to 3x) ``.prefixes()`` method for ``Trie``.

0.3.5 (2012-08-30)
------------------

* Pickling of RecordTrie is fixed (thanks lazarou for the report);
* error messages should become more useful.

0.3.4 (2012-08-29)
------------------

* Issues with mingw32 should be resolved (thanks Susumu Yata).

0.3.3 (2012-08-27)
------------------

* ``.get(key, default=None)`` method for ``BytesTrie`` and ``RecordTrie``;
* small README improvements.

0.3.2 (2012-08-26)
------------------

* Small code cleanup;
* ``load``, ``read`` and ``mmap`` methods returns 'self';
* I can't run tests (via tox) under Python 3.3 so it is
  removed from supported versions for now.

0.3.1 (2012-08-23)
------------------

* ``.prefixes()`` support for RecordTrie and BytesTrie.

0.3 (2012-08-23)
----------------

* RecordTrie and BytesTrie are introduced;
* IntTrie class is removed (probably temporary?);
* dumps/loads methods are renamed to tobytes/frombytes;
* benchmark & tests improvements;
* support for MARISA-trie config options is added.

0.2 (2012-08-19)
------------------

* Pickling/unpickling support;
* dumps/loads methods;
* python 3.3 workaround;
* improved tests;
* benchmarks.

0.1 (2012-08-17)
----------------

Initial release.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "marisa-trie",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Mikhail Korobov <kmike84@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/0b/df/504ca06cfcc6d67ec034f35b863d6719c26970407c94dc638c1994d78684/marisa_trie-1.3.0.tar.gz",
    "platform": null,
    "description": "MARISA Trie\n===========\n\n|PyPI Version|\n|PyPI Status|\n|PyPI Python Versions|\n|Github Build Status|\n\n.. tip::\n\n    Become **my boss** to help me work on this awesome software, and make the world better:\n\n   |Patreon|\n\nStatic memory-efficient Trie-like structures for Python (3.8+)\nbased on `marisa-trie`_ C++ library.\n\nString data in a MARISA-trie may take up to 50x-100x less memory than\nin a standard Python dict; the raw lookup speed is comparable; trie also\nprovides fast advanced methods like prefix search.\n\n.. note::\n\n    There are official SWIG-based Python bindings included\n    in C++ library distribution; this package provides alternative\n    Cython-based pip-installable Python bindings.\n\n.. _marisa-trie: https://github.com/s-yata/marisa-trie\n\nInstallation\n============\n\n::\n\n    python -m pip install -U marisa-trie\n\nUsage\n=====\n\nSee `tutorial`_ and `API`_ for details.\n\n.. _tutorial: https://marisa-trie.readthedocs.io/en/latest/tutorial.html\n.. _API: https://marisa-trie.readthedocs.io/en/latest/api.html\n\nCurrent limitations\n===================\n\n* The library is not tested with mingw32 compiler;\n* ``.prefixes()`` method of ``BytesTrie`` and ``RecordTrie`` is quite slow\n  and doesn't have iterator counterpart;\n* ``read()`` and ``write()`` methods don't work with file-like objects\n  (they work only with real files; pickling works fine for file-like objects);\n* there are ``keys()`` and ``items()`` methods but no ``values()`` method.\n\nLicense\n=======\n\nWrapper code is licensed under MIT License.\n\nBundled `marisa-trie`_ C++ library is dual-licensed under\nLGPL or BSD 2-clause license.\n\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/marisa-trie.svg\n   :target: https://pypi.python.org/pypi/marisa-trie/\n.. |PyPI Status| image:: https://img.shields.io/pypi/status/marisa-trie.svg\n   :target: https://pypi.python.org/pypi/marisa-trie/\n.. |PyPI Python Versions| image:: https://img.shields.io/pypi/pyversions/marisa-trie.svg\n   :target: https://pypi.python.org/pypi/marisa-trie/\n.. |Github Build Status| image:: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml/badge.svg\n   :target: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml\n.. |Patreon| image:: https://img.shields.io/badge/Patreon-F96854?style=for-the-badge&logo=patreon&logoColor=white\n   :target: https://www.patreon.com/mschoentgen\n\n\nCHANGES\n=======\n\n1.3.0 (2025-08-16)\n------------------\n\n* Updated ``libmarisa-trie`` to the latest version (0.2.7) (#116).\n* Dropped Python 3.7, 3.8 support (#112, #120).\n* Added Python 3.13 support (#112).\n* Rebuild Cython wrapper with Cython 3.1.3 (#119, [4d564de](4d564de332191c3fe33aa2240cae2494c597bba2)).\n* Moved static project metadata to ``pyproject.toml`` (#120).\n* Updated metadata license to include the bundled one from marisa-trie as well (#120).\n* Add Cython as build dependency (#122).\n\n1.2.1 (2024-10-12)\n------------------\n\n* Publish Python 3.13 wheels (only CPython ones, PyPy ones are skipped until https://github.com/pypa/distutils/issues/283 is fixed).\n* Rebuild Cython wrapper with Cython 3.0.11.\n\n1.2.0 (2024-06-05)\n------------------\n\n* Added Python 3.13 support (#105).\n* Rebuild Cython wrapper with Cython 3.0.10 (#105).\n\n1.1.1 (2024-05-06)\n------------------\n\n* Publish Linux aarch64 wheels (#101).\n\n1.1.0 (2023-10-06)\n------------------\n\n* Added Python 3.12 support.\n\n1.0.0 (2023-09-03)\n------------------\n\n* Dropped Python 2.7, 3.4, 3.5, 3.6 support.\n* Added ``Trie.map()`` (#90).\n* Rebuilt Cython wrapper with Cython 3.0.2.\n* Fixed benchmark documentation typos (#89).\n\n0.8.0 (2023-03-25)\n------------------\n\n* Add ``Trie.iter_prefixes_with_ids()`` method to return ``(prefix, id)`` pairs (#83).\n* Rebuild Cython wrapper with Cython 0.29.33 (#88).\n\n0.7.8 (2022-10-25)\n------------------\n\n* Added Python 3.11 support.\n* Rebuild Cython wrapper with Cython 0.29.32.\n\n0.7.7 (2021-08-04)\n------------------\n\n* Restored Python 2.7 support.\n* Fixed README image references not working on Windows.\n\n0.7.6 (2021-07-28)\n------------------\n\n* Wheels are now published for all platforms.\n* Fixed ``ResourceWarning: unclosed file`` in ``setup.py``.\n* Run ``black`` on the entire source code.\n* Moved the QA/CI to GitHub.\n* Rebuild Cython wrapper with Cython 0.29.24.\n* Updated ``libmarisa-trie`` to the latest version (0.2.6).\n* Fixed failing tests and usage of deprecated methods.\n* Expanded supported Python version (2.7, 3.4 - 3.10).\n\n0.7.5 (2018-04-10)\n------------------\n\n* Removed redundant ``DeprecationWarning`` messages in ``Trie.save`` and\n  ``Trie.load``.\n* Dropped support for Python 2.6.\n* Rebuild Cython wrapper with Cython 0.28.1.\n\n0.7.4 (2017-03-27)\n------------------\n\n* Fixed packaging issue, ``MANIFEST.in`` was not updated after ``libmarisa-trie``\n  became a submodule.\n\n0.7.3 (2017-02-14)\n------------------\n\n* Added ``BinaryTrie`` for storing arbitrary sequences of bytes, e.g. IP\n  addresses (thanks Tomasz Melcer);\n* Deprecated ``Trie.has_keys_with_prefix`` which can be trivially implemented in\n  terms of ``Trie.iterkeys``;\n* Deprecated ``Trie.read`` and ``Trie.write`` which onlywork for \"real\" files\n  and duplicate the functionality of ``load`` and ``save``. See issue #31 on\n  GitHub;\n* Updated ``libmarisa-trie`` to the latest version. Yay, 64-bit Windows support.\n* Rebuilt Cython wrapper with Cython 0.25.2.\n\n0.7.2 (2015-04-21)\n------------------\n\n* packaging issue is fixed.\n\n0.7.1 (2015-04-21)\n------------------\n\n* setup.py is switched to setuptools;\n* a tiny speedup;\n* wrapper is rebuilt with Cython 0.22.\n\n0.7 (2014-12-15)\n----------------\n\n* ``trie1 == trie2`` and ``trie1 != trie2`` now work (thanks Sergei Lebedev);\n* ``for key in trie:`` is fixed (thanks Sergei Lebedev);\n* wrapper is rebuilt with Cython 0.21.1 (thanks Sergei Lebedev);\n* https://bitbucket.org/kmike/marisa-trie repo is no longer supported.\n\n0.6 (2014-02-22)\n----------------\n\n* New ``Trie`` methods: ``__getitem__``, ``get``, ``items``, ``iteritems``.\n  ``trie[u'key']`` is now the same as ``trie.key_id(u'key')``.\n* small optimization for ``BytesTrie.get``.\n* wrapper is rebuilt with Cython 0.20.1.\n\n0.5.3 (2014-02-08)\n------------------\n\n* small ``Trie.restore_key`` optimization (it should work 5-15% faster)\n\n0.5.2 (2014-02-08)\n------------------\n\n* fix ``Trie.restore_key`` method - it was reading past declared string length;\n* rebuild wrapper with Cython 0.20.\n\n0.5.1 (2013-10-03)\n------------------\n\n* ``has_keys_with_prefix(prefix)`` method (thanks\n  `Matt Hickford <https://github.com/matt-hickford>`_)\n\n0.5 (2013-05-07)\n----------------\n\n* ``BytesTrie.iterkeys``, ``BytesTrie.iteritems``,\n  ``RecordTrie.iterkeys`` and ``RecordTrie.iteritems`` methods;\n* wrapper is rebuilt with Cython 0.19;\n* ``value_separator`` parameter for ``BytesTrie`` and ``RecordTrie``.\n\n0.4 (2013-02-28)\n----------------\n\n* improved trie building: ``weights`` optional parameter;\n* improved trie building: unnecessary input sorting is removed;\n* wrapper is rebuilt with Cython 0.18;\n* bundled marisa-trie C++ library is updated to svn r133.\n\n0.3.8 (2013-01-03)\n------------------\n\n* Rebuild wrapper with Cython pre-0.18;\n* update benchmarks.\n\n0.3.7 (2012-09-21)\n------------------\n\n* Update bundled marisa-trie C++ library (this may fix more mingw issues);\n* Python 3.3 support is back.\n\n0.3.6 (2012-09-05)\n------------------\n\n* much faster (3x-7x) ``.items()`` and ``.keys()`` methods for all tries;\n  faster (up to 3x) ``.prefixes()`` method for ``Trie``.\n\n0.3.5 (2012-08-30)\n------------------\n\n* Pickling of RecordTrie is fixed (thanks lazarou for the report);\n* error messages should become more useful.\n\n0.3.4 (2012-08-29)\n------------------\n\n* Issues with mingw32 should be resolved (thanks Susumu Yata).\n\n0.3.3 (2012-08-27)\n------------------\n\n* ``.get(key, default=None)`` method for ``BytesTrie`` and ``RecordTrie``;\n* small README improvements.\n\n0.3.2 (2012-08-26)\n------------------\n\n* Small code cleanup;\n* ``load``, ``read`` and ``mmap`` methods returns 'self';\n* I can't run tests (via tox) under Python 3.3 so it is\n  removed from supported versions for now.\n\n0.3.1 (2012-08-23)\n------------------\n\n* ``.prefixes()`` support for RecordTrie and BytesTrie.\n\n0.3 (2012-08-23)\n----------------\n\n* RecordTrie and BytesTrie are introduced;\n* IntTrie class is removed (probably temporary?);\n* dumps/loads methods are renamed to tobytes/frombytes;\n* benchmark & tests improvements;\n* support for MARISA-trie config options is added.\n\n0.2 (2012-08-19)\n------------------\n\n* Pickling/unpickling support;\n* dumps/loads methods;\n* python 3.3 workaround;\n* improved tests;\n* benchmarks.\n\n0.1 (2012-08-17)\n----------------\n\nInitial release.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Static memory-efficient and fast Trie-like structures for Python.",
    "version": "1.3.0",
    "project_urls": {
        "Source": "https://github.com/pytries/marisa-trie"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "756fa0b5721db425474cc6119b3d97b3bfe41a8a014f1c06909b972f9457ddd2",
                "md5": "b7a6803da4e2ff1ccee56e214c557ca3",
                "sha256": "0ec9d7fa8e16eb2399b9ab5677bca5fcca3dbc58f0b285f158c2da5fb79080d4"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7a6803da4e2ff1ccee56e214c557ca3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 174529,
            "upload_time": "2025-08-16T10:03:51",
            "upload_time_iso_8601": "2025-08-16T10:03:51.758839Z",
            "url": "https://files.pythonhosted.org/packages/75/6f/a0b5721db425474cc6119b3d97b3bfe41a8a014f1c06909b972f9457ddd2/marisa_trie-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea8ffaf148ee9ab159e5910c10cb45a83b041a7f4b0cecb28a018af4f08385cb",
                "md5": "cbb4f566ffb283b68bc645251b707c8a",
                "sha256": "ea63c74aa88d0dc24464bc356bc31625318e58b5dd20169d98e696baa3f91ffd"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbb4f566ffb283b68bc645251b707c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 157084,
            "upload_time": "2025-08-16T10:03:53",
            "upload_time_iso_8601": "2025-08-16T10:03:53.103031Z",
            "url": "https://files.pythonhosted.org/packages/ea/8f/faf148ee9ab159e5910c10cb45a83b041a7f4b0cecb28a018af4f08385cb/marisa_trie-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d374512c1f66b95e765d2912b3d03f139256b6e88c57703e328de9764737e2d7",
                "md5": "1c87a1203ba85454a54c60f83ce2b910",
                "sha256": "a22e8e3b82533fc71fa34d28e3563e72e7863810c786a8e3c350ede0fe3f4ad7"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c87a1203ba85454a54c60f83ce2b910",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1219128,
            "upload_time": "2025-08-16T10:03:54",
            "upload_time_iso_8601": "2025-08-16T10:03:54.768215Z",
            "url": "https://files.pythonhosted.org/packages/d3/74/512c1f66b95e765d2912b3d03f139256b6e88c57703e328de9764737e2d7/marisa_trie-1.3.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36b6340be32e5d47e7951424ab64f0c07c131f722ba16b7fcc67806b8fe3155d",
                "md5": "50a897b34e7eef48aa3cc63142e0f3ca",
                "sha256": "3b3a3a8b5b2ee26fa72e6c92a7b31731f79c1f81e7c0a2041e8e6b5d19497bac"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50a897b34e7eef48aa3cc63142e0f3ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1239387,
            "upload_time": "2025-08-16T10:03:56",
            "upload_time_iso_8601": "2025-08-16T10:03:56.478854Z",
            "url": "https://files.pythonhosted.org/packages/36/b6/340be32e5d47e7951424ab64f0c07c131f722ba16b7fcc67806b8fe3155d/marisa_trie-1.3.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ca9a5acb6fc303562371abcbe82c949f181bb1f975de1ab95f9e847a2616627",
                "md5": "938d8eb927790e6a2ee6f8e92f7f44c7",
                "sha256": "e2dd0868d3695c742166b7922608f9c5bbf89f536c2144743ca5a62a24290a08"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "938d8eb927790e6a2ee6f8e92f7f44c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2161706,
            "upload_time": "2025-08-16T10:03:58",
            "upload_time_iso_8601": "2025-08-16T10:03:58.129807Z",
            "url": "https://files.pythonhosted.org/packages/9c/a9/a5acb6fc303562371abcbe82c949f181bb1f975de1ab95f9e847a2616627/marisa_trie-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50c643ab41012e46a0227fb1f45b3a974912d6344eff8db948fe2119fc7ba5e4",
                "md5": "73b5733cc53d677f5193b474504cb9ee",
                "sha256": "ee193c1f26d9a10bbc56b9bd1e3b16c79ed0e0e44387275f8054d4cf853804d1"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73b5733cc53d677f5193b474504cb9ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2250011,
            "upload_time": "2025-08-16T10:04:00",
            "upload_time_iso_8601": "2025-08-16T10:04:00.215132Z",
            "url": "https://files.pythonhosted.org/packages/50/c6/43ab41012e46a0227fb1f45b3a974912d6344eff8db948fe2119fc7ba5e4/marisa_trie-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84b631b136977849aa8c810aa42c1d83c9d941084e9c953bcaf5d8cdd73c5aac",
                "md5": "c74c6de96f4784918d2f1946a8ac0e98",
                "sha256": "548b9b020a6c5ed210e13f706b9fb1d097cfc510c1a02e757ea0d61bdcf17c80"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c74c6de96f4784918d2f1946a8ac0e98",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 117190,
            "upload_time": "2025-08-16T10:04:01",
            "upload_time_iso_8601": "2025-08-16T10:04:01.763475Z",
            "url": "https://files.pythonhosted.org/packages/84/b6/31b136977849aa8c810aa42c1d83c9d941084e9c953bcaf5d8cdd73c5aac/marisa_trie-1.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6410ef02de33c43b724b7019eae6e0c9020d9de02adc0f2b2bacb83d2afc3b1f",
                "md5": "2dc3f2eb960ebe060b65c021847078b8",
                "sha256": "0111d6067c5a52141585a9213e073aa0d0438ba1c6febc40f827c5cadd3aa5d8"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2dc3f2eb960ebe060b65c021847078b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 143207,
            "upload_time": "2025-08-16T10:04:03",
            "upload_time_iso_8601": "2025-08-16T10:04:03.145139Z",
            "url": "https://files.pythonhosted.org/packages/64/10/ef02de33c43b724b7019eae6e0c9020d9de02adc0f2b2bacb83d2afc3b1f/marisa_trie-1.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7f2c98483b63c0cf9f54e283e1689980baca66d348ef214f643688b30a4b28c",
                "md5": "511b4274c38625eb70ef672dd76166a9",
                "sha256": "5d72ffde56fb1515bcb03539803d42d0a119f6782c5812bf2b7313eddc691735"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "511b4274c38625eb70ef672dd76166a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 176084,
            "upload_time": "2025-08-16T10:04:04",
            "upload_time_iso_8601": "2025-08-16T10:04:04.575244Z",
            "url": "https://files.pythonhosted.org/packages/b7/f2/c98483b63c0cf9f54e283e1689980baca66d348ef214f643688b30a4b28c/marisa_trie-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d52951ff243488d753f62e7fc5111af20cc3437bf85d44bb901a9bf4c89a0e6d",
                "md5": "cc32c87081f37e3508d252ab8cd74e7f",
                "sha256": "6a1f0781bccd854184a9c59b095ed09adf16627460eb8df4a91dc3f87e882352"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc32c87081f37e3508d252ab8cd74e7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 158864,
            "upload_time": "2025-08-16T10:04:06",
            "upload_time_iso_8601": "2025-08-16T10:04:06.016027Z",
            "url": "https://files.pythonhosted.org/packages/d5/29/51ff243488d753f62e7fc5111af20cc3437bf85d44bb901a9bf4c89a0e6d/marisa_trie-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69bda21c11c15c0e11071e9b4fc983ecc84c9575ae63abc2dd57586aa7bddebf",
                "md5": "480aae78e571827aeff1889ffb36ab6e",
                "sha256": "608d965d47f40b8cd402215b95d85db899268d277ae5b8ebe87b7acdd3e2a0bb"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "480aae78e571827aeff1889ffb36ab6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1257508,
            "upload_time": "2025-08-16T10:04:07",
            "upload_time_iso_8601": "2025-08-16T10:04:07.683826Z",
            "url": "https://files.pythonhosted.org/packages/69/bd/a21c11c15c0e11071e9b4fc983ecc84c9575ae63abc2dd57586aa7bddebf/marisa_trie-1.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c4b02e542a8e22779b35bca354cc66a736fe8ca2f20aa93203c93c16cfc4470",
                "md5": "449768e0081d6880d6843d6d5e7c1bc1",
                "sha256": "8b39a7314f6ad141c9c24acff0a71f4fdae1eab5ea827468c40afafc0662cab3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "449768e0081d6880d6843d6d5e7c1bc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1275539,
            "upload_time": "2025-08-16T10:04:09",
            "upload_time_iso_8601": "2025-08-16T10:04:09.397972Z",
            "url": "https://files.pythonhosted.org/packages/7c/4b/02e542a8e22779b35bca354cc66a736fe8ca2f20aa93203c93c16cfc4470/marisa_trie-1.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87a2308ab72fb6e9a7e40a95f56478ab0dc5bfeb17195ed97e11ed46a7c5790d",
                "md5": "4ae6b7d282c8d67d137de1029b91f5f6",
                "sha256": "6e8e2f1394eecfb780a25950849d64a799b79f538d17945e42b1652da4e0cae4"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ae6b7d282c8d67d137de1029b91f5f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2199801,
            "upload_time": "2025-08-16T10:04:10",
            "upload_time_iso_8601": "2025-08-16T10:04:10.638589Z",
            "url": "https://files.pythonhosted.org/packages/87/a2/308ab72fb6e9a7e40a95f56478ab0dc5bfeb17195ed97e11ed46a7c5790d/marisa_trie-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb0ab8e6627f6fb60d37dabd731d0639816c8c2e2f87ea9ecb34fd2d67863d7e",
                "md5": "5b23938098e3cbf45455bba1a4af6e57",
                "sha256": "1a56cc700b1405cc75fde9197f9d2fed66ecbbaee7bdf1f28728494f119dc7f3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b23938098e3cbf45455bba1a4af6e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2283801,
            "upload_time": "2025-08-16T10:04:11",
            "upload_time_iso_8601": "2025-08-16T10:04:11.988759Z",
            "url": "https://files.pythonhosted.org/packages/cb/0a/b8e6627f6fb60d37dabd731d0639816c8c2e2f87ea9ecb34fd2d67863d7e/marisa_trie-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af32fba57bcb72ea8d4331e248fa50ebeb3e9c1889eb7f2b8025974a760c624c",
                "md5": "cefaf6da00104617b63bba9106762712",
                "sha256": "58f1b70501c2462583bce5639a65af5516e9785ae6b3158533ddeecde70f0675"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cefaf6da00104617b63bba9106762712",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 117295,
            "upload_time": "2025-08-16T10:04:13",
            "upload_time_iso_8601": "2025-08-16T10:04:13.465819Z",
            "url": "https://files.pythonhosted.org/packages/af/32/fba57bcb72ea8d4331e248fa50ebeb3e9c1889eb7f2b8025974a760c624c/marisa_trie-1.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc28f8099b17fc1f0301f02556ef7c40253571b0bda2a405d3416fdf0cba2383",
                "md5": "32bce676d773e61c1eea0d3eb5fdc4e6",
                "sha256": "938f618d2cece8358899c688591d94db6652d9e1076c15a7efdfcfdc64a96cdb"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "32bce676d773e61c1eea0d3eb5fdc4e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 143966,
            "upload_time": "2025-08-16T10:04:14",
            "upload_time_iso_8601": "2025-08-16T10:04:14.873229Z",
            "url": "https://files.pythonhosted.org/packages/fc/28/f8099b17fc1f0301f02556ef7c40253571b0bda2a405d3416fdf0cba2383/marisa_trie-1.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dacdb61a1c950f23b876380928098e69c9a24f2810ef1a68eb7d5bf6732fa47",
                "md5": "6e9ba191b81fa1e6e51afd121aa099bc",
                "sha256": "28bfd6fada6c87cb31d300bbed5de1bfd338f8c98d1b834cf810a06ce019a020"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e9ba191b81fa1e6e51afd121aa099bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 174778,
            "upload_time": "2025-08-16T10:04:16",
            "upload_time_iso_8601": "2025-08-16T10:04:16.312477Z",
            "url": "https://files.pythonhosted.org/packages/2d/ac/db61a1c950f23b876380928098e69c9a24f2810ef1a68eb7d5bf6732fa47/marisa_trie-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2de0b80b66f8fe09b36150e7a1a1e1c9761d136ccb0887186404c3d2c447b25",
                "md5": "4a5c6830ca5a2311095658d5120c4df5",
                "sha256": "034e483bd35ab6d136d8a91f43088dc78549394cf3787fdeebca144e2e4c82df"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a5c6830ca5a2311095658d5120c4df5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 155737,
            "upload_time": "2025-08-16T10:04:17",
            "upload_time_iso_8601": "2025-08-16T10:04:17.371501Z",
            "url": "https://files.pythonhosted.org/packages/e2/de/0b80b66f8fe09b36150e7a1a1e1c9761d136ccb0887186404c3d2c447b25/marisa_trie-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e585da536b940fa6145744b06714fc25ca0b0b0360d0499e88678d560a0dd68",
                "md5": "b98738d0a32da033776bf2c1df2c6830",
                "sha256": "b71462677dc6c119589755394086cffbcf4d4d42f906fefb325c982c679406d6"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b98738d0a32da033776bf2c1df2c6830",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1244807,
            "upload_time": "2025-08-16T10:04:18",
            "upload_time_iso_8601": "2025-08-16T10:04:18.580639Z",
            "url": "https://files.pythonhosted.org/packages/5e/58/5da536b940fa6145744b06714fc25ca0b0b0360d0499e88678d560a0dd68/marisa_trie-1.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45cd05bed6d02213da7f2fda63e689300b186a7f16f6b982ea19bb7284ecb1ee",
                "md5": "93ff05e2889c2bd1f2d5b7c1b542703e",
                "sha256": "31c891ebce899f35936d4ab9f332b69ab762513d5944b0f43f61427e53671d42"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93ff05e2889c2bd1f2d5b7c1b542703e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1265122,
            "upload_time": "2025-08-16T10:04:19",
            "upload_time_iso_8601": "2025-08-16T10:04:19.901277Z",
            "url": "https://files.pythonhosted.org/packages/45/cd/05bed6d02213da7f2fda63e689300b186a7f16f6b982ea19bb7284ecb1ee/marisa_trie-1.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70ff06f718d62f78bfa6d7082533cd187b6425755d77a6ea901228b4085f61b3",
                "md5": "d5ae4ffbbfdc33b3bf5f49c34b6c275f",
                "sha256": "4570850d9b6e6a099797f731652dbe764dfd6dd7eff2934318a7018ba1a82cf1"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5ae4ffbbfdc33b3bf5f49c34b6c275f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2172695,
            "upload_time": "2025-08-16T10:04:21",
            "upload_time_iso_8601": "2025-08-16T10:04:21.258099Z",
            "url": "https://files.pythonhosted.org/packages/70/ff/06f718d62f78bfa6d7082533cd187b6425755d77a6ea901228b4085f61b3/marisa_trie-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c47a3a50e293f87f3a11082fbb80fdd504e2d8d1a92372476f37b08a0b765dd",
                "md5": "1f1e9113ff744585bdad7562739b95aa",
                "sha256": "d85a0484f8ecd3a6c843c1b10b42953f14278b35ce30d94bc7cb6305604a6109"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f1e9113ff744585bdad7562739b95aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2256076,
            "upload_time": "2025-08-16T10:04:23",
            "upload_time_iso_8601": "2025-08-16T10:04:23.043968Z",
            "url": "https://files.pythonhosted.org/packages/3c/47/a3a50e293f87f3a11082fbb80fdd504e2d8d1a92372476f37b08a0b765dd/marisa_trie-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a32b58f7b0c378c05eb3df632ffc2dadb93611266b0f42997e72eb9597dc25c",
                "md5": "d8c43e917115553c942303c47219fa9e",
                "sha256": "714dabb0ddd4be72841c962d0559d5a80613964dc2a5db72651ae3b2ae3408fc"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d8c43e917115553c942303c47219fa9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 115589,
            "upload_time": "2025-08-16T10:04:24",
            "upload_time_iso_8601": "2025-08-16T10:04:24.243065Z",
            "url": "https://files.pythonhosted.org/packages/9a/32/b58f7b0c378c05eb3df632ffc2dadb93611266b0f42997e72eb9597dc25c/marisa_trie-1.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e9057830e0403ef2ae9067ec07ccb2fee8297a5c42f518528c8c2e7401cd4b5",
                "md5": "cbfb18f28683a72ccc4448b3c6c1690f",
                "sha256": "bd53e6b99008ff3dab6455791800af405351d98fbf01c4f474642afb1499236d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbfb18f28683a72ccc4448b3c6c1690f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 138547,
            "upload_time": "2025-08-16T10:04:25",
            "upload_time_iso_8601": "2025-08-16T10:04:25.637801Z",
            "url": "https://files.pythonhosted.org/packages/1e/90/57830e0403ef2ae9067ec07ccb2fee8297a5c42f518528c8c2e7401cd4b5/marisa_trie-1.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f3aacc4d3bc0159e82403ad493f634fd78318205d1c5b2a2e526695ef4134bd",
                "md5": "5ceb33aa0141007f7bf310b46d38139a",
                "sha256": "f44e0c0c339fe44dd3e7fcbab91cc1a5888c12c35a8bf2811b3eb85236570b29"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ceb33aa0141007f7bf310b46d38139a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 173668,
            "upload_time": "2025-08-16T10:04:27",
            "upload_time_iso_8601": "2025-08-16T10:04:27.502659Z",
            "url": "https://files.pythonhosted.org/packages/2f/3a/acc4d3bc0159e82403ad493f634fd78318205d1c5b2a2e526695ef4134bd/marisa_trie-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8c812c5c57f597fc25fb0b2c6a47e0e3c8bbd5d82268de00cb0321f74e9f38f",
                "md5": "28e2260ecde5e8409d873054dd61e6e7",
                "sha256": "c27bde381c46574f3f534b4a62c42485e80e0e26c127899f83a391dd2c2bf078"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "28e2260ecde5e8409d873054dd61e6e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 155238,
            "upload_time": "2025-08-16T10:04:28",
            "upload_time_iso_8601": "2025-08-16T10:04:28.534381Z",
            "url": "https://files.pythonhosted.org/packages/f8/c8/12c5c57f597fc25fb0b2c6a47e0e3c8bbd5d82268de00cb0321f74e9f38f/marisa_trie-1.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd2f9aac88f2e1e1683fbdce0689e89ac06ee5e649983f049edaef562bf5a61c",
                "md5": "2f71ccbd9af05333956462c6cb665771",
                "sha256": "8fc98a5362a25c27c1372af68253ba19ec0b27f1423fce307516257458bcf778"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f71ccbd9af05333956462c6cb665771",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1238724,
            "upload_time": "2025-08-16T10:04:29",
            "upload_time_iso_8601": "2025-08-16T10:04:29.770646Z",
            "url": "https://files.pythonhosted.org/packages/dd/2f/9aac88f2e1e1683fbdce0689e89ac06ee5e649983f049edaef562bf5a61c/marisa_trie-1.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b55132d1f979d3403178723ed54c2eda0beb32138619a927c58d9b6d15a130de",
                "md5": "0a17916fcbcbd5570fd1beb987694043",
                "sha256": "989ba916e7747817b6fd2c46f2d40371ab3adaf026c1e6b4cded251ce1768ae4"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a17916fcbcbd5570fd1beb987694043",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1262627,
            "upload_time": "2025-08-16T10:04:31",
            "upload_time_iso_8601": "2025-08-16T10:04:31.073812Z",
            "url": "https://files.pythonhosted.org/packages/b5/51/32d1f979d3403178723ed54c2eda0beb32138619a927c58d9b6d15a130de/marisa_trie-1.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "550da52465a52c98b45fb8a621899274e4fb6d0d765d0920b0f10bf5b9b4c07e",
                "md5": "fd49c27c9b3d2c9d43d56e3a81b96cff",
                "sha256": "3bd0af8668d0858f174085fcac5062d38a44ee35a230fb211e7164d791ac07c3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd49c27c9b3d2c9d43d56e3a81b96cff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2172369,
            "upload_time": "2025-08-16T10:04:32",
            "upload_time_iso_8601": "2025-08-16T10:04:32.427187Z",
            "url": "https://files.pythonhosted.org/packages/55/0d/a52465a52c98b45fb8a621899274e4fb6d0d765d0920b0f10bf5b9b4c07e/marisa_trie-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80f9e4a36b56b38ba283386c4a23ff40a3aa2246b60314adaf515d9bc02c9225",
                "md5": "538ef335015023bd7602b6cc5691e67c",
                "sha256": "22a9140ffc7a82855bb41d6140e77c658d6a2abbf613b227adb1b786f53962ec"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "538ef335015023bd7602b6cc5691e67c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2255110,
            "upload_time": "2025-08-16T10:04:34",
            "upload_time_iso_8601": "2025-08-16T10:04:34.267288Z",
            "url": "https://files.pythonhosted.org/packages/80/f9/e4a36b56b38ba283386c4a23ff40a3aa2246b60314adaf515d9bc02c9225/marisa_trie-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "948b1cef28d47b7e1646c45332167399926d759c1a2bdd2184a6b56fb90f6ceb",
                "md5": "0e96fd52fa66599065cef43a2cb87a6c",
                "sha256": "dc6a1cca4ad5bead99efde0079605bc059f856b00be9b58b0f5978665ece7bb9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e96fd52fa66599065cef43a2cb87a6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 177252,
            "upload_time": "2025-08-16T10:04:38",
            "upload_time_iso_8601": "2025-08-16T10:04:38.203882Z",
            "url": "https://files.pythonhosted.org/packages/94/8b/1cef28d47b7e1646c45332167399926d759c1a2bdd2184a6b56fb90f6ceb/marisa_trie-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "924c8dbf40180b6ef6c9f22acabe13fa14ddfb4bd3940380806746f8da345946",
                "md5": "95054569fe1b4cda13db9e05f177a5bd",
                "sha256": "6482ab865261164b6577c5016b3d8a14ba1baf966945e203d78d7994702d45e4"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "95054569fe1b4cda13db9e05f177a5bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 163494,
            "upload_time": "2025-08-16T10:04:39",
            "upload_time_iso_8601": "2025-08-16T10:04:39.251894Z",
            "url": "https://files.pythonhosted.org/packages/92/4c/8dbf40180b6ef6c9f22acabe13fa14ddfb4bd3940380806746f8da345946/marisa_trie-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e135fb61a007a562fe60693eeb33cf46491c0331d51f7a66a8653883af54394c",
                "md5": "3378fb402119d61beef783d1f5364b01",
                "sha256": "31ca1258ec765f47e4df6b46cdb562caff762a9126ab72276415bca1b34d1a16"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3378fb402119d61beef783d1f5364b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1279788,
            "upload_time": "2025-08-16T10:04:40",
            "upload_time_iso_8601": "2025-08-16T10:04:40.891044Z",
            "url": "https://files.pythonhosted.org/packages/e1/35/fb61a007a562fe60693eeb33cf46491c0331d51f7a66a8653883af54394c/marisa_trie-1.3.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b16b3fd7537f4624393ce56d4511a8f5bcc083e932ced7a115e4cf88ead28e14",
                "md5": "570106916c74184e495dfd81ca140fce",
                "sha256": "d33818e5ece65da895d2262519abd752b3ef96245ae977ebe970f5a0631bcb83"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "570106916c74184e495dfd81ca140fce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1285662,
            "upload_time": "2025-08-16T10:04:42",
            "upload_time_iso_8601": "2025-08-16T10:04:42.211476Z",
            "url": "https://files.pythonhosted.org/packages/b1/6b/3fd7537f4624393ce56d4511a8f5bcc083e932ced7a115e4cf88ead28e14/marisa_trie-1.3.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2625f4cce85d8fbb9bfda8447d3068eb1b45fd24a583cfc6fbc1300583a4c8b2",
                "md5": "a039ca1d7f59f96703744959e01c711f",
                "sha256": "5e5acc03e489201b26a98251d0e8eedca43a32ab2bc1840a6cd5e8b918e193a3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a039ca1d7f59f96703744959e01c711f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2197917,
            "upload_time": "2025-08-16T10:04:44",
            "upload_time_iso_8601": "2025-08-16T10:04:44.034393Z",
            "url": "https://files.pythonhosted.org/packages/26/25/f4cce85d8fbb9bfda8447d3068eb1b45fd24a583cfc6fbc1300583a4c8b2/marisa_trie-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47fc81cee1419ee167f7358677e563209b16ab9dbbaf4cbb909ca603bebdddc7",
                "md5": "96e0a331d23c7edd1f2131f638c605a7",
                "sha256": "80bf10d0d2a19bdbc1fe1174a2887dcdaaba857218d3d627adea9045a54f5a17"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96e0a331d23c7edd1f2131f638c605a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2280101,
            "upload_time": "2025-08-16T10:04:46",
            "upload_time_iso_8601": "2025-08-16T10:04:46.138433Z",
            "url": "https://files.pythonhosted.org/packages/47/fc/81cee1419ee167f7358677e563209b16ab9dbbaf4cbb909ca603bebdddc7/marisa_trie-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73730b534e1158fe2ed3112587391d92c2595871af2924860ce3c1c69df35fe0",
                "md5": "1603f927d05599a7c2b4b8f4381d8202",
                "sha256": "324ca8b80f76016fc459e1c2b6cab8df12e4fd43830700c7290650651f71f662"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "1603f927d05599a7c2b4b8f4381d8202",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 126428,
            "upload_time": "2025-08-16T10:04:47",
            "upload_time_iso_8601": "2025-08-16T10:04:47.349821Z",
            "url": "https://files.pythonhosted.org/packages/73/73/0b534e1158fe2ed3112587391d92c2595871af2924860ce3c1c69df35fe0/marisa_trie-1.3.0-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba8c92097d861a0939ccba944ebe69822713570c052f2f5742293388e37bb413",
                "md5": "4ffbe1cd7272c234c8cd43a1f2cfa9b4",
                "sha256": "9a6a18176b283950c7f6c4c0952c3bb8b4430e5b38d645a0d96f12ff8c650a73"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ffbe1cd7272c234c8cd43a1f2cfa9b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 153867,
            "upload_time": "2025-08-16T10:04:48",
            "upload_time_iso_8601": "2025-08-16T10:04:48.336903Z",
            "url": "https://files.pythonhosted.org/packages/ba/8c/92097d861a0939ccba944ebe69822713570c052f2f5742293388e37bb413/marisa_trie-1.3.0-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a34a58d7b4e03ec784d5cc6f8695a174d079613ef20bcccc7366a0630e652ac5",
                "md5": "f0d30f70541842b59cbfe999e27c04c1",
                "sha256": "932b0101cf39d20afc07d71726b709376cbaf06316e4ce5008e2c1c21c9a925d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "f0d30f70541842b59cbfe999e27c04c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 115357,
            "upload_time": "2025-08-16T10:04:35",
            "upload_time_iso_8601": "2025-08-16T10:04:35.419987Z",
            "url": "https://files.pythonhosted.org/packages/a3/4a/58d7b4e03ec784d5cc6f8695a174d079613ef20bcccc7366a0630e652ac5/marisa_trie-1.3.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc02aae30554069fad2116ae4d8aa8b87e53796532031e6c46f24b7139e63caa",
                "md5": "534a2e7d6a82e0c58ba96b781250870a",
                "sha256": "9079d9d88921e46de1b65214d28608974dfcac2b49ee74f03807dc03e9d0da20"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "534a2e7d6a82e0c58ba96b781250870a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 139111,
            "upload_time": "2025-08-16T10:04:36",
            "upload_time_iso_8601": "2025-08-16T10:04:36.871124Z",
            "url": "https://files.pythonhosted.org/packages/bc/02/aae30554069fad2116ae4d8aa8b87e53796532031e6c46f24b7139e63caa/marisa_trie-1.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8837950df57ebab992fa2d92aa43a4dbf4f7e597d02c0ffcab0c5a59cb975461",
                "md5": "e26a895197af9c29b5d32cdef9221291",
                "sha256": "d6bb4a231d12b4e58d4f7250a8491f529ca41ef2171d3fa15fba13dce3c2efff"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e26a895197af9c29b5d32cdef9221291",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 174100,
            "upload_time": "2025-08-16T10:04:49",
            "upload_time_iso_8601": "2025-08-16T10:04:49.445516Z",
            "url": "https://files.pythonhosted.org/packages/88/37/950df57ebab992fa2d92aa43a4dbf4f7e597d02c0ffcab0c5a59cb975461/marisa_trie-1.3.0-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e3f723273742290b12f09fafb1f1200af165ed5d4106e8c6f28997606e2f706",
                "md5": "a9f9ee3f1887b7d8c8dba6d8e7ec9d62",
                "sha256": "10767b992ab20d24d8e97b54f89c5b0149e979d10bf88bb0151bee99f0f996a3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a9f9ee3f1887b7d8c8dba6d8e7ec9d62",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 155962,
            "upload_time": "2025-08-16T10:04:50",
            "upload_time_iso_8601": "2025-08-16T10:04:50.485948Z",
            "url": "https://files.pythonhosted.org/packages/5e/3f/723273742290b12f09fafb1f1200af165ed5d4106e8c6f28997606e2f706/marisa_trie-1.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3012fbf3b5b9ef16be50b01d85fffe6f84397f16ef36f21591fd8ae2a07d92df",
                "md5": "bd0cdf8ca8cd8565dc6bd2463026216c",
                "sha256": "938e6e9ed7675a0a2c520926897c02126749e12a6cb6c2e7c910e7ea83aa40f3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bd0cdf8ca8cd8565dc6bd2463026216c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1239950,
            "upload_time": "2025-08-16T10:04:51",
            "upload_time_iso_8601": "2025-08-16T10:04:51.750125Z",
            "url": "https://files.pythonhosted.org/packages/30/12/fbf3b5b9ef16be50b01d85fffe6f84397f16ef36f21591fd8ae2a07d92df/marisa_trie-1.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cad457701f64522a26a5daba6ebf5b4d40f3b88710192a2dd52081e92ff860f",
                "md5": "0e02d1875dac7bd44468c71cd22ef36d",
                "sha256": "a6e9b4cec99935cbc339d3896852c045605dd65910e8c534998d751113a0f767"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e02d1875dac7bd44468c71cd22ef36d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1255679,
            "upload_time": "2025-08-16T10:04:52",
            "upload_time_iso_8601": "2025-08-16T10:04:52.973186Z",
            "url": "https://files.pythonhosted.org/packages/4c/ad/457701f64522a26a5daba6ebf5b4d40f3b88710192a2dd52081e92ff860f/marisa_trie-1.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bae146d64a4800afd28368afb41d660a7e4c379eced8881be3c7bd78e5462b3c",
                "md5": "ccc7028bccad010be386bd5e09680d0c",
                "sha256": "2e598970f95c9bb7f4f5a27d5e11ec2babfac1f737910395009a1753283f15dd"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ccc7028bccad010be386bd5e09680d0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2175059,
            "upload_time": "2025-08-16T10:04:54",
            "upload_time_iso_8601": "2025-08-16T10:04:54.359441Z",
            "url": "https://files.pythonhosted.org/packages/ba/e1/46d64a4800afd28368afb41d660a7e4c379eced8881be3c7bd78e5462b3c/marisa_trie-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4ff122a2b273587dc1831f1bce8851fe440980490af843b45a2fae25fc8bf73",
                "md5": "5a2487361789cbfeef8a5781882d6ec2",
                "sha256": "5b37b55dd120b6dad14ee4cdab5f57dafb1a937decf148f67d13df3392e421a9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a2487361789cbfeef8a5781882d6ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2250426,
            "upload_time": "2025-08-16T10:04:56",
            "upload_time_iso_8601": "2025-08-16T10:04:56.120242Z",
            "url": "https://files.pythonhosted.org/packages/c4/ff/122a2b273587dc1831f1bce8851fe440980490af843b45a2fae25fc8bf73/marisa_trie-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe402a0a0d3d3eafa61021c25a2e118ed26a7c546f0a6b8ddd260aa3d38a4f6c",
                "md5": "6ac4e262901abf333be005b464189b38",
                "sha256": "10dce1641ef253eec9db7c5931763643b81d39e9d9e45c537d4739b6a09856f9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ac4e262901abf333be005b464189b38",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 177216,
            "upload_time": "2025-08-16T10:04:59",
            "upload_time_iso_8601": "2025-08-16T10:04:59.893217Z",
            "url": "https://files.pythonhosted.org/packages/fe/40/2a0a0d3d3eafa61021c25a2e118ed26a7c546f0a6b8ddd260aa3d38a4f6c/marisa_trie-1.3.0-cp314-cp314t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77ef7c2badd7f24010e0f5fd82bd9690277f783b2a4b48860e10d239eb5d70ca",
                "md5": "2137c71aa04c5b059a93a6fec75d9a7b",
                "sha256": "2379030b1339a38110509cd1f4d8ecbe6647c5df85eccc7f2133bcdc55855082"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2137c71aa04c5b059a93a6fec75d9a7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 163476,
            "upload_time": "2025-08-16T10:05:01",
            "upload_time_iso_8601": "2025-08-16T10:05:01.432142Z",
            "url": "https://files.pythonhosted.org/packages/77/ef/7c2badd7f24010e0f5fd82bd9690277f783b2a4b48860e10d239eb5d70ca/marisa_trie-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ba6dacc2256869e6c0829707b57eb8928701f5d988d6280bd8a853787e3c7e1",
                "md5": "f7b065642fc56cdfc6be8e69981dbb1d",
                "sha256": "04bf4a128d8ec1881477364269034df620ebcec0ab0fd54bf2c5ee4779df10fe"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f7b065642fc56cdfc6be8e69981dbb1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1277753,
            "upload_time": "2025-08-16T10:05:02",
            "upload_time_iso_8601": "2025-08-16T10:05:02.690507Z",
            "url": "https://files.pythonhosted.org/packages/7b/a6/dacc2256869e6c0829707b57eb8928701f5d988d6280bd8a853787e3c7e1/marisa_trie-1.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95e1a2ce10ad39bcc06df629f67206c79d97239aaea9649e03f584a7a2832778",
                "md5": "2eb6b2607679f1c0ccaa59576eeecd40",
                "sha256": "5c6f0c01c3853c3cc65f7b7db1c1ce3181f7479a2cc4de145fae53db3cc5193b"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2eb6b2607679f1c0ccaa59576eeecd40",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 1282282,
            "upload_time": "2025-08-16T10:05:04",
            "upload_time_iso_8601": "2025-08-16T10:05:04.015249Z",
            "url": "https://files.pythonhosted.org/packages/95/e1/a2ce10ad39bcc06df629f67206c79d97239aaea9649e03f584a7a2832778/marisa_trie-1.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26fcac7a924efcb7451c214268981d23fc5ce09eb18dbef8048fc446e5d91a54",
                "md5": "3fe3200c53fd4825c16594c248629816",
                "sha256": "cc6ea03831be59a50dbe7afc3691fa3cc8f0c6a1af48e98eccb749cbe03a5414"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fe3200c53fd4825c16594c248629816",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2196563,
            "upload_time": "2025-08-16T10:05:05",
            "upload_time_iso_8601": "2025-08-16T10:05:05.743776Z",
            "url": "https://files.pythonhosted.org/packages/26/fc/ac7a924efcb7451c214268981d23fc5ce09eb18dbef8048fc446e5d91a54/marisa_trie-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaef05ebab9343979be4f113880b55d4709d7b2edd730851367d4e362f3777b5",
                "md5": "ec349d9051d1bcf638b491af2320bf66",
                "sha256": "9c7631f8442a4407b72a150089b6b804fbc06c4494ff45c96c4469e44aaf0003"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec349d9051d1bcf638b491af2320bf66",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2277703,
            "upload_time": "2025-08-16T10:05:07",
            "upload_time_iso_8601": "2025-08-16T10:05:07.127984Z",
            "url": "https://files.pythonhosted.org/packages/ea/ef/05ebab9343979be4f113880b55d4709d7b2edd730851367d4e362f3777b5/marisa_trie-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0fd280f1c57faffc2c585d1b66202aed35ae358be1afc739ea35617af503869",
                "md5": "f767d9b2d56bcb87e3a0c864b3f17c81",
                "sha256": "10e4722fdb7b87ccf9ca279c7f7d8a2ed5b64934b9cd36cbcd5cdca81365db4d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "f767d9b2d56bcb87e3a0c864b3f17c81",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 131384,
            "upload_time": "2025-08-16T10:05:08",
            "upload_time_iso_8601": "2025-08-16T10:05:08.302933Z",
            "url": "https://files.pythonhosted.org/packages/f0/fd/280f1c57faffc2c585d1b66202aed35ae358be1afc739ea35617af503869/marisa_trie-1.3.0-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7acd5cb5da1e56687efec3b98dd8759d61ba785d5cc3d6014f3b2376885c3e54",
                "md5": "09615f5d284ff18046da51a996ff7ce1",
                "sha256": "284354853d5292b722abe4bfb9fbfff8015e9edd9462b097072875ed8c99e0d6"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "09615f5d284ff18046da51a996ff7ce1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 162544,
            "upload_time": "2025-08-16T10:05:09",
            "upload_time_iso_8601": "2025-08-16T10:05:09.340627Z",
            "url": "https://files.pythonhosted.org/packages/7a/cd/5cb5da1e56687efec3b98dd8759d61ba785d5cc3d6014f3b2376885c3e54/marisa_trie-1.3.0-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e03d2536094fb3fb257ba15666d50b5657bd2a90e2abaddf086e9d60f313ffb4",
                "md5": "bd09f48b1e6825df6845a1254acbaeb3",
                "sha256": "05ba1011626d8845643a29449e1de5faed01e9e2b261825ac67a9675ce7f7426"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "bd09f48b1e6825df6845a1254acbaeb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 119069,
            "upload_time": "2025-08-16T10:04:57",
            "upload_time_iso_8601": "2025-08-16T10:04:57.483227Z",
            "url": "https://files.pythonhosted.org/packages/e0/3d/2536094fb3fb257ba15666d50b5657bd2a90e2abaddf086e9d60f313ffb4/marisa_trie-1.3.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8cd7e0619a17a411f5580a6a1f1081dd1411fd1e7e8bd95931b8cf3a92006dc",
                "md5": "c9b0fa8f22aa691195375c5550386647",
                "sha256": "80f158464e05d6e063abaebfb8811f48333e2337605d852ae9065d442b637dd0"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9b0fa8f22aa691195375c5550386647",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 142880,
            "upload_time": "2025-08-16T10:04:58",
            "upload_time_iso_8601": "2025-08-16T10:04:58.819245Z",
            "url": "https://files.pythonhosted.org/packages/d8/cd/7e0619a17a411f5580a6a1f1081dd1411fd1e7e8bd95931b8cf3a92006dc/marisa_trie-1.3.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4593128122351a187fce676ce2a9fc6f61306b68d2615836997d0ac0f56422c",
                "md5": "75bd6e0491441a48d9ec3a1e04ee0522",
                "sha256": "e945c78652b01720d419051cf37642165878abb182d555f99390c7d36cec6152"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75bd6e0491441a48d9ec3a1e04ee0522",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 175210,
            "upload_time": "2025-08-16T10:05:10",
            "upload_time_iso_8601": "2025-08-16T10:05:10.459272Z",
            "url": "https://files.pythonhosted.org/packages/c4/59/3128122351a187fce676ce2a9fc6f61306b68d2615836997d0ac0f56422c/marisa_trie-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9532e09b2c1cb7b366d013f69ff9b5970f9f7739249a53f1a267b10588ffd15a",
                "md5": "355dd08f07175eeb90369168dbcc71b5",
                "sha256": "e79b517386135eb84c3459805047bfb173df2763b1aa322a66864f13d620bd83"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "355dd08f07175eeb90369168dbcc71b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 157950,
            "upload_time": "2025-08-16T10:05:11",
            "upload_time_iso_8601": "2025-08-16T10:05:11.554189Z",
            "url": "https://files.pythonhosted.org/packages/95/32/e09b2c1cb7b366d013f69ff9b5970f9f7739249a53f1a267b10588ffd15a/marisa_trie-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f158cac2f6fd0632d3f4cf4d0f75b0c03042a687d9cc4201d4b40e5d4d91664",
                "md5": "7be50f6e9ac60ea9e2079502111a5365",
                "sha256": "a1b34336cd3a7bc84d29ca6da4f38e6845b83cb18b38362f967b0a3096847ec2"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7be50f6e9ac60ea9e2079502111a5365",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1219386,
            "upload_time": "2025-08-16T10:05:12",
            "upload_time_iso_8601": "2025-08-16T10:05:12.786726Z",
            "url": "https://files.pythonhosted.org/packages/0f/15/8cac2f6fd0632d3f4cf4d0f75b0c03042a687d9cc4201d4b40e5d4d91664/marisa_trie-1.3.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "983f5cf79d7758e2414779f920dbc0d8158c9da1912411e68ab21f285421c781",
                "md5": "9c3c7bd3498885a30b58aa3e83874a87",
                "sha256": "644e64763617b346bb66bdaa7a286bedc888cd2afa8f3b0219de62f996c701bc"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c3c7bd3498885a30b58aa3e83874a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1238793,
            "upload_time": "2025-08-16T10:05:14",
            "upload_time_iso_8601": "2025-08-16T10:05:14.574817Z",
            "url": "https://files.pythonhosted.org/packages/98/3f/5cf79d7758e2414779f920dbc0d8158c9da1912411e68ab21f285421c781/marisa_trie-1.3.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ea336ad8abd29b5d616c85e73b7111c1cbd6c5254bbcb90f3c33f02e246480e",
                "md5": "e683d1a24911c2e1ba0f6453cf8846d5",
                "sha256": "f03cea2fabebf4f1429ccb87c4037dacd828050e8829cacb233f0865bda4244e"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e683d1a24911c2e1ba0f6453cf8846d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2160034,
            "upload_time": "2025-08-16T10:05:15",
            "upload_time_iso_8601": "2025-08-16T10:05:15.946947Z",
            "url": "https://files.pythonhosted.org/packages/7e/a3/36ad8abd29b5d616c85e73b7111c1cbd6c5254bbcb90f3c33f02e246480e/marisa_trie-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d0fe98c4aa9fc39fff6b8a0d62fb1e4f6621cab95c84d122ee2107d060dc8ba",
                "md5": "2eb1cebe575db192963d142aaa572846",
                "sha256": "06ad6722d6d3f3be1f1a9b2b61afe8836e37d9f7ac4d23ebeb4b1acb043b2559"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2eb1cebe575db192963d142aaa572846",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2249078,
            "upload_time": "2025-08-16T10:05:17",
            "upload_time_iso_8601": "2025-08-16T10:05:17.304065Z",
            "url": "https://files.pythonhosted.org/packages/6d/0f/e98c4aa9fc39fff6b8a0d62fb1e4f6621cab95c84d122ee2107d060dc8ba/marisa_trie-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca0ecf79f2626c4bee801da3f501f78786737e48e4cc374908946c6d6ca6043a",
                "md5": "9c470b9ddd79735dbdff51a1e39bb4e7",
                "sha256": "9210446587d3daa40c2fe808b966a80e03995eeb6688c475b77276200524f0a0"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "9c470b9ddd79735dbdff51a1e39bb4e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 117450,
            "upload_time": "2025-08-16T10:05:18",
            "upload_time_iso_8601": "2025-08-16T10:05:18.449367Z",
            "url": "https://files.pythonhosted.org/packages/ca/0e/cf79f2626c4bee801da3f501f78786737e48e4cc374908946c6d6ca6043a/marisa_trie-1.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8a866956529b7d22c8c57251b5129279ec65a2f77284f694efc47ad3beb7c1e",
                "md5": "97698143264b187c23e1a13a3bbb9462",
                "sha256": "cba78321fae9b825f2bfcb2c3f66f60ab773777a8d2fcb34468daac657e0fc48"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "97698143264b187c23e1a13a3bbb9462",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 143625,
            "upload_time": "2025-08-16T10:05:19",
            "upload_time_iso_8601": "2025-08-16T10:05:19.445142Z",
            "url": "https://files.pythonhosted.org/packages/f8/a8/66956529b7d22c8c57251b5129279ec65a2f77284f694efc47ad3beb7c1e/marisa_trie-1.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bdf504ca06cfcc6d67ec034f35b863d6719c26970407c94dc638c1994d78684",
                "md5": "98d5511fe0a4c54b1531083dff40f845",
                "sha256": "39af3060b4ab41a3cce18b1808338db8bf50b6ec4b81be3cc452558aaad95581"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "98d5511fe0a4c54b1531083dff40f845",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 212383,
            "upload_time": "2025-08-16T10:05:20",
            "upload_time_iso_8601": "2025-08-16T10:05:20.900308Z",
            "url": "https://files.pythonhosted.org/packages/0b/df/504ca06cfcc6d67ec034f35b863d6719c26970407c94dc638c1994d78684/marisa_trie-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-16 10:05:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pytries",
    "github_project": "marisa-trie",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "marisa-trie"
}
        
Elapsed time: 1.73484s