{ "info": { "author": "Yeray Diaz Diaz", "author_email": "yeraydiazdiaz@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Text Processing" ], "description": "[![Build Status](https://travis-ci.org/yeraydiazdiaz/lunr.py.svg?branch=master)](https://travis-ci.org/yeraydiazdiaz/lunr.py)\n[![codecov](https://codecov.io/gh/yeraydiazdiaz/lunr.py/branch/master/graph/badge.svg)](https://codecov.io/gh/yeraydiazdiaz/lunr.py)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/lunr.svg)](https://pypi.org/project/lunr/)\n[![PyPI](https://img.shields.io/pypi/v/lunr.svg)](https://pypi.org/project/lunr/)\n[![Read the Docs](https://img.shields.io/readthedocs/lunr.svg)](http://lunr.readthedocs.io/en/latest/)\n[![Downloads](http://pepy.tech/badge/lunr)](http://pepy.tech/project/lunr)\n\n# Lunr.py\n\nA Python implementation of [Lunr.js](https://lunrjs.com) by [Oliver Nightingale](https://github.com/olivernn).\n\n> A bit like Solr, but much smaller and not as bright.\n\nThis Python version of Lunr.js aims to bring the simple and powerful full text search capabilities into Python guaranteeing results as close as the original implementation as possible.\n\n- [Documentation](http://lunr.readthedocs.io/en/latest/)\n\n## What does this even do?\n\nLunr is a simple full text search solution for situations where deploying a full scale solution like Elasticsearch isn't possible, viable or you're simply prototyping.\n\nLunr parses a set of documents and creates an inverted index for quick full text searches.\n\nThe typical use case is to integrate Lunr in a web application, an example would be the [MkDocs documentation library](http://www.mkdocs.org/). In order to do this, you'd integrate [Lunr.js](https://lunrjs.com) in the Javascript code of your application, which will need to fetch and parse a JSON of your documents and create the index at startup of your application. Depending on the size of your document set this can take some time and potentially block the browser's main thread.\n\nLunr.py provides a backend solution, allowing you to parse the documents ahead of time and create a Lunr.js compatible index you can pass have the browser version read, minimizing start up time of your application.\n\nOf course you could also use Lunr.py to power full text search in desktop applications or backend services to search on your documents mimicking Elasticsearch.\n\n## Installation\n\nSimply `pip install lunr` for the english only, best compatibility with Lunr.js version.\n\nAn optional and experimental support for other languages via the [Natural Language Toolkit](http://www.nltk.org/) stemmers is also available via `pip install lunr[languages]`. Please refer to the [documentation page on languages](https://lunr.readthedocs.io/en/latest/languages/) for more information.\n\n\n## Current state\n\nEach version of lunr.py [targets a specific version of lunr.js](https://github.com/yeraydiazdiaz/lunr.py/blob/master/lunr/__init__.py#L12) and produces the same results as it both in Python 2.7 and 3 for [non-trivial corpus of documents](https://github.com/yeraydiazdiaz/lunr.py/blob/master/tests/acceptance_tests/fixtures/mkdocs_index.json).\n\nLunr.py also serializes `Index` instances respecting the [`lunr-schema`](https://github.com/olivernn/lunr-schema) which are consumable by Lunr.js and viceversa.\n\nThe API is in alpha stage and likely to change.\n\n## Usage\n\nYou'll need a list of dicts representing the documents you want to search on. These documents must have a unique field which will serve as a reference and a series of fields you'd like to search on.\n\nLunr provides a convenience `lunr` function to quickly index this set of documents:\n\n```python\n>>> from lunr import lunr\n>>>\n>>> documents = [{\n... 'id': 'a',\n... 'title': 'Mr. Green kills Colonel Mustard',\n... 'body': 'Mr. Green killed Colonel Mustard in the study with the candlestick.',\n... }, {\n... 'id': 'b',\n... 'title': 'Plumb waters plant',\n... 'body': 'Professor Plumb has a green plant in his study',\n... }]\n>>> idx = lunr(\n... ref='id', fields=('title', 'body'), documents=documents\n... )\n>>> idx.search('kill')\n[{'ref': 'a', 'score': 0.6931722372559913, 'match_data': }]\n>>> idx.search('study')\n[{'ref': 'b', 'score': 0.23576799568081389, 'match_data': }, {'ref': 'a', 'score': 0.2236629211724517, 'match_data': }]\n```\n\nPlease refer to the [documentation](http://lunr.readthedocs.io/en/latest/) for more usage examples.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yeraydiazdiaz/lunr.py", "keywords": "lunr full text search", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "lunr", "package_url": "https://pypi.org/project/lunr/", "platform": "", "project_url": "https://pypi.org/project/lunr/", "project_urls": { "Homepage": "https://github.com/yeraydiazdiaz/lunr.py" }, "release_url": "https://pypi.org/project/lunr/0.5.5/", "requires_dist": [ "future (>=0.16.0)", "six (>=1.11.0)", "enum34 ; python_version<'3.3'", "nltk (>=3.2.5) ; extra == 'languages'" ], "requires_python": "", "summary": "A Python implementation of Lunr.js", "version": "0.5.5" }, "last_serial": 5199949, "releases": { "0.1.1a1": [ { "comment_text": "", "digests": { "md5": "cd7cfb357db5b4b2015100e93a72e69d", "sha256": "982ab4798ceaf2189815da88f7d6ac4f2453f49e9b79bff20252829e54fe98ad" }, "downloads": -1, "filename": "lunr-0.1.1a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd7cfb357db5b4b2015100e93a72e69d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27099, "upload_time": "2018-03-01T21:19:30", "url": "https://files.pythonhosted.org/packages/c5/97/4bbb72fa2d39d89ed7f427a995420ba53b06ad63c856d83a5ce70908cc71/lunr-0.1.1a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17e5e248d650b53e779b05ce24c45f9b", "sha256": "65c86d0a782f7c1315566e622cd0d2b7c9d5d5e31c6fb758fbd40e0571a718ea" }, "downloads": -1, "filename": "lunr-0.1.1a1.tar.gz", "has_sig": false, "md5_digest": "17e5e248d650b53e779b05ce24c45f9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21274, "upload_time": "2018-03-01T21:19:31", "url": "https://files.pythonhosted.org/packages/0e/ca/5422dda9902128214f21b9d9a6b5a2b2c339064d1c44eb5bdc79b3f8a108/lunr-0.1.1a1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "bcf797f9b054a7d3218ee03f07144064", "sha256": "726d04bc04ae3f0ebe323c7f3f3ffe25c19a606f10f99af73ccacfe747ab733d" }, "downloads": -1, "filename": "lunr-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcf797f9b054a7d3218ee03f07144064", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27771, "upload_time": "2018-03-17T18:43:53", "url": "https://files.pythonhosted.org/packages/a2/85/68932eee4390ee7962fc01b1e59d8f2ac429d31a961226f3384f9a12ef4b/lunr-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1db188e651e115bb51139ec80bc5ceac", "sha256": "11e9239a833594a09979d526c4247f6334d39e3e5e850396bd86bcb241ffa484" }, "downloads": -1, "filename": "lunr-0.1.2.tar.gz", "has_sig": false, "md5_digest": "1db188e651e115bb51139ec80bc5ceac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22097, "upload_time": "2018-03-17T18:43:55", "url": "https://files.pythonhosted.org/packages/a6/6d/6dfaf5a7a5715187516a3fe9d9f8a166a1e6aed20630eb36d6f50e9d94ed/lunr-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f32b17b86410c325f7aa0eed9f46b603", "sha256": "3f4c9886a24f4e20bb9082cb121282421b3dcb3826c938a22a1082ccd18c85bd" }, "downloads": -1, "filename": "lunr-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f32b17b86410c325f7aa0eed9f46b603", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28187, "upload_time": "2018-04-15T16:25:21", "url": "https://files.pythonhosted.org/packages/9f/13/5a52ea24dad5042fbe301f21854326dd291610f8a6333af7029f24bb4763/lunr-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b7d167bd4f11ebd7fa057aa0a1e7899", "sha256": "41d13aebbb4860d5cbca13c3742de92e269d491bd5794621d3148a03b22126ae" }, "downloads": -1, "filename": "lunr-0.2.0.tar.gz", "has_sig": false, "md5_digest": "2b7d167bd4f11ebd7fa057aa0a1e7899", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24046, "upload_time": "2018-04-15T16:25:23", "url": "https://files.pythonhosted.org/packages/7d/f2/7610bc859510179c5d9a185d4e076de664048d6012474681a88bc45c979a/lunr-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "6e2ab06a376eb5a3c7cd1b394553aea0", "sha256": "0b8725ac54f6967537d46a6febd3e4cb7293fdff4e01b504ce94fd48d1a1aa58" }, "downloads": -1, "filename": "lunr-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e2ab06a376eb5a3c7cd1b394553aea0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28380, "upload_time": "2018-04-21T10:47:29", "url": "https://files.pythonhosted.org/packages/bc/59/3eb3f79b5e4b84a2e450517458f526ac17a86d5823b4fad15bf7bec93df2/lunr-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15f4b1f64d13ae2033bc6f6fa1ccabfe", "sha256": "cde923d85c202283125ea7b2d28e30a29093bc3abfbb848c6641785bdd11e17c" }, "downloads": -1, "filename": "lunr-0.2.1.tar.gz", "has_sig": false, "md5_digest": "15f4b1f64d13ae2033bc6f6fa1ccabfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24189, "upload_time": "2018-04-21T10:47:31", "url": "https://files.pythonhosted.org/packages/e0/e6/a976948d9783f37d34d506f3b64338771e27fbbe106d24595a8a3f41f8bc/lunr-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "9bd6692b500c5ca93bd4419c55252146", "sha256": "3d2255eacbf41d836aa1feb187ef77262b193b720f08e564779c79e7280a830c" }, "downloads": -1, "filename": "lunr-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9bd6692b500c5ca93bd4419c55252146", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28400, "upload_time": "2018-05-15T18:42:06", "url": "https://files.pythonhosted.org/packages/4f/2a/899076c8845ded3f8c9823ac7fd4e50dcb1068cd13c26a51e000eacbf4f0/lunr-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6371e05299ed8d33325afe838cb865e3", "sha256": "0d3e6ff0fc76f94a7e95cbef4d69e20c2a42d38133e616144f99eb57a4c56698" }, "downloads": -1, "filename": "lunr-0.2.2.tar.gz", "has_sig": false, "md5_digest": "6371e05299ed8d33325afe838cb865e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24746, "upload_time": "2018-05-15T18:42:08", "url": "https://files.pythonhosted.org/packages/3a/f5/c739d5f3373c40105fec33a1f243b0e4f4f3ab8f9a2da7a46d08df7aa1fa/lunr-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "f32c21a259541b974abd2e7a7b37f8c5", "sha256": "cf9c352c1dab8f44f71cdd5549e2f1ee0c9f65d94bc0224c0ecd4ca33649719f" }, "downloads": -1, "filename": "lunr-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f32c21a259541b974abd2e7a7b37f8c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28403, "upload_time": "2018-05-19T08:43:49", "url": "https://files.pythonhosted.org/packages/f2/cc/e347b9d03a7d7d8cdf0fd57cb63b1200c02c659853fe1526d335a06787e2/lunr-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25ac9e20bbba31611e0f2f99f112a09c", "sha256": "5b1d89a565ccc286a674d99074542b9a4f2bfd1ac8cb2e9c8a33cfd6b8e55525" }, "downloads": -1, "filename": "lunr-0.2.3.tar.gz", "has_sig": false, "md5_digest": "25ac9e20bbba31611e0f2f99f112a09c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24756, "upload_time": "2018-05-19T08:43:50", "url": "https://files.pythonhosted.org/packages/0c/d6/4a3a0f1029a77583ead9ba4fb75100d8f96f4e53562acd82273514f3a602/lunr-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e9f938b6264fcb6a67fde103041a9d38", "sha256": "1efa368e2cc65bfbec4fff7d17050a5fd77dcadae0cd2c6a484e695b4481db24" }, "downloads": -1, "filename": "lunr-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9f938b6264fcb6a67fde103041a9d38", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30293, "upload_time": "2018-06-03T10:25:50", "url": "https://files.pythonhosted.org/packages/23/d9/0665c1ad815f00bb92538ba24802234cd42836ff534cf90f55af6e26c76a/lunr-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08839ea8ecd1494a7e3d27717c0f6f47", "sha256": "7590d79fabcbec67faec0f2c24ca6ebb441bd6a173b7d30aa4fa0ec558f7cb27" }, "downloads": -1, "filename": "lunr-0.3.0.tar.gz", "has_sig": false, "md5_digest": "08839ea8ecd1494a7e3d27717c0f6f47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26474, "upload_time": "2018-06-03T10:25:52", "url": "https://files.pythonhosted.org/packages/50/28/60e9a196376125a75579caeaf0d497f6130faa046f82635f6f85334e746f/lunr-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "8cf2d5a5d91f6b7411916a4205d79a9e", "sha256": "b4d1662666e0cfc5398a7110dad32f8989102f546343f02980d620f3ddb96cf1" }, "downloads": -1, "filename": "lunr-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8cf2d5a5d91f6b7411916a4205d79a9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 31146, "upload_time": "2018-06-25T20:06:56", "url": "https://files.pythonhosted.org/packages/4b/2d/9873a5e3d94f2945107a3834760697da72a30b68ff8166a89f23d06439c1/lunr-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "522d416a83db0efe70c4024a03a4fce1", "sha256": "54d9522338677fd99ad826cd519d8725cb3c3b30148d8f6d624d80c5588fb7d4" }, "downloads": -1, "filename": "lunr-0.4.0.tar.gz", "has_sig": false, "md5_digest": "522d416a83db0efe70c4024a03a4fce1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27206, "upload_time": "2018-06-25T20:06:58", "url": "https://files.pythonhosted.org/packages/6a/a2/98ece10cffb75f160cc6f480ed366d1245ff7bbd1c9153637f22ea485388/lunr-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b6dac26b1ef7c11849b7fa4be6eae019", "sha256": "c4ad29d4d5a871e3991b3984ffcf4e42d485000fe933a8ccb39cc8cc7f7ffe32" }, "downloads": -1, "filename": "lunr-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6dac26b1ef7c11849b7fa4be6eae019", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32954, "upload_time": "2018-07-07T13:32:34", "url": "https://files.pythonhosted.org/packages/d8/77/1935a21e5d1d83430021c48d38ea4904d768f1f2caaf1e3e0ac2dec9c6d2/lunr-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d26b581d73604ec58c960d89b8f101a", "sha256": "292c343fb1814f42d9f53e98cafd181262735d7b0cfecb5e4f7f0c33ff0da6b7" }, "downloads": -1, "filename": "lunr-0.4.1.tar.gz", "has_sig": false, "md5_digest": "6d26b581d73604ec58c960d89b8f101a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29128, "upload_time": "2018-07-07T13:32:36", "url": "https://files.pythonhosted.org/packages/64/96/aad2e1ab190c9f3ff17dda464e99d13aa374e9102b570a95738c967599bd/lunr-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "92b6204c85a954312bf0f8507b0b2902", "sha256": "ce7546f54705b1e7e808d6259be2096b3e1bd6840fda7f4ac3adace871ebc62f" }, "downloads": -1, "filename": "lunr-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92b6204c85a954312bf0f8507b0b2902", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32963, "upload_time": "2018-07-28T09:11:06", "url": "https://files.pythonhosted.org/packages/f9/9a/21b3f331e594e0c5c6bd9f82ee1815b09a095c0705dd5366070d5e8651c7/lunr-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ae29990e6be64041fef078b7cf39c93", "sha256": "959413d4ee531c09125d27f02a42477143c0a06da749952f9838d529de99e66a" }, "downloads": -1, "filename": "lunr-0.4.2.tar.gz", "has_sig": false, "md5_digest": "2ae29990e6be64041fef078b7cf39c93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29150, "upload_time": "2018-07-28T09:11:08", "url": "https://files.pythonhosted.org/packages/4e/25/fc7ca2883b408372802493abbea0157636983d3a0cb69b2cccf79b468152/lunr-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "6fcf6a74013f1a91e7be82ef44cd25b8", "sha256": "249af31f5b24b738f9d021680ae11f6e4f78b9e01aaa6889aec1b632f7a0856e" }, "downloads": -1, "filename": "lunr-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fcf6a74013f1a91e7be82ef44cd25b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32962, "upload_time": "2018-08-18T17:02:31", "url": "https://files.pythonhosted.org/packages/2f/d8/d832920722a27ed7059567450dd82c1c713508f1e5362924f47bd1febf27/lunr-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc28c687f5727fbc19fe9cdadfbe92ae", "sha256": "0596b70b8263ab195cf467b5a7246611f621fec1ff03e86b721f67a0a83b2a4f" }, "downloads": -1, "filename": "lunr-0.4.3.tar.gz", "has_sig": false, "md5_digest": "dc28c687f5727fbc19fe9cdadfbe92ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29179, "upload_time": "2018-08-18T17:02:33", "url": "https://files.pythonhosted.org/packages/e9/14/ff83f192450905930c1880c8492d37d585cc5c54614d6672d25a93ce6fc8/lunr-0.4.3.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "f9f229d72aa43692cc030edc4e5f36d3", "sha256": "a00b9bc0ca40b7cadd857a279b196d50c6d7b2fb9c3ac887c2d2b2585c6b158e" }, "downloads": -1, "filename": "lunr-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9f229d72aa43692cc030edc4e5f36d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35514, "upload_time": "2018-08-25T17:55:36", "url": "https://files.pythonhosted.org/packages/74/c5/f549c316bf12b5367e322edc7e9175423dedfa5ba41fd9365141f86d86d2/lunr-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e21900066887ed616859b5b38aaaf23d", "sha256": "acffc148c9dc0cbd2d19389782f3ecdea4ca6aa07c663655c2b945bef26b14f8" }, "downloads": -1, "filename": "lunr-0.5.1.tar.gz", "has_sig": false, "md5_digest": "e21900066887ed616859b5b38aaaf23d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44055, "upload_time": "2018-08-25T17:55:38", "url": "https://files.pythonhosted.org/packages/91/27/2c65a8c14a66269d72dceee9650da1a1553b0ab6a617867854e4b91db2bc/lunr-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "dce2b558206f06c808b6db375e009b49", "sha256": "0ffdb6c72d95686fd77445796fdfc8cd80da5945a4b634f39fd8a6822e467886" }, "downloads": -1, "filename": "lunr-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dce2b558206f06c808b6db375e009b49", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35537, "upload_time": "2018-08-25T18:56:36", "url": "https://files.pythonhosted.org/packages/e6/3e/7a13d8c9635e66d11095f31cab9c7ac114e622cbb93e66ad92d7cf371530/lunr-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "497d5cd9e224b4a4cfab69ee772912fd", "sha256": "a3b11b1d3e5489317f15bfed75960ac907d680efd686f6ef2cf25bbd10adcf8f" }, "downloads": -1, "filename": "lunr-0.5.2.tar.gz", "has_sig": false, "md5_digest": "497d5cd9e224b4a4cfab69ee772912fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44079, "upload_time": "2018-08-25T18:56:38", "url": "https://files.pythonhosted.org/packages/52/f4/43325cb21fc289b86550821bb882de4186f04023b73189d5cae7defc6faf/lunr-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "e79c196321911e0c94ecd22e7e417d4f", "sha256": "5ac309273e39282509079fe437220df2c5855e18c17daebc154bbdd5d018709b" }, "downloads": -1, "filename": "lunr-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e79c196321911e0c94ecd22e7e417d4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35652, "upload_time": "2018-09-08T10:08:34", "url": "https://files.pythonhosted.org/packages/57/80/fe90a99dfb219de751a22cab9dc3e386d933651dadc133f9c4ef4ae82fbd/lunr-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e318c1ef12738695b74f84193b250ca5", "sha256": "43143c7f857af9147b3e2621ec273c6b783b8eda65e8c2d5dcd4973c43b46254" }, "downloads": -1, "filename": "lunr-0.5.3.tar.gz", "has_sig": false, "md5_digest": "e318c1ef12738695b74f84193b250ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44338, "upload_time": "2018-09-08T10:08:35", "url": "https://files.pythonhosted.org/packages/6c/5a/b737c000e49419c27315a75ea05d7212318e09d8824afe58a979c86f9f17/lunr-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "ffeed8410c4b69aa9c73d155d89d064f", "sha256": "5514551226a9c1679c0ea9ed8d6b27f61071bac64df5dfdda41de722b11dc9da" }, "downloads": -1, "filename": "lunr-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffeed8410c4b69aa9c73d155d89d064f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36388, "upload_time": "2018-11-10T11:41:38", "url": "https://files.pythonhosted.org/packages/50/c5/090722e7ac8068db8af5f826062e31e0cafde284f168d9a397c9384489ff/lunr-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54c6b2abf648fc16bf736e97a1c5389a", "sha256": "185254a6776d0d1758531dab32823cdbb8327be0158731dbd55b6943f2062387" }, "downloads": -1, "filename": "lunr-0.5.4.tar.gz", "has_sig": false, "md5_digest": "54c6b2abf648fc16bf736e97a1c5389a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43889, "upload_time": "2018-11-10T11:41:40", "url": "https://files.pythonhosted.org/packages/a9/a2/d73f932f990e37410a333e8d6de17064cfc07aac90fad15399a368c00b39/lunr-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "b8a4895bd5623ef4c1fb69498bb1126d", "sha256": "688558a170ed5612dcd10fd256cdc048dd9d91f6ca25a88e4ceb5cc9c546d76a" }, "downloads": -1, "filename": "lunr-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8a4895bd5623ef4c1fb69498bb1126d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36307, "upload_time": "2019-04-28T15:25:03", "url": "https://files.pythonhosted.org/packages/cb/ae/b92f469874b085884a0dba67d3c39bef098a264e69b87b09b35081f196a7/lunr-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "243126d2dbd88cc9894c233fa6d30e95", "sha256": "c5fa62546781593a8bb05eec5e3df24f24a2c1333700b9418cc59b8ae4f57570" }, "downloads": -1, "filename": "lunr-0.5.5.tar.gz", "has_sig": false, "md5_digest": "243126d2dbd88cc9894c233fa6d30e95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43643, "upload_time": "2019-04-28T15:25:07", "url": "https://files.pythonhosted.org/packages/4a/3b/9ad891da3ba78d43ee90104cd2126a032ec8b0088526be4327ffa06eedf5/lunr-0.5.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b8a4895bd5623ef4c1fb69498bb1126d", "sha256": "688558a170ed5612dcd10fd256cdc048dd9d91f6ca25a88e4ceb5cc9c546d76a" }, "downloads": -1, "filename": "lunr-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8a4895bd5623ef4c1fb69498bb1126d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36307, "upload_time": "2019-04-28T15:25:03", "url": "https://files.pythonhosted.org/packages/cb/ae/b92f469874b085884a0dba67d3c39bef098a264e69b87b09b35081f196a7/lunr-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "243126d2dbd88cc9894c233fa6d30e95", "sha256": "c5fa62546781593a8bb05eec5e3df24f24a2c1333700b9418cc59b8ae4f57570" }, "downloads": -1, "filename": "lunr-0.5.5.tar.gz", "has_sig": false, "md5_digest": "243126d2dbd88cc9894c233fa6d30e95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43643, "upload_time": "2019-04-28T15:25:07", "url": "https://files.pythonhosted.org/packages/4a/3b/9ad891da3ba78d43ee90104cd2126a032ec8b0088526be4327ffa06eedf5/lunr-0.5.5.tar.gz" } ] }