{ "info": { "author": "Mikhail Korobov", "author_email": "kmike84@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Cython", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic" ], "description": "marisa-trie |pyversions| |travis| |appveyor|\n============================================\n\n.. |pyversions| image:: https://img.shields.io/pypi/pyversions/marisa-trie.svg\n :target: https://pypi.python.org/pypi/marisa-trie\n\n.. |travis| image:: https://travis-ci.org/pytries/marisa-trie.svg\n :target: https://travis-ci.org/pytries/marisa-trie\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/p887ad4jbdg6u7yo?svg=true\n :target: https://ci.appveyor.com/project/superbobry/marisa-trie-75wx1\n\nStatic memory-efficient Trie-like structures for Python (2.7 and 3.4+)\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 pip install marisa-trie\n\nUsage\n=====\n\nSee :ref:`Tutorial ` and :ref:`API ` for details.\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\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\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 `_)\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", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kmike/marisa-trie", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "marisa-trie", "package_url": "https://pypi.org/project/marisa-trie/", "platform": "", "project_url": "https://pypi.org/project/marisa-trie/", "project_urls": { "Homepage": "https://github.com/kmike/marisa-trie" }, "release_url": "https://pypi.org/project/marisa-trie/0.7.5/", "requires_dist": null, "requires_python": "", "summary": "Static memory-efficient and fast Trie-like structures for Python.", "version": "0.7.5" }, "last_serial": 3753726, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "5ba8c21f0ae60e321b728a604fd3f302", "sha256": "c8125d63e37942d7cf714d68e37e43ba4bb0137bf42841b838f7de04bd17d278" }, "downloads": -1, "filename": "marisa-trie-0.1.tar.gz", "has_sig": false, "md5_digest": "5ba8c21f0ae60e321b728a604fd3f302", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105493, "upload_time": "2012-08-17T22:23:41", "url": "https://files.pythonhosted.org/packages/81/f6/051ef465d728ab2997ccc0031acb286b21befb1c5ff126b04399d357cbfe/marisa-trie-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "1dc4df2ffd934048fc82209dd27079c6", "sha256": "6f570fc4250d47ccf80d8d18cb4d11fa6d3d8f07bab4ffcd9d254561a8cf18de" }, "downloads": -1, "filename": "marisa-trie-0.2.tar.gz", "has_sig": false, "md5_digest": "1dc4df2ffd934048fc82209dd27079c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125350, "upload_time": "2012-08-19T23:14:25", "url": "https://files.pythonhosted.org/packages/e9/db/b7d57538207783c127ea1c992deaf1e3ca7d35f54401b2c4336ccd186dbe/marisa-trie-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "548aa6d96d347a0483859f2adc2c453d", "sha256": "cf786681dbe1caf275c75cff0956f162892aba94a79af6c62c40d40f77596a61" }, "downloads": -1, "filename": "marisa-trie-0.3.tar.gz", "has_sig": false, "md5_digest": "548aa6d96d347a0483859f2adc2c453d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162040, "upload_time": "2012-08-23T00:00:33", "url": "https://files.pythonhosted.org/packages/3c/7f/6a4491c3c636adf4545ed4d200a567519eaea60a2340a900fde5b565d87f/marisa-trie-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "c248ed234efafd6291e4ca7d5df78583", "sha256": "ba0c205a595ffdad1e18fd6ee07f70ccd0cb4e2f06109ca6029e94c0378f26d1" }, "downloads": -1, "filename": "marisa-trie-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c248ed234efafd6291e4ca7d5df78583", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163185, "upload_time": "2012-08-23T14:27:42", "url": "https://files.pythonhosted.org/packages/95/02/4233b3c00ab3c42893a02acb2086239e306e1054ece2b9971ec010323c14/marisa-trie-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "fbc3b2c7541672c30a8edb41577faf35", "sha256": "b9905e7d7ad5c611ad7b12ab90e87647313a3f4d294c7b2c27aac9b71b8e7020" }, "downloads": -1, "filename": "marisa-trie-0.3.2.tar.gz", "has_sig": false, "md5_digest": "fbc3b2c7541672c30a8edb41577faf35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165191, "upload_time": "2012-08-26T07:53:01", "url": "https://files.pythonhosted.org/packages/56/5c/5b2b74a3921e05199eb4e0c1279678314c824eb6c8d90334e0525cf869af/marisa-trie-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "694f3dc5e67abcf2ff2b37040159fc89", "sha256": "b3ab0e0ad93813f3a4e0f7c59568ee6f78db585b63913a857b3ae60d0e6ac385" }, "downloads": -1, "filename": "marisa-trie-0.3.3.tar.gz", "has_sig": false, "md5_digest": "694f3dc5e67abcf2ff2b37040159fc89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166681, "upload_time": "2012-08-27T14:23:43", "url": "https://files.pythonhosted.org/packages/f7/af/27101ed5d27fd5d2de8c8b36f72ddd8435915e5a0b4125c5fcf3d883408f/marisa-trie-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "eeeae664f82f98e47399154fb4c90d48", "sha256": "5ab975cd71fe60ec976f806c4c1e5805b706696390dc874444594808020e6b89" }, "downloads": -1, "filename": "marisa-trie-0.3.4.tar.gz", "has_sig": false, "md5_digest": "eeeae664f82f98e47399154fb4c90d48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167146, "upload_time": "2012-08-29T10:49:26", "url": "https://files.pythonhosted.org/packages/00/ee/df0b9081bdd88a0906195940e37593916c8b18606780f6d08066dbad4232/marisa-trie-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "439a99b9737ee02d4b9d17c4747c3f04", "sha256": "fc23a421d451f219a293bda9a2fae14059031dfac286c8f247cddf240c2c22f1" }, "downloads": -1, "filename": "marisa-trie-0.3.5.tar.gz", "has_sig": false, "md5_digest": "439a99b9737ee02d4b9d17c4747c3f04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167875, "upload_time": "2012-08-30T18:25:15", "url": "https://files.pythonhosted.org/packages/18/68/c40b1d9431176663cc1b04578940fc329a26703f2119a4ab79857593b817/marisa-trie-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "6b74aa44caedce00c493dd8040e6c024", "sha256": "77e7577a60f2f5ca4e2d29fe247e17b123c87ce3b5574daa6f775cfd7cd19047" }, "downloads": -1, "filename": "marisa-trie-0.3.6.tar.gz", "has_sig": false, "md5_digest": "6b74aa44caedce00c493dd8040e6c024", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167102, "upload_time": "2012-09-05T13:40:10", "url": "https://files.pythonhosted.org/packages/e4/5c/05ca9042732fc7735af52dc03f3e33f1e0fece208b2987b748b215212673/marisa-trie-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "a3a6c7a24ec3c4a98cd88aa605ff627e", "sha256": "f3d9dc8b0341ea409339079d00247f35b174211fde0ef19bf761641ee877078e" }, "downloads": -1, "filename": "marisa-trie-0.3.7.tar.gz", "has_sig": false, "md5_digest": "a3a6c7a24ec3c4a98cd88aa605ff627e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167234, "upload_time": "2012-09-21T15:19:44", "url": "https://files.pythonhosted.org/packages/40/66/7d50a61ef168c95f0cdaf1224fc7874de554b0f4203c06cda00132b63bbc/marisa-trie-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "32031f279ece6600589e4a1d7d6686c9", "sha256": "8d30549d168a764af7ced5020653d89a3df39a08462168f8d203513a1c3102d3" }, "downloads": -1, "filename": "marisa-trie-0.3.8.tar.gz", "has_sig": false, "md5_digest": "32031f279ece6600589e4a1d7d6686c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167826, "upload_time": "2013-01-02T21:44:29", "url": "https://files.pythonhosted.org/packages/20/62/25e65b1f46e41719ad2abf10c282ee66615c56f3343bc3b5d7b0418f4ed7/marisa-trie-0.3.8.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "d110728d76deb974ceef91c57bb2d062", "sha256": "1ba3f976dc55e4a133ebda278389f4446cd4ecab4fb4e133ee9ddc63b59f8602" }, "downloads": -1, "filename": "marisa-trie-0.4.tar.gz", "has_sig": false, "md5_digest": "d110728d76deb974ceef91c57bb2d062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171426, "upload_time": "2013-02-27T21:08:53", "url": "https://files.pythonhosted.org/packages/1a/67/ffc061eecb35110ceb09a17176c6b95348f93bda21c51b9ef427122b2357/marisa-trie-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "32d45a1b6b129edf317c5c228e286243", "sha256": "7463f19af2dcbbe91df7909cff5385ed1f8c11c218de15075157e9ffe923f6ac" }, "downloads": -1, "filename": "marisa-trie-0.5.tar.gz", "has_sig": false, "md5_digest": "32d45a1b6b129edf317c5c228e286243", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196754, "upload_time": "2013-05-06T22:15:44", "url": "https://files.pythonhosted.org/packages/57/b2/41e9efe8428e001e0901ce90cea505b83078c6c0a0b4a17ac099fe671845/marisa-trie-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "5e076419a6e27a11e720b3ebf95c5ff8", "sha256": "10e57ef0fdc4b8684e476d802624b4b3d5546d4f6fc6cf8e6d935a9a7f49557b" }, "downloads": -1, "filename": "marisa-trie-0.5.1.tar.gz", "has_sig": false, "md5_digest": "5e076419a6e27a11e720b3ebf95c5ff8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197163, "upload_time": "2013-10-03T11:56:01", "url": "https://files.pythonhosted.org/packages/37/e9/e5e473295643438b797d1ed6e3616162b23a9e510ca58996c3e5cd066b2c/marisa-trie-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "e5729a0bb32a3322a711d31bc398f227", "sha256": "7fa92c8af24508584c5d7bfa74f95b4db980fcca53e91785498aa5c5f83f8ef1" }, "downloads": -1, "filename": "marisa-trie-0.5.2.tar.gz", "has_sig": false, "md5_digest": "e5729a0bb32a3322a711d31bc398f227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198601, "upload_time": "2014-02-08T09:54:13", "url": "https://files.pythonhosted.org/packages/e3/f2/46961557fb72df219a45539e6843b82b577127162c6a03a4d484f5de1c22/marisa-trie-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "7c46086bb2a5e604872a9a0a7e0da866", "sha256": "863d5cad1a2c47582434ff647d46416de59bba9d3c9c60f323a98a780aaa3b7b" }, "downloads": -1, "filename": "marisa-trie-0.5.3.tar.gz", "has_sig": false, "md5_digest": "7c46086bb2a5e604872a9a0a7e0da866", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198619, "upload_time": "2014-02-08T10:19:07", "url": "https://files.pythonhosted.org/packages/92/94/ee14ce423b3863c4f461325480c38eba84abecff829067a56f5a8f515ce9/marisa-trie-0.5.3.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "8afc26d880e1b015d3ed897eefd9137e", "sha256": "ba4f35c95d4393626c25b47a5d0b4216cee0a7cccb67e13e7e809bef3867b9d2" }, "downloads": -1, "filename": "marisa-trie-0.6.tar.gz", "has_sig": false, "md5_digest": "8afc26d880e1b015d3ed897eefd9137e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202171, "upload_time": "2014-02-22T00:32:08", "url": "https://files.pythonhosted.org/packages/1a/dd/64c902bc07da9731031d5613985c183150a71dfb0edf9c335b31414fe861/marisa-trie-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "438fff53ce935d96e71ebc599da76829", "sha256": "59c7bf495b5aec76574dd0b796d96dd3a1de20ac611e9e60f440a0e9cbc8ffcb" }, "downloads": -1, "filename": "marisa-trie-0.7.tar.gz", "has_sig": false, "md5_digest": "438fff53ce935d96e71ebc599da76829", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204324, "upload_time": "2014-12-15T11:49:56", "url": "https://files.pythonhosted.org/packages/3a/74/a465361221691e19dd0bf7a1e02762ed772af382df4efce5e26658c8cf3f/marisa-trie-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "0b5c600dc51a67f798d159f898e8167e", "sha256": "2a6842d6f74c5ccefc8590d0ab48afb57672dd82ee6493948d6259886e83018a" }, "downloads": -1, "filename": "marisa-trie-0.7.1.tar.gz", "has_sig": false, "md5_digest": "0b5c600dc51a67f798d159f898e8167e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199457, "upload_time": "2015-04-21T09:14:09", "url": "https://files.pythonhosted.org/packages/56/ab/a5a633b69153230897eb0a03f36d2775ba53401824a8233c22dd65a20a4e/marisa-trie-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "50c74b395854b5075227f0ee2756918c", "sha256": "abcfc61c907213c51f52c6c457a888978fa891faa36278d15b83f76da1d0326e" }, "downloads": -1, "filename": "marisa_trie-0.7.2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "50c74b395854b5075227f0ee2756918c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 340936, "upload_time": "2016-03-13T12:38:29", "url": "https://files.pythonhosted.org/packages/ac/e6/6a4289ab4cb01a3b3c43b110ad66df07ab18b9eabda78a9e647927eb3438/marisa_trie-0.7.2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "60c95b420915b75b5dc2f6777058834c", "sha256": "279aa40ff7384f6e8adc7c98de8f0edcbf7d1b45c3408ef1fa12e98c3052f3bb" }, "downloads": -1, "filename": "marisa_trie-0.7.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "60c95b420915b75b5dc2f6777058834c", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 344723, "upload_time": "2016-03-13T12:38:36", "url": "https://files.pythonhosted.org/packages/45/7c/407e43fcd485d90777292368e7e02a9b4fd14ce71a0e3866ad49f9cbf0f0/marisa_trie-0.7.2-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8b46fd3e8d0d5e2cce9e3f6a83705284", "sha256": "2f1812e611dcc7f9eda5b63821fa10f7f1f763ddf4d8df67c64303268d5c2dcd" }, "downloads": -1, "filename": "marisa_trie-0.7.2-cp34-cp34m-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8b46fd3e8d0d5e2cce9e3f6a83705284", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 164203, "upload_time": "2015-04-21T09:20:17", "url": "https://files.pythonhosted.org/packages/ed/e3/842fb333f4c77a5768477158413bd5c06841c02b844510d7f85849e81d98/marisa_trie-0.7.2-cp34-cp34m-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3029339bc698c8106d2116a4ced9721c", "sha256": "dcb642a6b7e21a187cbdaddbbc9b37886d8d3745a5a0010188e77eefba58c787" }, "downloads": -1, "filename": "marisa_trie-0.7.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "3029339bc698c8106d2116a4ced9721c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 344417, "upload_time": "2016-03-13T12:38:46", "url": "https://files.pythonhosted.org/packages/b4/dd/175daf51fdadb1662e8af83535ef6eb79b759bfd9e8fce83d557b3bbb75a/marisa_trie-0.7.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7abf55a7f170d1471a2966562e00bf9c", "sha256": "e938283eca64d3a4e1bffa71a1d1e5e9f9b620ee429588a558c597fff143e013" }, "downloads": -1, "filename": "marisa_trie-0.7.2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7abf55a7f170d1471a2966562e00bf9c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 344920, "upload_time": "2016-03-13T12:38:55", "url": "https://files.pythonhosted.org/packages/3c/3d/231ea1dd0caeeba0b30933e0ffbaf0e6f557ee81a054dcb04e7a7a2f2c5a/marisa_trie-0.7.2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c68ce723bc1fc56cff90001f08bb2fd0", "sha256": "4b39f84c511a6e8e3a060b20bc41ff3b5393cb46381336e2156dc9b2290506b3" }, "downloads": -1, "filename": "marisa-trie-0.7.2.tar.gz", "has_sig": false, "md5_digest": "c68ce723bc1fc56cff90001f08bb2fd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199466, "upload_time": "2015-04-21T09:17:45", "url": "https://files.pythonhosted.org/packages/48/a1/22a3ed5423c76f6988573f2951dbce6909b83c79b05de34075819696bd56/marisa-trie-0.7.2.tar.gz" } ], "0.7.3": [], "0.7.4": [ { "comment_text": "", "digests": { "md5": "8d5a36d911f6be10ea062f9b67b108c4", "sha256": "dd1b5464d7ea2eb54758dcde40385d12e75cf74f6a44d27459ccb8c282ebc8c8" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp26-cp26mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d5a36d911f6be10ea062f9b67b108c4", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 821255, "upload_time": "2017-03-27T01:18:57", "url": "https://files.pythonhosted.org/packages/64/58/899be44adfbbc2e701aec9af82fbbc11b4f7ad8330236d8e6049653b6ed7/marisa_trie-0.7.4-cp26-cp26mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "00dbb9440fdb32465141e77dcb7b1d0d", "sha256": "0e94d38468e454718577aa6994af12f66f24099a94c202f2f13c714be0c90d45" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "00dbb9440fdb32465141e77dcb7b1d0d", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 107175, "upload_time": "2017-03-27T00:41:13", "url": "https://files.pythonhosted.org/packages/a6/14/a9735a38d85876c28a2e14862e54931b0cf2b8ad0b2b1be73ff0a8b1d9fb/marisa_trie-0.7.4-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ff0f09aa10f88d0253ad267f88e70076", "sha256": "4cf4ff5bd9a135c3d1f6ab662b8dc6357ff502adc45c031f32e4c44f74268e22" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "ff0f09aa10f88d0253ad267f88e70076", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 129637, "upload_time": "2017-03-27T00:41:14", "url": "https://files.pythonhosted.org/packages/cf/58/526e3957aaee9f3ae039b8daa61d94b955e3743aad049b54094391bb2e6e/marisa_trie-0.7.4-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ba3aa0b25a21324d5ee8f29a86562809", "sha256": "26b7adaaa3bd3b6b8aaa9a9d0cc33f7ce0b0e6b85c1b0d0c591a7fd8f25ba001" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ba3aa0b25a21324d5ee8f29a86562809", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 347453, "upload_time": "2017-03-27T01:19:00", "url": "https://files.pythonhosted.org/packages/8d/2c/30d7504c2e1404a61fb561abe11b2b30eff5ffa004d6852d35894d1f78f2/marisa_trie-0.7.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d6ea90606b9e720aaca20798803c829d", "sha256": "89bd183e0f75357f074658492bb24a4bbac8e1a13fd0f54553017c122eeef134" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6ea90606b9e720aaca20798803c829d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 823060, "upload_time": "2017-03-27T01:19:02", "url": "https://files.pythonhosted.org/packages/27/8c/c8d95695002364b8bb203d786de754be9bde566e5c00efa00941874e508b/marisa_trie-0.7.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "649b1dd8fa97eade84ee74de12f5eb24", "sha256": "e45291a022b5e680f393b4406202bfc6e9380dccd8d79b1627b3e4c0d98d457d" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "649b1dd8fa97eade84ee74de12f5eb24", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 107092, "upload_time": "2017-03-27T00:41:17", "url": "https://files.pythonhosted.org/packages/08/0f/beb80192abcaae68b47c259f230994bce3c002416d937d5ebeaf252dc09e/marisa_trie-0.7.4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e8cc1947cf75a75e2f66af62d9c3c8b5", "sha256": "e89c07d52b8f385a9afb617f6b90f0632551ab58f1467edea1158d0837c8b097" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e8cc1947cf75a75e2f66af62d9c3c8b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 129414, "upload_time": "2017-03-27T00:41:19", "url": "https://files.pythonhosted.org/packages/da/a7/5f13eed63b6a5baa2fd8196054dae7eaceb679421157ca494afde44ad672/marisa_trie-0.7.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "feaed884aeedc795bd9ee76a15ecb0fc", "sha256": "ef381b579aee59098652a5fe5b5d9a93f4c93b21cd74d825fbb84c4447c21d83" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "feaed884aeedc795bd9ee76a15ecb0fc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 871145, "upload_time": "2017-03-27T01:19:04", "url": "https://files.pythonhosted.org/packages/59/c9/0b9c3206d018737d712e7e37e44a1926f0d2dae3080837925b24ddab1b12/marisa_trie-0.7.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f0b9122398e228e55a9e2d109229c123", "sha256": "6c8a79ca2e469b12b0bbd2927273c850873a7780bcecc3dd4c01ab30fa8c0346" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f0b9122398e228e55a9e2d109229c123", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 348222, "upload_time": "2017-03-27T01:19:10", "url": "https://files.pythonhosted.org/packages/b8/b1/64744354cc7878e8bfe1d2e793f72ba453cece59be59963454f286527b1b/marisa_trie-0.7.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "620b537587ba5dc288af4300859a2ed6", "sha256": "accdaedcb86bac8fd6748c99dd577dd65a76026872bb5873626f3f401f57a043" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "620b537587ba5dc288af4300859a2ed6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 863067, "upload_time": "2017-03-27T01:19:14", "url": "https://files.pythonhosted.org/packages/d3/2a/3d64c70eaaf0dbd896b88ce46d9a7da0f2f7b59deee03ea3155b0eab46a6/marisa_trie-0.7.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e2e4c32b0fb4a43d792bd51e7e86a9f", "sha256": "c1200407b66dff3a31b505843f1f9c61431595c20972496a9ff4eaaecb792b35" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5e2e4c32b0fb4a43d792bd51e7e86a9f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 114906, "upload_time": "2017-03-27T00:41:20", "url": "https://files.pythonhosted.org/packages/e8/45/736d86e3701e41aa23202e84e727974ad5e14913a6d0bb26261a48731807/marisa_trie-0.7.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7cc60fbe55db11234143b36df9f5991c", "sha256": "f24540335c08b64a623c3622eb69b39a23003147cbabc75e06b49aded59962eb" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7cc60fbe55db11234143b36df9f5991c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 139310, "upload_time": "2017-03-27T00:41:22", "url": "https://files.pythonhosted.org/packages/22/4e/028ab846ab39b9a703b230a724d66cdddfb6f4a05ca2b9c405f9779421b4/marisa_trie-0.7.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "41f92c7ed096875a60fe51b6e7ce07d8", "sha256": "65d873f2cdf22a59ee332aef827c08051019cc701beb54f2384b31dd83865321" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "41f92c7ed096875a60fe51b6e7ce07d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 351188, "upload_time": "2017-03-27T01:19:17", "url": "https://files.pythonhosted.org/packages/12/26/a4ee83b318ee9cbcf2f403e3dd28df06817850353802b2753a26d69f88de/marisa_trie-0.7.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "09247a3432626f52db6d0037ad0b4b11", "sha256": "32cbf5d5a6630e8bd6015fa7600f3e076bc321bf9768e6d4d41e751004ff6657" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "09247a3432626f52db6d0037ad0b4b11", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 870913, "upload_time": "2017-03-27T01:19:20", "url": "https://files.pythonhosted.org/packages/1b/5f/21295ebb1feb1abde1e7652c0a4c182b4c25bdd5dda5a0f5b34d4e88bcc3/marisa_trie-0.7.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "df1750d88faa0a9733a7db900b4c7319", "sha256": "8870bc435ac9bd8aed483169f9008dbf9e40ae56cc3cb02a670fbb5d66975e11" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "df1750d88faa0a9733a7db900b4c7319", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 115911, "upload_time": "2017-03-27T00:41:23", "url": "https://files.pythonhosted.org/packages/c4/16/e0b35f9e6f7a8488973923d108568cf37e2e07f73135a1d567d0282fe79e/marisa_trie-0.7.4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9265cb255a7d7c9791e63a93cbfd124a", "sha256": "212eb066ba52720bec8722454e80a9e29ab0454da980ebd7093148c2e7bdb63e" }, "downloads": -1, "filename": "marisa_trie-0.7.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9265cb255a7d7c9791e63a93cbfd124a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 140593, "upload_time": "2017-03-27T00:41:24", "url": "https://files.pythonhosted.org/packages/5b/66/dff70874aad794a859e19ec8213bf86ae9937afad77f1664c95a3be592c5/marisa_trie-0.7.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0216cc134dc13366c78b74197ea57bf5", "sha256": "2a2258eacca9966325f9019378fc4621891f2482bc63e6441f70599595ed97d8" }, "downloads": -1, "filename": "marisa-trie-0.7.4.tar.gz", "has_sig": false, "md5_digest": "0216cc134dc13366c78b74197ea57bf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 232661, "upload_time": "2017-03-27T00:38:28", "url": "https://files.pythonhosted.org/packages/3f/67/ca798a3f931a7aa192c40d148313693eccb843ddb536144cbe994311020c/marisa-trie-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "aca94fb1ded224c997597b14065b3bb8", "sha256": "4419abb6b603c97e863fad994abe57ed247fb12491f4bbacb2d762bd2e8958b6" }, "downloads": -1, "filename": "marisa_trie-0.7.5-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "aca94fb1ded224c997597b14065b3bb8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 183992, "upload_time": "2018-04-10T21:16:26", "url": "https://files.pythonhosted.org/packages/87/85/74d76814ef32f2b241c6d6b0a95e8754cd54e075a023c8886a4096bf1705/marisa_trie-0.7.5-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "67619c155c51c43baaebc5fda519887c", "sha256": "c73bc25d868e8c4ea7aa7f1e19892db07bba2463351269b05340ccfa06eb2baf" }, "downloads": -1, "filename": "marisa-trie-0.7.5.tar.gz", "has_sig": false, "md5_digest": "67619c155c51c43baaebc5fda519887c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270581, "upload_time": "2018-04-10T21:14:14", "url": "https://files.pythonhosted.org/packages/20/95/d23071d0992dabcb61c948fb118a90683193befc88c23e745b050a29e7db/marisa-trie-0.7.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "aca94fb1ded224c997597b14065b3bb8", "sha256": "4419abb6b603c97e863fad994abe57ed247fb12491f4bbacb2d762bd2e8958b6" }, "downloads": -1, "filename": "marisa_trie-0.7.5-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "aca94fb1ded224c997597b14065b3bb8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 183992, "upload_time": "2018-04-10T21:16:26", "url": "https://files.pythonhosted.org/packages/87/85/74d76814ef32f2b241c6d6b0a95e8754cd54e075a023c8886a4096bf1705/marisa_trie-0.7.5-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "67619c155c51c43baaebc5fda519887c", "sha256": "c73bc25d868e8c4ea7aa7f1e19892db07bba2463351269b05340ccfa06eb2baf" }, "downloads": -1, "filename": "marisa-trie-0.7.5.tar.gz", "has_sig": false, "md5_digest": "67619c155c51c43baaebc5fda519887c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270581, "upload_time": "2018-04-10T21:14:14", "url": "https://files.pythonhosted.org/packages/20/95/d23071d0992dabcb61c948fb118a90683193befc88c23e745b050a29e7db/marisa-trie-0.7.5.tar.gz" } ] }