marisa-trie


Namemarisa-trie JSON
Version 1.1.1 PyPI version JSON
download
home_pagehttps://github.com/pytries/marisa-trie
SummaryStatic memory-efficient and fast Trie-like structures for Python.
upload_time2024-05-06 12:48:40
maintainerNone
docs_urlNone
authorMikhail Korobov
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            MARISA Trie
===========

.. image:: https://img.shields.io/pypi/pyversions/marisa-trie.svg
   :target: https://pypi.python.org/pypi/marisa-trie

.. image:: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml/badge.svg
   :target: https://github.com/pytries/marisa-trie/actions/workflows/tests.yml

Static memory-efficient Trie-like structures for Python (3.7+)
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 and BSD 2-clause license.

CHANGES
=======

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": "https://github.com/pytries/marisa-trie",
    "name": "marisa-trie",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Mikhail Korobov",
    "author_email": "kmike84@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c9/5d/2cb545ed5896a8cf9a1994dbfb794d20371d774193f1cb0bfa395da73e10/marisa_trie-1.1.1.tar.gz",
    "platform": null,
    "description": "MARISA Trie\n===========\n\n.. image:: https://img.shields.io/pypi/pyversions/marisa-trie.svg\n   :target: https://pypi.python.org/pypi/marisa-trie\n\n.. 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\nStatic memory-efficient Trie-like structures for Python (3.7+)\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 and BSD 2-clause license.\n\nCHANGES\n=======\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": "MIT",
    "summary": "Static memory-efficient and fast Trie-like structures for Python.",
    "version": "1.1.1",
    "project_urls": {
        "Homepage": "https://github.com/pytries/marisa-trie"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28141aaf62659fddaa150962bae315bbb60192f16b8cfeb45a15342fa6f433d2",
                "md5": "6dd7213deb233166e730e57fa3f897ec",
                "sha256": "68e48a547b9a1fd64c648684cd375402ba521c2c4a724756a944ef4b88c3047c"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6dd7213deb233166e730e57fa3f897ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 362601,
            "upload_time": "2024-05-06T12:46:20",
            "upload_time_iso_8601": "2024-05-06T12:46:20.539974Z",
            "url": "https://files.pythonhosted.org/packages/28/14/1aaf62659fddaa150962bae315bbb60192f16b8cfeb45a15342fa6f433d2/marisa_trie-1.1.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfe0db24cb378741a67d06fea1ae9c204e87f80b398deccf639ea6f97c7cc183",
                "md5": "f954eab28f3d64164253df8411852e5b",
                "sha256": "615d7de907919bda16e9cafc1fa74942354273c299bf07e3c0adb2420d6fad48"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f954eab28f3d64164253df8411852e5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 192518,
            "upload_time": "2024-05-06T12:46:22",
            "upload_time_iso_8601": "2024-05-06T12:46:22.301420Z",
            "url": "https://files.pythonhosted.org/packages/df/e0/db24cb378741a67d06fea1ae9c204e87f80b398deccf639ea6f97c7cc183/marisa_trie-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77d92cea3ae077d7ed5092cb9fa441a69fd6f8d69628e0e1f8c2744e12a712a7",
                "md5": "757d1b0bb8c871779b60c92d23a83dd9",
                "sha256": "d587001ef30960eba6d4c9b1f6b03037480c1e4b277b305b5a2957a5eebe4f09"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "757d1b0bb8c871779b60c92d23a83dd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 174889,
            "upload_time": "2024-05-06T12:46:23",
            "upload_time_iso_8601": "2024-05-06T12:46:23.676331Z",
            "url": "https://files.pythonhosted.org/packages/77/d9/2cea3ae077d7ed5092cb9fa441a69fd6f8d69628e0e1f8c2744e12a712a7/marisa_trie-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f83568a5f237ce642179c56d91d8dbcc45c92b5bcc8e2dca2042662e6178f11",
                "md5": "64f511330fcb24fd35fa729614dde35e",
                "sha256": "11765ee9c2ad162bc7f8ab9cf383a21349673034bfac9bf00d6b06e44d70a4c9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "64f511330fcb24fd35fa729614dde35e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1308611,
            "upload_time": "2024-05-06T12:46:25",
            "upload_time_iso_8601": "2024-05-06T12:46:25.161332Z",
            "url": "https://files.pythonhosted.org/packages/1f/83/568a5f237ce642179c56d91d8dbcc45c92b5bcc8e2dca2042662e6178f11/marisa_trie-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ddad2e33c74fc0f3e789af347971cac3dd3553b2d29ead3f76d3424671a1030",
                "md5": "a44f5f4de87f0778dbf97b33f5a5ae05",
                "sha256": "2d5abc72a7267de6a4e3aa7463e780ddfaac442ef3a385f9e1c60e7f32c0cc34"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a44f5f4de87f0778dbf97b33f5a5ae05",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1336046,
            "upload_time": "2024-05-06T12:46:27",
            "upload_time_iso_8601": "2024-05-06T12:46:27.097299Z",
            "url": "https://files.pythonhosted.org/packages/1d/da/d2e33c74fc0f3e789af347971cac3dd3553b2d29ead3f76d3424671a1030/marisa_trie-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0800760625fb72a3c953157dd7925908ddbe5709e807137f73429e81f490949",
                "md5": "b9b8c12143e9a2b62900ab0269a5c220",
                "sha256": "c70f85ab67754e2f28af6cb1f1db826b5ec735beca2fa021a79c14f9afbc6167"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b9b8c12143e9a2b62900ab0269a5c220",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1294720,
            "upload_time": "2024-05-06T12:46:28",
            "upload_time_iso_8601": "2024-05-06T12:46:28.447360Z",
            "url": "https://files.pythonhosted.org/packages/b0/80/0760625fb72a3c953157dd7925908ddbe5709e807137f73429e81f490949/marisa_trie-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4285583e16a9f2cafb1eb28138c567dd9c2eeb28ac4a5553f849e9ea53ac9f0",
                "md5": "adafb08e2034cc9f67e0ce08854b8600",
                "sha256": "d5c3a3d12f9c1a4312562b03ccbbd29d0aa28bda999c4f7fa7763f011c9d3a11"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "adafb08e2034cc9f67e0ce08854b8600",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1870295,
            "upload_time": "2024-05-06T12:46:30",
            "upload_time_iso_8601": "2024-05-06T12:46:30.004060Z",
            "url": "https://files.pythonhosted.org/packages/b4/28/5583e16a9f2cafb1eb28138c567dd9c2eeb28ac4a5553f849e9ea53ac9f0/marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f86f48dbdd100ad320ba43ff536610fb0e53e084ccadd614206a4ed0c38a07a7",
                "md5": "45cef6645907be0709edbb8bd4c43da8",
                "sha256": "73eec66265424a548119648a6f38b119a525a767a86dc397e001bfe70f518b91"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "45cef6645907be0709edbb8bd4c43da8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1894518,
            "upload_time": "2024-05-06T12:46:31",
            "upload_time_iso_8601": "2024-05-06T12:46:31.531053Z",
            "url": "https://files.pythonhosted.org/packages/f8/6f/48dbdd100ad320ba43ff536610fb0e53e084ccadd614206a4ed0c38a07a7/marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecdf793a607c03adc24ede43631644311893c166d5fb485843c1c47e536f1e11",
                "md5": "9582f9421acb5d57130959ac477dbef7",
                "sha256": "93c7129f410f9f3215d01ae7737cfc9afa528264c53ba8ee9859a29f164069e0"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9582f9421acb5d57130959ac477dbef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1911380,
            "upload_time": "2024-05-06T12:46:33",
            "upload_time_iso_8601": "2024-05-06T12:46:33.062218Z",
            "url": "https://files.pythonhosted.org/packages/ec/df/793a607c03adc24ede43631644311893c166d5fb485843c1c47e536f1e11/marisa_trie-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3b4b472027e0d4e61238340f69454f67d53197f03a4b9635679957ac7db6dc3",
                "md5": "b43dff14bf3fb3ea41b3f8991a87897a",
                "sha256": "fe5b7ed1768409933d4457b8bf8d2b2b1af77b7333a27bd418ea0510289d4763"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b43dff14bf3fb3ea41b3f8991a87897a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 131100,
            "upload_time": "2024-05-06T12:46:34",
            "upload_time_iso_8601": "2024-05-06T12:46:34.800369Z",
            "url": "https://files.pythonhosted.org/packages/a3/b4/b472027e0d4e61238340f69454f67d53197f03a4b9635679957ac7db6dc3/marisa_trie-1.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f083d10cbc822b6c9fdb00504440b94c104c4a6d4c5262152fea85620fd26913",
                "md5": "d0d02037a86d929c95e8080b38bee7fd",
                "sha256": "9c5baad750994681ebb8a92bd577a9be31de6e6f9cd391156bf595b91f719db2"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d0d02037a86d929c95e8080b38bee7fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 152710,
            "upload_time": "2024-05-06T12:46:36",
            "upload_time_iso_8601": "2024-05-06T12:46:36.029379Z",
            "url": "https://files.pythonhosted.org/packages/f0/83/d10cbc822b6c9fdb00504440b94c104c4a6d4c5262152fea85620fd26913/marisa_trie-1.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2fb333aa7b655cc9ca6022c93db5bffcfb75ab7f7ae50593c5dac7e2f1cded0",
                "md5": "0ce60d255bbf5797cb959cf2f4581d6a",
                "sha256": "bfc1a6b60bccee0f8b2edba893b9ad339e7607aee728f3bc4f75ba7d28185c7d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0ce60d255bbf5797cb959cf2f4581d6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 364469,
            "upload_time": "2024-05-06T12:46:37",
            "upload_time_iso_8601": "2024-05-06T12:46:37.318081Z",
            "url": "https://files.pythonhosted.org/packages/f2/fb/333aa7b655cc9ca6022c93db5bffcfb75ab7f7ae50593c5dac7e2f1cded0/marisa_trie-1.1.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd0c87cfb7602b0f0df15bb31b44e24084f8d4c670772f68c41b700a7a17dc85",
                "md5": "ee86884e33a9e41786c3197dda67dc79",
                "sha256": "d45329585ad3e068b7878ba929032987c6a53f85a40bd859b9a1a16324236dd6"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee86884e33a9e41786c3197dda67dc79",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 193530,
            "upload_time": "2024-05-06T12:46:38",
            "upload_time_iso_8601": "2024-05-06T12:46:38.782096Z",
            "url": "https://files.pythonhosted.org/packages/cd/0c/87cfb7602b0f0df15bb31b44e24084f8d4c670772f68c41b700a7a17dc85/marisa_trie-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fbd72ea1306a3c239866ec39496fcb384c9c410ef1dcfdbcb06ec853592869b",
                "md5": "2212ca920f0877e445d37fc76980eaa4",
                "sha256": "bd028e97d418f092e18d451a0a42bffaa849457662d66747a03332dfff6c39d9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2212ca920f0877e445d37fc76980eaa4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 175542,
            "upload_time": "2024-05-06T12:46:40",
            "upload_time_iso_8601": "2024-05-06T12:46:40.047193Z",
            "url": "https://files.pythonhosted.org/packages/3f/bd/72ea1306a3c239866ec39496fcb384c9c410ef1dcfdbcb06ec853592869b/marisa_trie-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66ac37b976bcc1cc8b6abceef3e8d6b547462c7fb35a95fc9a5837fd4106e659",
                "md5": "e49efed9637eb8422482a00bcbf6ccb8",
                "sha256": "37d423cb3a9fe4270ee2ad083d1bb62d6c4cc333dcb1197b024ee1ae7c5d6535"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e49efed9637eb8422482a00bcbf6ccb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1386778,
            "upload_time": "2024-05-06T12:46:42",
            "upload_time_iso_8601": "2024-05-06T12:46:42.040516Z",
            "url": "https://files.pythonhosted.org/packages/66/ac/37b976bcc1cc8b6abceef3e8d6b547462c7fb35a95fc9a5837fd4106e659/marisa_trie-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "491360394d99887c0f6f841614cb21c052d681436fed64dad003955a6f40e0c8",
                "md5": "b331f1a4326654f295e2bbad542825c3",
                "sha256": "7cbcf88ddab9890a4942b52fff6c09d8b8aea59f4861b5d37e112a16a4218461"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b331f1a4326654f295e2bbad542825c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1411905,
            "upload_time": "2024-05-06T12:46:44",
            "upload_time_iso_8601": "2024-05-06T12:46:44.103024Z",
            "url": "https://files.pythonhosted.org/packages/49/13/60394d99887c0f6f841614cb21c052d681436fed64dad003955a6f40e0c8/marisa_trie-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86c046356d2090030903c58cd512c7b6d78eff336eab73a5290671f64ce19ede",
                "md5": "554beecf3ef34cfc904bb09f63bcde99",
                "sha256": "4268b12a279c90450b39e062068ff4c878a6b9750d6ab52ade8285b1594b5d10"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "554beecf3ef34cfc904bb09f63bcde99",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1361364,
            "upload_time": "2024-05-06T12:46:45",
            "upload_time_iso_8601": "2024-05-06T12:46:45.724159Z",
            "url": "https://files.pythonhosted.org/packages/86/c0/46356d2090030903c58cd512c7b6d78eff336eab73a5290671f64ce19ede/marisa_trie-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6698bb88853e22cd6bcce68135bdb9dedc721560732d49e6208e3809f0971d7d",
                "md5": "9cc6a06a9966801c6927d57369c1aef5",
                "sha256": "bbfbbff3e94b3a0be44e010b093af1ce0e29c7ed081d2a020496e863333f5c11"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9cc6a06a9966801c6927d57369c1aef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1935496,
            "upload_time": "2024-05-06T12:46:47",
            "upload_time_iso_8601": "2024-05-06T12:46:47.695145Z",
            "url": "https://files.pythonhosted.org/packages/66/98/bb88853e22cd6bcce68135bdb9dedc721560732d49e6208e3809f0971d7d/marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a7e3ceb75ee4fe4d21126c35e86eeb728814311fb68806cc09e36e9055f90f7",
                "md5": "3c8c854ece6cf3dd679d65f3bda70e1a",
                "sha256": "5ecc678f562dd0cfe2406f0d5447e8200691509149c979334c2d0c26420d28ac"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3c8c854ece6cf3dd679d65f3bda70e1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1954096,
            "upload_time": "2024-05-06T12:46:49",
            "upload_time_iso_8601": "2024-05-06T12:46:49.729982Z",
            "url": "https://files.pythonhosted.org/packages/8a/7e/3ceb75ee4fe4d21126c35e86eeb728814311fb68806cc09e36e9055f90f7/marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8e995c2cdd57e4e007cc04394398b2cdb70e1343d40a41b73a54b0e520b377e",
                "md5": "ae2ad3149f5cea89f045bf3f86e6441b",
                "sha256": "1039316fc5899eee25df9302d81380e0be9a7fa0c10231322187b6d932b55a4a"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae2ad3149f5cea89f045bf3f86e6441b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1973711,
            "upload_time": "2024-05-06T12:46:51",
            "upload_time_iso_8601": "2024-05-06T12:46:51.203507Z",
            "url": "https://files.pythonhosted.org/packages/e8/e9/95c2cdd57e4e007cc04394398b2cdb70e1343d40a41b73a54b0e520b377e/marisa_trie-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fdb65fa3928c9dbbbfbcafe341777ee395871ed6c8105afa81422b75ad4be5d",
                "md5": "2cd2d2056f10df09f52d2f4e75a50db7",
                "sha256": "67fa17083d5fb6d883c91ae512f9aab093a8a73ed77eae07e963014774909e81"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2cd2d2056f10df09f52d2f4e75a50db7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 131151,
            "upload_time": "2024-05-06T12:46:52",
            "upload_time_iso_8601": "2024-05-06T12:46:52.682905Z",
            "url": "https://files.pythonhosted.org/packages/7f/db/65fa3928c9dbbbfbcafe341777ee395871ed6c8105afa81422b75ad4be5d/marisa_trie-1.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e6ded921d88d596094aa8dd5749ab83a95b09f8f8f0b057cb6cac0d376ea398",
                "md5": "07a24bd2b3351c55fee70e34fb22326e",
                "sha256": "c3140312ecb40456490d2afe24594bfc62a5a18de5344672ce6526e4c6e79e0e"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "07a24bd2b3351c55fee70e34fb22326e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 153252,
            "upload_time": "2024-05-06T12:46:53",
            "upload_time_iso_8601": "2024-05-06T12:46:53.842264Z",
            "url": "https://files.pythonhosted.org/packages/3e/6d/ed921d88d596094aa8dd5749ab83a95b09f8f8f0b057cb6cac0d376ea398/marisa_trie-1.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed578a6965d9c5124813b9b2b239c4dfd14b690d977b1010a187fc34719f7053",
                "md5": "b0c448e66657bb6f2f700449b4a225eb",
                "sha256": "98270ed60d0906a185dca185a9ce92fb97fbb68878a6cd76bd61994725727402"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b0c448e66657bb6f2f700449b4a225eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 361616,
            "upload_time": "2024-05-06T12:46:55",
            "upload_time_iso_8601": "2024-05-06T12:46:55.648175Z",
            "url": "https://files.pythonhosted.org/packages/ed/57/8a6965d9c5124813b9b2b239c4dfd14b690d977b1010a187fc34719f7053/marisa_trie-1.1.1-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f61a343ad39193ce6a5678a7285f1fdd2220047e78f4145b085aba4d99d98db",
                "md5": "e407f419f354c47699cb81db277d63bb",
                "sha256": "3ff16e08924f0c342a37b1b1762d8d1394c4cc3b29724e124af54edecbdbd820"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e407f419f354c47699cb81db277d63bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 191021,
            "upload_time": "2024-05-06T12:46:56",
            "upload_time_iso_8601": "2024-05-06T12:46:56.887513Z",
            "url": "https://files.pythonhosted.org/packages/2f/61/a343ad39193ce6a5678a7285f1fdd2220047e78f4145b085aba4d99d98db/marisa_trie-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e8fed76562d4e065f21c7cdcca36e5b15eea5f81a531ee559ad56411b7f386f",
                "md5": "781dd44e5285cd54d6c4ca64f40d21b7",
                "sha256": "e2f867376a302d4770817f8caf1b1f22ac32a2a8a49629343391640054f8f7ab"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "781dd44e5285cd54d6c4ca64f40d21b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 174948,
            "upload_time": "2024-05-06T12:46:58",
            "upload_time_iso_8601": "2024-05-06T12:46:58.762752Z",
            "url": "https://files.pythonhosted.org/packages/4e/8f/ed76562d4e065f21c7cdcca36e5b15eea5f81a531ee559ad56411b7f386f/marisa_trie-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8590d01ff1e260f3f6be89560d4fb91a3f3bda8ec85c2f71b0482bc1a774e4b",
                "md5": "e5f4f8e88c4e235db52a5fc8737b7dd3",
                "sha256": "a2ae28c5ad4abc1e638db5b39c454a03b25e966836cb3b7edbf398b34393d5ed"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e5f4f8e88c4e235db52a5fc8737b7dd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1362003,
            "upload_time": "2024-05-06T12:47:00",
            "upload_time_iso_8601": "2024-05-06T12:47:00.205315Z",
            "url": "https://files.pythonhosted.org/packages/d8/59/0d01ff1e260f3f6be89560d4fb91a3f3bda8ec85c2f71b0482bc1a774e4b/marisa_trie-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1c335210fbca971f8c120a8f73478e15f5912d09cdb736faef1b48062f0e2cb",
                "md5": "52f9dbcd2334e5d4c2fc025d740ee8af",
                "sha256": "597077e4687d1ab2df13a6d46e33a09e6edcb985566717fe52bcb262f592754b"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52f9dbcd2334e5d4c2fc025d740ee8af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1397896,
            "upload_time": "2024-05-06T12:47:01",
            "upload_time_iso_8601": "2024-05-06T12:47:01.758318Z",
            "url": "https://files.pythonhosted.org/packages/e1/c3/35210fbca971f8c120a8f73478e15f5912d09cdb736faef1b48062f0e2cb/marisa_trie-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7de0ec42f5f9d63911a0bc0fbfcbad806e1ab53007a09877f6e9c5c614f480b",
                "md5": "3defb80ba071973cc8b684d7757aee8b",
                "sha256": "29414a4b49905c67b48c662f39894d7594be6e3a58b15d3e7eee3588188d5591"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3defb80ba071973cc8b684d7757aee8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1337257,
            "upload_time": "2024-05-06T12:47:03",
            "upload_time_iso_8601": "2024-05-06T12:47:03.744277Z",
            "url": "https://files.pythonhosted.org/packages/b7/de/0ec42f5f9d63911a0bc0fbfcbad806e1ab53007a09877f6e9c5c614f480b/marisa_trie-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a67d44a71564d364def32fac9cd2359f837c8e4fee960b120472e3512e59aaf",
                "md5": "39e58d819488abff27fb6cca418f202a",
                "sha256": "52414fd15573475c8f79f90c3b7bbc37723e54f9671ba7d0e491887bcdeac7e7"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39e58d819488abff27fb6cca418f202a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1901193,
            "upload_time": "2024-05-06T12:47:05",
            "upload_time_iso_8601": "2024-05-06T12:47:05.453970Z",
            "url": "https://files.pythonhosted.org/packages/6a/67/d44a71564d364def32fac9cd2359f837c8e4fee960b120472e3512e59aaf/marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38d864303c24ae27b5f4f69a4f58569816b3ac2260ccd50790b13becb24103fe",
                "md5": "6056fdc7d21b5f26385c7e0355a7c98e",
                "sha256": "5aa364e4ccda1af55784b6dd318954924870792f9fd336b941d9b2fd8a4311e0"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6056fdc7d21b5f26385c7e0355a7c98e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1924351,
            "upload_time": "2024-05-06T12:47:06",
            "upload_time_iso_8601": "2024-05-06T12:47:06.969130Z",
            "url": "https://files.pythonhosted.org/packages/38/d8/64303c24ae27b5f4f69a4f58569816b3ac2260ccd50790b13becb24103fe/marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4535be721ebc449728935554e40805295f954940b284e761ecc7f83c2528bd7",
                "md5": "c5a2879b40ff261b861ffb1229ac50b5",
                "sha256": "86427594ee1024d092a1482c33ed857b74d55418a4385495e1e2c60de8ca7572"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5a2879b40ff261b861ffb1229ac50b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1947509,
            "upload_time": "2024-05-06T12:47:09",
            "upload_time_iso_8601": "2024-05-06T12:47:09.081434Z",
            "url": "https://files.pythonhosted.org/packages/e4/53/5be721ebc449728935554e40805295f954940b284e761ecc7f83c2528bd7/marisa_trie-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a5a2b9c693ce95dd4702ee410abd89a4411da6fa3e775e879e5c083c51bcb1a",
                "md5": "777251aeb5701ae576cd536c74b33914",
                "sha256": "dea2583084f7d5e095676afc1cc6d342862911cd496095b636ef14ac74f14aa3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "777251aeb5701ae576cd536c74b33914",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 129710,
            "upload_time": "2024-05-06T12:47:11",
            "upload_time_iso_8601": "2024-05-06T12:47:11.120117Z",
            "url": "https://files.pythonhosted.org/packages/9a/5a/2b9c693ce95dd4702ee410abd89a4411da6fa3e775e879e5c083c51bcb1a/marisa_trie-1.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9796abdc3b9ee6d9509a9b03f696ed938340308d8e1eb591c47544b13f8e23ad",
                "md5": "f68d4149ad4047d19ee50f6a3601d026",
                "sha256": "8a2af61b5c3d9151b9320020499c3609651e24dd0c6178ec8f4826c78dbd5f42"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f68d4149ad4047d19ee50f6a3601d026",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 151317,
            "upload_time": "2024-05-06T12:47:12",
            "upload_time_iso_8601": "2024-05-06T12:47:12.837923Z",
            "url": "https://files.pythonhosted.org/packages/97/96/abdc3b9ee6d9509a9b03f696ed938340308d8e1eb591c47544b13f8e23ad/marisa_trie-1.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "725f8f2b5253c56147a8192cae2de1a8663dde4849f35fd8a051376629a3b94b",
                "md5": "cd93b76c716bff61c73ecd4ee4e2d22c",
                "sha256": "5be36ef0f5649e47f53302dc5317445c2764870d6a0ab5317a79381ff5ddf2bb"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd93b76c716bff61c73ecd4ee4e2d22c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 190264,
            "upload_time": "2024-05-06T12:47:14",
            "upload_time_iso_8601": "2024-05-06T12:47:14.092978Z",
            "url": "https://files.pythonhosted.org/packages/72/5f/8f2b5253c56147a8192cae2de1a8663dde4849f35fd8a051376629a3b94b/marisa_trie-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe391b9581c300ffa4007c67b1f743199dbaf6a962e6e39514bff09cf9dab894",
                "md5": "9fa870aa249ab5d62f3db5fdf0ecbe8c",
                "sha256": "298a496ac0a7d06710e1ecc4df1f22b7384ca1a46d5295eb7b4445bbd15adb92"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9fa870aa249ab5d62f3db5fdf0ecbe8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1255111,
            "upload_time": "2024-05-06T12:47:16",
            "upload_time_iso_8601": "2024-05-06T12:47:16.062631Z",
            "url": "https://files.pythonhosted.org/packages/fe/39/1b9581c300ffa4007c67b1f743199dbaf6a962e6e39514bff09cf9dab894/marisa_trie-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "071f0ab48245ec9e64de9795f948b3a9ff77efbc3c1984cac19b8e3d2126910d",
                "md5": "cb4b82f265c550e5635f3e554e78ad10",
                "sha256": "883ec31db8ec790a3ce6f39988a983b2c2b49ab018ec0d5bad4a248c8171f90d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb4b82f265c550e5635f3e554e78ad10",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1286595,
            "upload_time": "2024-05-06T12:47:18",
            "upload_time_iso_8601": "2024-05-06T12:47:18.641904Z",
            "url": "https://files.pythonhosted.org/packages/07/1f/0ab48245ec9e64de9795f948b3a9ff77efbc3c1984cac19b8e3d2126910d/marisa_trie-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65d1016306e54d3a41cd6541e2ed0d92d93687ff23c26f51d954b018dbb594be",
                "md5": "890fb187ef7f6645c36c2834bd251411",
                "sha256": "f839cddd130d1073a151eb13d709b4449eb4eb2a29c0f38b8e1436fd57eb4a4b"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "890fb187ef7f6645c36c2834bd251411",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1242774,
            "upload_time": "2024-05-06T12:47:20",
            "upload_time_iso_8601": "2024-05-06T12:47:20.354516Z",
            "url": "https://files.pythonhosted.org/packages/65/d1/016306e54d3a41cd6541e2ed0d92d93687ff23c26f51d954b018dbb594be/marisa_trie-1.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba006b383e14312ae515a01aaeb5f4c946caa765a71e346dec5914c28074723",
                "md5": "1cd8f2e841c8e771cda319183d316003",
                "sha256": "235a14f65fc453e6ffe1f4287d7eda832b6870f925adf9bf72a402b0417d2711"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1cd8f2e841c8e771cda319183d316003",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1815625,
            "upload_time": "2024-05-06T12:47:21",
            "upload_time_iso_8601": "2024-05-06T12:47:21.951467Z",
            "url": "https://files.pythonhosted.org/packages/cb/a0/06b383e14312ae515a01aaeb5f4c946caa765a71e346dec5914c28074723/marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9890edb7bd7fe38cfae3a010a713c2aeb2c4ee270030cd8adf4236f7b9796e92",
                "md5": "82a5f6e6a27a7530cd4226840f75e6ed",
                "sha256": "a707aa9d0ad8fb2fcc074129652903801e5295e53c94d46fb66f46fe38ad8b19"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "82a5f6e6a27a7530cd4226840f75e6ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1849489,
            "upload_time": "2024-05-06T12:47:24",
            "upload_time_iso_8601": "2024-05-06T12:47:24.220397Z",
            "url": "https://files.pythonhosted.org/packages/98/90/edb7bd7fe38cfae3a010a713c2aeb2c4ee270030cd8adf4236f7b9796e92/marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "634038860aab8e345afc42a8d44fbca9f37b3c1df0222bbce667dfcd815209eb",
                "md5": "695a3ca81ff7072e59f142dac8e249e7",
                "sha256": "3fc5ba277a586a3fd97c56076d9bd84339ef8cef08f28527b2384d72f28df853"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "695a3ca81ff7072e59f142dac8e249e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1859957,
            "upload_time": "2024-05-06T12:47:26",
            "upload_time_iso_8601": "2024-05-06T12:47:26.159894Z",
            "url": "https://files.pythonhosted.org/packages/63/40/38860aab8e345afc42a8d44fbca9f37b3c1df0222bbce667dfcd815209eb/marisa_trie-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50b8764dc861deed68e79eea7980e2aea557f8a4ad1b14c5849ef51e4cfab53b",
                "md5": "cb2629db8acf2b2ca086bb8f83f243b2",
                "sha256": "6c5519ff75e6001a62404b087774b517d669122b9b8b8ecf622f21e6d990700a"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "cb2629db8acf2b2ca086bb8f83f243b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 129888,
            "upload_time": "2024-05-06T12:47:27",
            "upload_time_iso_8601": "2024-05-06T12:47:27.745443Z",
            "url": "https://files.pythonhosted.org/packages/50/b8/764dc861deed68e79eea7980e2aea557f8a4ad1b14c5849ef51e4cfab53b/marisa_trie-1.1.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e46b2750bb8fff69bce1cfbb6da779b09e59d0cc0d67eed884b0d56e6f1433",
                "md5": "9d2fc0ef6050642e457b628b350dbbb2",
                "sha256": "f9cc48c12556610d814e4b162123eee43a6048f032d3957554e664feb2f77504"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d2fc0ef6050642e457b628b350dbbb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 151542,
            "upload_time": "2024-05-06T12:47:29",
            "upload_time_iso_8601": "2024-05-06T12:47:29.316044Z",
            "url": "https://files.pythonhosted.org/packages/99/e4/6b2750bb8fff69bce1cfbb6da779b09e59d0cc0d67eed884b0d56e6f1433/marisa_trie-1.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "237a62c43895bb68c9ddefe2ec7bf834175f106d4986f2922c34e90c576bffe2",
                "md5": "305f00ed410a21250a7b905b7314552c",
                "sha256": "73d7ae84293ea6986c168b0cf0d29cd3abf16cfef7375c33d423816ca0eebe48"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "305f00ed410a21250a7b905b7314552c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 363000,
            "upload_time": "2024-05-06T12:47:30",
            "upload_time_iso_8601": "2024-05-06T12:47:30.614479Z",
            "url": "https://files.pythonhosted.org/packages/23/7a/62c43895bb68c9ddefe2ec7bf834175f106d4986f2922c34e90c576bffe2/marisa_trie-1.1.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db89748d6ff000e9d0d710fdf0be5d8276d5a015a4ae8bf51ce0a837b988d798",
                "md5": "f1a46e6e0ff8cc9d62667e73a3c29a1a",
                "sha256": "5f410c0c28ec0d411d75f56327de35df15656bdc308648312c983a15ee84023b"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1a46e6e0ff8cc9d62667e73a3c29a1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 192509,
            "upload_time": "2024-05-06T12:47:31",
            "upload_time_iso_8601": "2024-05-06T12:47:31.757922Z",
            "url": "https://files.pythonhosted.org/packages/db/89/748d6ff000e9d0d710fdf0be5d8276d5a015a4ae8bf51ce0a837b988d798/marisa_trie-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7494c0108ec12e251370844ed5bd9b775589a32e016a4a408996a0cbd34696bc",
                "md5": "88bff1296e860efa02a9b01b40e83f97",
                "sha256": "b406bab536dde70b36a8e3e60d0b2f224b280281988d6b0a0c24e47bd71b2c18"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "88bff1296e860efa02a9b01b40e83f97",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 175303,
            "upload_time": "2024-05-06T12:47:33",
            "upload_time_iso_8601": "2024-05-06T12:47:33.727508Z",
            "url": "https://files.pythonhosted.org/packages/74/94/c0108ec12e251370844ed5bd9b775589a32e016a4a408996a0cbd34696bc/marisa_trie-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90e00bba973782a01615d58aee18d9d59e87fe438f8ea1240abe5899b66e3e1a",
                "md5": "d8f07a204f5edc2c06d24cc0577ad577",
                "sha256": "27567a8e8950ced08aa3c74da2ceeff1f433114064df15e9ed1ec981f30970af"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d8f07a204f5edc2c06d24cc0577ad577",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1318181,
            "upload_time": "2024-05-06T12:47:34",
            "upload_time_iso_8601": "2024-05-06T12:47:34.953872Z",
            "url": "https://files.pythonhosted.org/packages/90/e0/0bba973782a01615d58aee18d9d59e87fe438f8ea1240abe5899b66e3e1a/marisa_trie-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb40cf39f0126084e6423ba6fb9c3486f6fe74d30b1dc8e9229b345ab991555e",
                "md5": "0bb71977b679a5179f771442784438f5",
                "sha256": "02578f4c709232caeb3bf404bfd6b1c49936db8899790dfe5cd21e1a72df18bb"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bb71977b679a5179f771442784438f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1348672,
            "upload_time": "2024-05-06T12:47:36",
            "upload_time_iso_8601": "2024-05-06T12:47:36.460437Z",
            "url": "https://files.pythonhosted.org/packages/eb/40/cf39f0126084e6423ba6fb9c3486f6fe74d30b1dc8e9229b345ab991555e/marisa_trie-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51e736645b858b4607bd324dd9bd44201f83c6945db593865f893de5a0f62f90",
                "md5": "dc0d44328ce588fd7170d7b2fa028978",
                "sha256": "a3edbb4373f20a5d62e33d8aad9d7f7ad40c2ccf8e41d0e2534f28c9a73d5613"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dc0d44328ce588fd7170d7b2fa028978",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1304946,
            "upload_time": "2024-05-06T12:47:38",
            "upload_time_iso_8601": "2024-05-06T12:47:38.674571Z",
            "url": "https://files.pythonhosted.org/packages/51/e7/36645b858b4607bd324dd9bd44201f83c6945db593865f893de5a0f62f90/marisa_trie-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c19acd347d3730579881aa31763fee66c4f1baf0be40f24604b3e8b86fee536f",
                "md5": "2fc1813ad76b0b5584934056c358da8c",
                "sha256": "86184796d384183da5e0068e6fb96b060fb437efc60ba264b125350e8c7f498c"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2fc1813ad76b0b5584934056c358da8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1905643,
            "upload_time": "2024-05-06T12:47:40",
            "upload_time_iso_8601": "2024-05-06T12:47:40.216070Z",
            "url": "https://files.pythonhosted.org/packages/c1/9a/cd347d3730579881aa31763fee66c4f1baf0be40f24604b3e8b86fee536f/marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90202deb872cae369682bf979b6a80b7ccec7b997afe641f28f1360987c18355",
                "md5": "837a744c3bcca252af0e7fe81b7747c1",
                "sha256": "9992a5f0c90dfc21664d218cf016acc6d9ebeb2f97c57bb4aa4d063dcb2253b8"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "837a744c3bcca252af0e7fe81b7747c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1927476,
            "upload_time": "2024-05-06T12:47:42",
            "upload_time_iso_8601": "2024-05-06T12:47:42.299386Z",
            "url": "https://files.pythonhosted.org/packages/90/20/2deb872cae369682bf979b6a80b7ccec7b997afe641f28f1360987c18355/marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f8c55d5eb79f13923c2316b3a9692b78fbb8a9f4f24c884bfcd9cf35f44ffad",
                "md5": "8e8cd075d7d0b5f5c6d1ef5e1952a9bf",
                "sha256": "dad3167eb1c8259afb183c3dddee070bc39c68857490ed61c5c90186ec380ab0"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e8cd075d7d0b5f5c6d1ef5e1952a9bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1948800,
            "upload_time": "2024-05-06T12:47:44",
            "upload_time_iso_8601": "2024-05-06T12:47:44.242742Z",
            "url": "https://files.pythonhosted.org/packages/9f/8c/55d5eb79f13923c2316b3a9692b78fbb8a9f4f24c884bfcd9cf35f44ffad/marisa_trie-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7e676c0ead58a9fc295cb99ef5d4e057463f6de8f043ec9de4cb659a5b317dc",
                "md5": "d4df09b78a8e444b8796a408cdbccba1",
                "sha256": "c0a0ae5d8b6c39f53f3711b8bcdda0fe559f52c1789438b8399ea8a81b399dff"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d4df09b78a8e444b8796a408cdbccba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 130666,
            "upload_time": "2024-05-06T12:47:45",
            "upload_time_iso_8601": "2024-05-06T12:47:45.724080Z",
            "url": "https://files.pythonhosted.org/packages/a7/e6/76c0ead58a9fc295cb99ef5d4e057463f6de8f043ec9de4cb659a5b317dc/marisa_trie-1.1.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b400a8ad83fa9e1837e1f8a4dec6da8288e3f2d1ffd645904219f26100f86a7",
                "md5": "5af29a1e946395b208f7f93c0d8c8138",
                "sha256": "a127e3eebfb638799cf35a8504174462cf45395825f1ae9d45a5c434490b1bcd"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5af29a1e946395b208f7f93c0d8c8138",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 152975,
            "upload_time": "2024-05-06T12:47:46",
            "upload_time_iso_8601": "2024-05-06T12:47:46.898347Z",
            "url": "https://files.pythonhosted.org/packages/6b/40/0a8ad83fa9e1837e1f8a4dec6da8288e3f2d1ffd645904219f26100f86a7/marisa_trie-1.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45978aef4f5236c3fa9d923e62e8d0b3a571e091c5706d7b88ce7313dbacc612",
                "md5": "7d4d3205415cb0bed5f3df6442576652",
                "sha256": "76d7fd725dd7d7621f4202306ddb3f7a90ff3d1c511de9ea2c7ffa540169a7ca"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7d4d3205415cb0bed5f3df6442576652",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 363752,
            "upload_time": "2024-05-06T12:47:48",
            "upload_time_iso_8601": "2024-05-06T12:47:48.448716Z",
            "url": "https://files.pythonhosted.org/packages/45/97/8aef4f5236c3fa9d923e62e8d0b3a571e091c5706d7b88ce7313dbacc612/marisa_trie-1.1.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b5849c6f7dfbebfb4bf99c1e3edbaf273307f10589dbe22710b3fef50ce013f",
                "md5": "dc8613d71f09cb29f687965ec1e7e5bf",
                "sha256": "4241322c9022ad0f01e6049994c4eb95f35d8f64d2d7ab55f653d9e8bf51ba0f"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc8613d71f09cb29f687965ec1e7e5bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 193081,
            "upload_time": "2024-05-06T12:47:49",
            "upload_time_iso_8601": "2024-05-06T12:47:49.965780Z",
            "url": "https://files.pythonhosted.org/packages/9b/58/49c6f7dfbebfb4bf99c1e3edbaf273307f10589dbe22710b3fef50ce013f/marisa_trie-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dbd5f51ecd76c30c4b3c776c567285faadb6ffbac7f1bf51dcaee3855f63505",
                "md5": "abd8ad993bf29ca869b83fb6a8ca0f73",
                "sha256": "8780b5a43a0cc861cafd78b9b2a9849648bb86d3cabe5e95d80350986ad7e801"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "abd8ad993bf29ca869b83fb6a8ca0f73",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 175318,
            "upload_time": "2024-05-06T12:47:51",
            "upload_time_iso_8601": "2024-05-06T12:47:51.377598Z",
            "url": "https://files.pythonhosted.org/packages/0d/bd/5f51ecd76c30c4b3c776c567285faadb6ffbac7f1bf51dcaee3855f63505/marisa_trie-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "902905ea58311a547d2541d0e6c9768573cac6de6d5fe6c96de7fc6537904c14",
                "md5": "5d9c2dd7fd0452f1103dde0c551b7424",
                "sha256": "4261285399b27c36a7ff0eb13e4eebaab8dd814a9512b3cd1191552c0af799f8"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d9c2dd7fd0452f1103dde0c551b7424",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1308658,
            "upload_time": "2024-05-06T12:47:52",
            "upload_time_iso_8601": "2024-05-06T12:47:52.672096Z",
            "url": "https://files.pythonhosted.org/packages/90/29/05ea58311a547d2541d0e6c9768573cac6de6d5fe6c96de7fc6537904c14/marisa_trie-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15ba5bc79efbebe023d1a1862d6901a7741bbb2b7b817896d3217b40d1cec73e",
                "md5": "207e9876d6ce9daa0deb8f975e982ea2",
                "sha256": "f451948bfbdc9627318e3210683f7b8d4533d3174d7706ee94b6008c39e80753"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "207e9876d6ce9daa0deb8f975e982ea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1335913,
            "upload_time": "2024-05-06T12:47:54",
            "upload_time_iso_8601": "2024-05-06T12:47:54.224140Z",
            "url": "https://files.pythonhosted.org/packages/15/ba/5bc79efbebe023d1a1862d6901a7741bbb2b7b817896d3217b40d1cec73e/marisa_trie-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7fa2c447c9fde04c3b7570ed52bf51762a7563a141a7cedb1cb486f2eb7b161",
                "md5": "efeb0852422bf988a9eb42bfa6db09dd",
                "sha256": "53d4ef171c77d4f0fd6278a0f1dab58562faa12cac3c5c9cc4cac4ba7e378f17"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "efeb0852422bf988a9eb42bfa6db09dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1292931,
            "upload_time": "2024-05-06T12:47:55",
            "upload_time_iso_8601": "2024-05-06T12:47:55.731464Z",
            "url": "https://files.pythonhosted.org/packages/b7/fa/2c447c9fde04c3b7570ed52bf51762a7563a141a7cedb1cb486f2eb7b161/marisa_trie-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80302a25381021adabe4d692a6da2ca56646f16c3cb8859b1618778c0b63b036",
                "md5": "f17bc1fdb34859e071adbdd6b6064ef6",
                "sha256": "aacb972faffbc208ed7f52ed50dd6710f38175d3673861405e0e82fa12d57269"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f17bc1fdb34859e071adbdd6b6064ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1872013,
            "upload_time": "2024-05-06T12:47:57",
            "upload_time_iso_8601": "2024-05-06T12:47:57.264718Z",
            "url": "https://files.pythonhosted.org/packages/80/30/2a25381021adabe4d692a6da2ca56646f16c3cb8859b1618778c0b63b036/marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "981c61ef1ba226f124e8038b875dd632c1f59a6a412773a3e2ebc8f289eeafe5",
                "md5": "645e28a502c87170ce0b54b73c5274b0",
                "sha256": "e5603cb20eeded143c5ff035978591b71bc0bc2c6cd9c2e6dfdaacdaab76907c"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "645e28a502c87170ce0b54b73c5274b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1893505,
            "upload_time": "2024-05-06T12:47:59",
            "upload_time_iso_8601": "2024-05-06T12:47:59.434981Z",
            "url": "https://files.pythonhosted.org/packages/98/1c/61ef1ba226f124e8038b875dd632c1f59a6a412773a3e2ebc8f289eeafe5/marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28dd8f72797357b0602b7c71d4b562bf3f318859ae813ed5efb95e7cddbf8b63",
                "md5": "df58442b952d66f36d71ecd79db3efc3",
                "sha256": "405ece63330b113040ed5b2371ff6e026d53c9c706ca9c58baf57f322e192895"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df58442b952d66f36d71ecd79db3efc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1913843,
            "upload_time": "2024-05-06T12:48:00",
            "upload_time_iso_8601": "2024-05-06T12:48:00.983905Z",
            "url": "https://files.pythonhosted.org/packages/28/dd/8f72797357b0602b7c71d4b562bf3f318859ae813ed5efb95e7cddbf8b63/marisa_trie-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e2892b94727fe97c5ece2abf88ab6404a666e36815d1020f76f5e0cf31896a0",
                "md5": "8e8509264b9223251c5fe2918f9d20bc",
                "sha256": "b7a853063785e382d86eadea57363a0e2f04520d6ef948be88181df9e9ee5c0d"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "8e8509264b9223251c5fe2918f9d20bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 131146,
            "upload_time": "2024-05-06T12:48:03",
            "upload_time_iso_8601": "2024-05-06T12:48:03.255171Z",
            "url": "https://files.pythonhosted.org/packages/1e/28/92b94727fe97c5ece2abf88ab6404a666e36815d1020f76f5e0cf31896a0/marisa_trie-1.1.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c8f5d564bc5d847b45c9276152b15e1731797a8139782096c630dfa0710338c",
                "md5": "b6c6c3febf3623d4f356b3d3cbbdb8fe",
                "sha256": "b44bd2bfc4bf080421a9ebac5f12434b36494effaa0ca8593a3df4e77cc6620e"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b6c6c3febf3623d4f356b3d3cbbdb8fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 152794,
            "upload_time": "2024-05-06T12:48:04",
            "upload_time_iso_8601": "2024-05-06T12:48:04.614593Z",
            "url": "https://files.pythonhosted.org/packages/0c/8f/5d564bc5d847b45c9276152b15e1731797a8139782096c630dfa0710338c/marisa_trie-1.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "377b7baa5a9f4bb9aee34820002496e2f8ec741f57aa3f0ebbdbba2248acf346",
                "md5": "40b3220ba6e5192abbb0b20dc2f6a4ff",
                "sha256": "5dba7a60d6d340fd498f2a967c0a4c3aa7c4cab6ca7655cde0289cdc7bf3f747"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40b3220ba6e5192abbb0b20dc2f6a4ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 161434,
            "upload_time": "2024-05-06T12:48:05",
            "upload_time_iso_8601": "2024-05-06T12:48:05.944082Z",
            "url": "https://files.pythonhosted.org/packages/37/7b/7baa5a9f4bb9aee34820002496e2f8ec741f57aa3f0ebbdbba2248acf346/marisa_trie-1.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3da6245211ef7b6e18f49d66cd56da5c5385e5c05523dce022f8d190481f02cb",
                "md5": "821fadd7060dcc62073a113413090944",
                "sha256": "ad624e95f46d8fc6f82af2d372ad55ef218babc323aa14338df843d907d040cc"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "821fadd7060dcc62073a113413090944",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 149568,
            "upload_time": "2024-05-06T12:48:07",
            "upload_time_iso_8601": "2024-05-06T12:48:07.384136Z",
            "url": "https://files.pythonhosted.org/packages/3d/a6/245211ef7b6e18f49d66cd56da5c5385e5c05523dce022f8d190481f02cb/marisa_trie-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "747e4f1d210779fd8cf0355295f4d6ec0b51fcf651a1f83792124b50560bbffc",
                "md5": "3c662daaa7f3fce2205bd3ac8dd1ec67",
                "sha256": "4ccf3ae61a63dec06f3cfb8521fd9c8e6391761d47a4df0164954690b7cc3fab"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c662daaa7f3fce2205bd3ac8dd1ec67",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 170704,
            "upload_time": "2024-05-06T12:48:08",
            "upload_time_iso_8601": "2024-05-06T12:48:08.755287Z",
            "url": "https://files.pythonhosted.org/packages/74/7e/4f1d210779fd8cf0355295f4d6ec0b51fcf651a1f83792124b50560bbffc/marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a88026458aed3cbcdc71a9a5ed0ebe0516e060831452aa042b21d5c499d38af",
                "md5": "05b67079780e57271f36b31e495dfba6",
                "sha256": "493956e76e2c6276d1e804ee723b23eaba30beca43fc0ddf3a093abc178af3f4"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05b67079780e57271f36b31e495dfba6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 185215,
            "upload_time": "2024-05-06T12:48:10",
            "upload_time_iso_8601": "2024-05-06T12:48:10.050743Z",
            "url": "https://files.pythonhosted.org/packages/0a/88/026458aed3cbcdc71a9a5ed0ebe0516e060831452aa042b21d5c499d38af/marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab4c479d41dd2ba34de18eb485dc8e50574fc38c4678031a7b044ca20c79fdd",
                "md5": "ab61d0ea84451ba49dd00b4aa4dac27c",
                "sha256": "5207026332ed08957a3bc1391eb9c8861a1882e1517887ef423cfd3afc30e947"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ab61d0ea84451ba49dd00b4aa4dac27c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 189245,
            "upload_time": "2024-05-06T12:48:11",
            "upload_time_iso_8601": "2024-05-06T12:48:11.506559Z",
            "url": "https://files.pythonhosted.org/packages/8a/b4/c479d41dd2ba34de18eb485dc8e50574fc38c4678031a7b044ca20c79fdd/marisa_trie-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "836d1b5b070d25b44d656df55032745848735d265abe26cdcb0a3bba324e1f0a",
                "md5": "60647a588d8174a924d33d31486ee190",
                "sha256": "bae9ff4146b84ef0d51e0940e310d034d1e6a6ce1879a03a891c541dce8b26f9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60647a588d8174a924d33d31486ee190",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 142135,
            "upload_time": "2024-05-06T12:48:12",
            "upload_time_iso_8601": "2024-05-06T12:48:12.741252Z",
            "url": "https://files.pythonhosted.org/packages/83/6d/1b5b070d25b44d656df55032745848735d265abe26cdcb0a3bba324e1f0a/marisa_trie-1.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "262125fbc645987bb96ef4c59c0baa786beeab7a7aabdf275ea83985ea72ab20",
                "md5": "31de45ccdc22ceeee8ec54a33322a6e1",
                "sha256": "059a7b7cc0c7796c068e6ab07e522791c7addf3697616b2bcb73ed1d42a761aa"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31de45ccdc22ceeee8ec54a33322a6e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 158785,
            "upload_time": "2024-05-06T12:48:14",
            "upload_time_iso_8601": "2024-05-06T12:48:14.301203Z",
            "url": "https://files.pythonhosted.org/packages/26/21/25fbc645987bb96ef4c59c0baa786beeab7a7aabdf275ea83985ea72ab20/marisa_trie-1.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d3e0d631b846eb931d59c073e01b359247b28ebcbd8a688e7a4fa42cbd90b6e",
                "md5": "ee729119eb0cc8699953b414281272c9",
                "sha256": "e69ba62cbb74d2824cd49be9c2f592b306e5107d5005f0bb3b4d62c9b6ae7246"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee729119eb0cc8699953b414281272c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 169207,
            "upload_time": "2024-05-06T12:48:16",
            "upload_time_iso_8601": "2024-05-06T12:48:16.135509Z",
            "url": "https://files.pythonhosted.org/packages/2d/3e/0d631b846eb931d59c073e01b359247b28ebcbd8a688e7a4fa42cbd90b6e/marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bc3452dc4bf07382a2513a4f3a50b6334e3cb942beab6fd00237d994dce06f8",
                "md5": "c40c3f1e58f1a9221e61a26af90c8e68",
                "sha256": "26232fe4442f89643b4206ded1be486a12fcf731d55c5e42ff86e2f2ba5e949a"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c40c3f1e58f1a9221e61a26af90c8e68",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 183988,
            "upload_time": "2024-05-06T12:48:17",
            "upload_time_iso_8601": "2024-05-06T12:48:17.416578Z",
            "url": "https://files.pythonhosted.org/packages/0b/c3/452dc4bf07382a2513a4f3a50b6334e3cb942beab6fd00237d994dce06f8/marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d186695c328703ec387e2aa14f5529923f61daaa76db6bde899b99ddf1213911",
                "md5": "2a3fc391ced1301ae72931a742ea78ae",
                "sha256": "3fa3bd1d32faf6afdb877a1e1f65e33873d88d158a16f9e00830901519d428ca"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2a3fc391ced1301ae72931a742ea78ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 188502,
            "upload_time": "2024-05-06T12:48:19",
            "upload_time_iso_8601": "2024-05-06T12:48:19.727254Z",
            "url": "https://files.pythonhosted.org/packages/d1/86/695c328703ec387e2aa14f5529923f61daaa76db6bde899b99ddf1213911/marisa_trie-1.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43587fb9b24b4b6150c4c515e235beffa0475d049d6d82b7e10c108e552daf9c",
                "md5": "f19ace70bcbbcf5b6228dff1aba52190",
                "sha256": "a7e48ba7748c2090b58f911ea995b94ff590781e81d0a2e0fc8b583af4d26710"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f19ace70bcbbcf5b6228dff1aba52190",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 139404,
            "upload_time": "2024-05-06T12:48:21",
            "upload_time_iso_8601": "2024-05-06T12:48:21.668365Z",
            "url": "https://files.pythonhosted.org/packages/43/58/7fb9b24b4b6150c4c515e235beffa0475d049d6d82b7e10c108e552daf9c/marisa_trie-1.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e09a6d485db131d2ed6d578669c63dd21af0ffe9ba240b4c9d31754459a327ba",
                "md5": "bc0137725f37d54f0f91ac15cb90c858",
                "sha256": "52f0d96d738831c81127377920e86fc8cb14638df1ea8f37ea392b545f9f984c"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc0137725f37d54f0f91ac15cb90c858",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 158799,
            "upload_time": "2024-05-06T12:48:23",
            "upload_time_iso_8601": "2024-05-06T12:48:23.007460Z",
            "url": "https://files.pythonhosted.org/packages/e0/9a/6d485db131d2ed6d578669c63dd21af0ffe9ba240b4c9d31754459a327ba/marisa_trie-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0c3bf9cf898351072b8d34769a8636224be94006b79a62dbba04644a6ca64c0",
                "md5": "58867f36f9560d8885c2cdf4dedfa8be",
                "sha256": "511e5d23070c166427de24742771a6040eb5c787c51145dddcc7af4106ec8b08"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "58867f36f9560d8885c2cdf4dedfa8be",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 146703,
            "upload_time": "2024-05-06T12:48:24",
            "upload_time_iso_8601": "2024-05-06T12:48:24.384024Z",
            "url": "https://files.pythonhosted.org/packages/f0/c3/bf9cf898351072b8d34769a8636224be94006b79a62dbba04644a6ca64c0/marisa_trie-1.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af5d9a1add8bc2664251d8f7134aec9b544f10201875faa0d864b030d958aebb",
                "md5": "1d0529c219925aa80768b543f6213da0",
                "sha256": "ec39c09c0bf850f01b15bbd18214a89b9730001fd1483de873f6b7dc73fb2316"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1d0529c219925aa80768b543f6213da0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 168032,
            "upload_time": "2024-05-06T12:48:25",
            "upload_time_iso_8601": "2024-05-06T12:48:25.800148Z",
            "url": "https://files.pythonhosted.org/packages/af/5d/9a1add8bc2664251d8f7134aec9b544f10201875faa0d864b030d958aebb/marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8988d1bada3ce8b0565749eb43ed9b66dcb53799db4d968311cf9d516aa708a1",
                "md5": "736e104f997b779153a8ebaaf26f983c",
                "sha256": "cfe6454eb6d2a9b2bb5583b433048670f85f264e613d1f885251ce68070adad8"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "736e104f997b779153a8ebaaf26f983c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 182177,
            "upload_time": "2024-05-06T12:48:27",
            "upload_time_iso_8601": "2024-05-06T12:48:27.129527Z",
            "url": "https://files.pythonhosted.org/packages/89/88/d1bada3ce8b0565749eb43ed9b66dcb53799db4d968311cf9d516aa708a1/marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6748f10afa72c3b8caff0faf1c47968181ac26eca753a9a481559d576e39a4b3",
                "md5": "a755c7b78f913f1a52150d3ead69506a",
                "sha256": "e5661d8974b4128a847deb282dbe040e5eed5b91c56ed9d207623ea4db24abc5"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a755c7b78f913f1a52150d3ead69506a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 186475,
            "upload_time": "2024-05-06T12:48:28",
            "upload_time_iso_8601": "2024-05-06T12:48:28.412833Z",
            "url": "https://files.pythonhosted.org/packages/67/48/f10afa72c3b8caff0faf1c47968181ac26eca753a9a481559d576e39a4b3/marisa_trie-1.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dd611365ca0e639de7940ab79ff377660e1579a0a1f4c725836a02cfc29a7e9",
                "md5": "ee94d8c32b4b6ea18e3a79730a2b4ddb",
                "sha256": "08aed31f8164c7ec8ba6a449e6a18f4052bafe9dcaa2dcfd0e25fee9ddd94e36"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee94d8c32b4b6ea18e3a79730a2b4ddb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 139455,
            "upload_time": "2024-05-06T12:48:29",
            "upload_time_iso_8601": "2024-05-06T12:48:29.606683Z",
            "url": "https://files.pythonhosted.org/packages/4d/d6/11365ca0e639de7940ab79ff377660e1579a0a1f4c725836a02cfc29a7e9/marisa_trie-1.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "728004d3d371ffd6a1ff3dfe2b810ac6a1e4d4d79984a0b4602e072ac2301471",
                "md5": "757f31ce111915f40c71fee9ac7017bc",
                "sha256": "18a1440b01d87566a5c2bddd6a575180a3526ec9da5f7aa55769213153737d19"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "757f31ce111915f40c71fee9ac7017bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 161123,
            "upload_time": "2024-05-06T12:48:30",
            "upload_time_iso_8601": "2024-05-06T12:48:30.939462Z",
            "url": "https://files.pythonhosted.org/packages/72/80/04d3d371ffd6a1ff3dfe2b810ac6a1e4d4d79984a0b4602e072ac2301471/marisa_trie-1.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "573042560cafe796f200ee1e9e4551069de64e08c9c27cf34366565266aac107",
                "md5": "eb458d077a06003d4f06ba0fc913bdae",
                "sha256": "7cc903512d5d7cf3a30624dde8adc5ba4312732c931746f18641e0a5762646b3"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eb458d077a06003d4f06ba0fc913bdae",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 149289,
            "upload_time": "2024-05-06T12:48:32",
            "upload_time_iso_8601": "2024-05-06T12:48:32.920015Z",
            "url": "https://files.pythonhosted.org/packages/57/30/42560cafe796f200ee1e9e4551069de64e08c9c27cf34366565266aac107/marisa_trie-1.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ced8ab75065f46db4a225db44e99a7ce86e840f0222a37de598d4739300214a",
                "md5": "da342cdec7cc2d40d180a052bef33de9",
                "sha256": "5c7785c04373d8d2844f6636d73c08384a587c098093a04166177fa45494d912"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da342cdec7cc2d40d180a052bef33de9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 170420,
            "upload_time": "2024-05-06T12:48:34",
            "upload_time_iso_8601": "2024-05-06T12:48:34.281794Z",
            "url": "https://files.pythonhosted.org/packages/2c/ed/8ab75065f46db4a225db44e99a7ce86e840f0222a37de598d4739300214a/marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ccd9dc25455a0b791e37e56600d79d959bb9acb9f4e59c1a1c464e56f453a0",
                "md5": "0523e1a7643e8394a4f0f5602a07bf90",
                "sha256": "0196e3a9ed3bfce20e32ff7d9ff1c929d0ceb8c380ae0f227e11ab819e70dc2c"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0523e1a7643e8394a4f0f5602a07bf90",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 184876,
            "upload_time": "2024-05-06T12:48:35",
            "upload_time_iso_8601": "2024-05-06T12:48:35.835710Z",
            "url": "https://files.pythonhosted.org/packages/44/cc/d9dc25455a0b791e37e56600d79d959bb9acb9f4e59c1a1c464e56f453a0/marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58a533263111dfdbbf1ec884a8c76ad063b28ed31a097f5378b151b0dab68329",
                "md5": "e812e337c31d6db5471e758020712bdf",
                "sha256": "2601b320268a87a4a7accaf7c2e8fc99c568e13316903d2010eb09e0ff16b6a9"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e812e337c31d6db5471e758020712bdf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 188854,
            "upload_time": "2024-05-06T12:48:37",
            "upload_time_iso_8601": "2024-05-06T12:48:37.167900Z",
            "url": "https://files.pythonhosted.org/packages/58/a5/33263111dfdbbf1ec884a8c76ad063b28ed31a097f5378b151b0dab68329/marisa_trie-1.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6cb42e468d89f920db56d75794497ffc9a1483e9b6c65b08e407a6d7d780187",
                "md5": "9a314b239856c5aabe77a5e1cff6ff1b",
                "sha256": "cd285b97204046e5c5018fa03752d243c6423df023963b52de39d4e90bb3024a"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a314b239856c5aabe77a5e1cff6ff1b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 141836,
            "upload_time": "2024-05-06T12:48:39",
            "upload_time_iso_8601": "2024-05-06T12:48:39.101397Z",
            "url": "https://files.pythonhosted.org/packages/a6/cb/42e468d89f920db56d75794497ffc9a1483e9b6c65b08e407a6d7d780187/marisa_trie-1.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c95d2cb545ed5896a8cf9a1994dbfb794d20371d774193f1cb0bfa395da73e10",
                "md5": "f9ba2f0a2e8a9d108d00bd3221e0548d",
                "sha256": "363f1be2314b1f9e26b5a3de45b59fd9a0a3289bf157be61bbed770643a46f1a"
            },
            "downloads": -1,
            "filename": "marisa_trie-1.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f9ba2f0a2e8a9d108d00bd3221e0548d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 410747,
            "upload_time": "2024-05-06T12:48:40",
            "upload_time_iso_8601": "2024-05-06T12:48:40.437085Z",
            "url": "https://files.pythonhosted.org/packages/c9/5d/2cb545ed5896a8cf9a1994dbfb794d20371d774193f1cb0bfa395da73e10/marisa_trie-1.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-06 12:48:40",
    "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: 0.31485s