{ "info": { "author": "Elastic", "author_email": "support@elastic.co", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "> **\u26a0\ufe0f This client is deprecated \u26a0\ufe0f**\n>\n> As of Enterprise Search version 7.10.0, we are directing users to the new [Enterprise Search Python Client](https://github.com/elastic/enterprise-search-python) and\n> deprecating this client.\n>\n> This client will be compatible with all Enterprise Search 7.x releases, but will not be compatible with 8.x releases. Our development effort on this project will\n> be limited to bug fixes. All future enhancements will be focused on the Enterprise Search Python Client.\n>\n> Thank you! - Elastic\n\n\n

\"Elastic

\n\n

\"CircleCI\n\n> A first-party Python client for building excellent, relevant search experiences with [Elastic App Search](https://www.elastic.co/products/app-search).\n\n## Contents\n\n- [Getting started](#getting-started-)\n- [Dependencies](#dependencies)\n- [Versioning](#versioning)\n- [Usage](#usage)\n- [Running tests](#running-tests)\n- [FAQ](#faq-)\n- [Contribute](#contribute-)\n- [License](#license-)\n\n---\n\n## Getting started \ud83d\udc23\n\nTo install the client, use pip:\n\n```python\npython -m pip install elastic-app-search\n```\n\nYou can also download the project source and run::\n\n```python\npython setup.py install\n```\n\n## Dependencies\n\n- Python 2.7 / Python 3.3\n- [Requests](https://github.com/requests/requests)\n- [PyJWT](https://github.com/jpadilla/pyjwt)\n\n## Versioning\n\nThis client is versioned and released alongside App Search.\n\nTo guarantee compatibility, use the most recent version of this library within the major version of the corresponding App Search implementation.\n\nFor example, for App Search `7.3`, use `7.3` of this library or above, but not `8.0`.\n\nIf you are using the [SaaS version available on swiftype.com](https://app.swiftype.com/as) of App Search, you should use the version 7.5.x of the client.\n\n## Usage\n\n### Instantiating a client\n\nUsing this client assumes that you have already an instance of [Elastic App Search](https://www.elastic.co/products/app-search) up and running.\n\nThe client can be instantiated using the `base_endpoint`, `api_key` and `use_https` parameters:\n\n```python\n>>> from elastic_app_search import Client\n>>> client = Client(\n base_endpoint='localhost:3002/api/as/v1',\n api_key='private-mu75psc5egt9ppzuycnc2mc3',\n use_https=False\n)\n```\n\nNotes:\n\nThe `[api_key]` authenticates requests to the API.\nYou can use any key type with the client, however each has a different scope.\nFor more information on keys, check out the [documentation](https://swiftype.com/documentation/app-search/api/credentials).\n\nThe `base_endpoint` must exclude the protocol and include the `api/as/v1` prefix. This can typically be found in the Credentials tab within the App Search Dashboard.\n\nSet `use_https` to `True` or `False` depending how your server is configured. Often times it will be `False` when running in development on `localhost` and `True` for production environments.\n\nThe following is example of a configuration for Elastic Cloud:\n\n```python\n>>> from elastic_app_search import Client\n>>> client = Client(\n base_endpoint='77bf13bc2e9948729af339a446b06ddcc.app-search.us-east-1.aws.found.io/api/as/v1',\n api_key='private-mu75psc5egt9ppzuycnc2mc3',\n use_https=True\n)\n```\n\n#### Swiftype.com App Search users:\n\nWhen using the [SaaS version available on swiftype.com](https://app.swiftype.com/as) of App Search, you can configure the client using your `host_identifier` instead of the `base_endpoint` parameter.\nThe `host_identifier` can be found within the [Credentials](https://app.swiftype.com/as#/credentials) menu.\n\n```python\n>>> from elastic_app_search import Client\n>>> host_identifier = 'host-c5s2mj'\n>>> api_key = 'private-mu75psc5egt9ppzuycnc2mc3'\n>>> client = Client(host_identifier, api_key)\n```\n\n\n### Indexing: Creating or Updating a Single Document\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> document = {\n 'id': 'INscMGmhmX4',\n 'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',\n 'title': 'The Original Grumpy Cat',\n 'body': 'A wonderful video of a magnificent cat.'\n }\n>>> client.index_document(engine_name, document)\n{'id': 'INscMGmhmX4'}\n```\n\n### Indexing: Creating or Updating Multiple Documents\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> documents = [\n {\n 'id': 'INscMGmhmX4',\n 'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',\n 'title': 'The Original Grumpy Cat',\n 'body': 'A wonderful video of a magnificent cat.'\n },\n {\n 'id': 'JNDFojsd02',\n 'url': 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',\n 'title': 'Another Grumpy Cat',\n 'body': 'A great video of another cool cat.'\n }\n]\n\n>>> client.index_documents(engine_name, documents)\n[{'id': 'INscMGmhmX4', 'errors': []}, {'id': 'JNDFojsd02', 'errors': []}]\n```\n\n### Indexing: Updating documents (Partial Updates)\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> documents = [\n {\n 'id': 'INscMGmhmX4',\n 'title': 'Updated title'\n }\n]\n\n>>> client.update_documents(engine_name, documents)\n```\n\n### Get Documents\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> client.get_documents(engine_name, ['INscMGmhmX4'])\n[{'id': 'INscMGmhmX4','url': 'https://www.youtube.com/watch?v=INscMGmhmX4','title': 'The Original Grumpy Cat','body': 'A wonderful video of a magnificent cat.'}]\n```\n\n### List Documents\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> client.list_documents(engine_name, current=1, size=20)\n{\n 'meta': {\n 'page': {\n 'current': 1,\n 'total_pages': 1,\n 'total_results': 2,\n 'size': 20\n }\n },\n 'results': [{'id': 'INscMGmhmX4','url': 'https://www.youtube.com/watch?v=INscMGmhmX4','title': 'The Original Grumpy Cat','body': 'A wonderful video of a magnificent cat.'}]\n}\n```\n\n### Destroy Documents\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> client.destroy_documents(engine_name, ['INscMGmhmX4'])\n[{'id': 'INscMGmhmX4','result': True}]\n```\n\n### Get Schema\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> client.get_schema(engine_name)\n{'name':'text', 'square_km': 'number', 'square_mi': 'text'}\n```\n\n### Create/Update Schema\n\n```python\n>>> engine_name = 'favorite-videos'\n>>> client.update_schema(engine_name, {'square_km': 'text'})\n{'square_km': 'text'}\n>>> client.update_schema(engine_name, {'square_mi': 'text'})\n{'square_km': 'text', 'square_mi': 'text'}\n>>> client.update_schema(engine_name, {'square_km': 'number'})\n{'square_km': 'number', 'square_mi': 'text'}\n```\n\n### List Engines\n\n```python\n>>> client.list_engines(current=1, size=20)\n{\n 'meta': {\n 'page': {\n 'current': 1,\n 'total_pages': 1,\n 'total_results': 2,\n 'size': 20\n }\n },\n 'results': [{'name': 'favorite-videos'}, {'name': 'another-engine'}]\n}\n```\n\n### Get an Engine\n\n```python\n>>> client.get_engine('favorite-videos')\n{'name': 'favorite-videos'}\n```\n\n### Create an Engine\n\n```python\n>>> client.create_engine('favorite-videos', 'en')\n{'name': 'favorite-videos', 'type': 'default', 'language': 'en'}\n```\n\n### Destroy an Engine\n\n```python\n>>> client.destroy_engine('favorite-videos')\n{'deleted': True}\n```\n\n### List all synonym sets in an engine\n\n#### With default pagination (a page size of 20)\n\n```python\n>>> client.list_synonym_sets('us-national-parks')\n{\n 'meta': {\n 'page': {\n 'current': 1,\n 'total_pages': 1,\n 'total_results': 3,\n 'size': 20\n }\n },\n 'results': [\n {\n 'id': 'syn-5b11ac66c9f9292013220ad3',\n 'synonyms': [\n 'park',\n 'trail'\n ]\n },\n {\n 'id': 'syn-5b11ac72c9f9296b35220ac9',\n 'synonyms': [\n 'protected',\n 'heritage'\n ]\n },\n {\n 'id': 'syn-5b11ac66c9f9292013220ad3',\n 'synonyms': [\n 'hectares',\n 'acres'\n ]\n }\n ]\n}\n```\n\n#### With custom pagination\n\n```python\n>>> client.list_synonym_sets('us-national-parks', size=1, current=1)\n{\n 'meta': {\n 'page': {\n 'current': 1,\n 'total_pages': 3,\n 'total_results': 3,\n 'size': 1\n }\n },\n 'results': [\n {\n 'id': 'syn-5b11ac66c9f9292013220ad3',\n 'synonyms': [\n 'park',\n 'trail'\n ]\n }\n ]\n}\n```\n\n### Get a single synonym set\n\n```python\n>>> client.get_synonym_set('us-national-parks', 'syn-5b11ac66c9f9292013220ad3')\n{\n 'id': 'syn-5b11ac66c9f9292013220ad3',\n 'synonyms': [\n 'park',\n 'trail'\n ]\n}\n```\n\n### Create a synonym set\n\n```python\n>>> client.create_synonym_set('us-national-parks', ['park', 'trail'])\n{\n 'id': 'syn-5b11ac72c9f9296b35220ac9',\n 'synonyms': [\n 'park',\n 'trail'\n ]\n}\n```\n\n### Update a synonym set\n\n```python\n>>> client.update_synonym_set('us-national-parks', 'syn-5b11ac72c9f9296b35220ac9', ['park', 'trail', 'ground'])\n{\n 'id': 'syn-5b11ac72c9f9296b35220ac9',\n 'synonyms': [\n 'park',\n 'trail',\n 'ground'\n ]\n}\n```\n\n### Destroy a synonym set\n\n```python\n>>> client.destroy_synonym_set('us-national-parks', 'syn-5b11ac66c9f9292013220ad3')\n{\n 'deleted': True\n}\n```\n\n### Searching\n\n```python\n>>> client.search('favorite-videos', 'grumpy cat', {})\n{'meta': {'page': {'current': 1, 'total_pages': 1, 'total_results': 2, 'size': 10}, ...}, 'results': [...]}\n```\n\n### Multi-Search\n\n```python\n>>> client.multi_search('favorite-videos', [{\n 'query': 'cat',\n 'options': { 'search_fields': { 'title': {} }}\n},{\n 'query': 'dog',\n 'options': { 'search_fields': { 'body': {} }}\n}])\n[{'meta': {...}, 'results': [...]}, {'meta': {...}, 'results': [...]}]\n```\n\n### Query Suggestion\n\n```python\n>>> client.query_suggestion('favorite-videos', 'cat', {\n 'size': 10,\n 'types': {\n 'documents': {\n 'fields': ['title']\n }\n }\n})\n{'results': {'documents': [{'suggestion': 'cat'}]}, 'meta': {'request_id': '390be384ad5888353e1b32adcfaaf1c9'}}\n```\n\n### Clickthrough Tracking\n\n```python\n>>> client.click(engine_name, {'query': 'cat', 'document_id': 'INscMGmhmX4'})\n```\n\n### Create a Signed Search Key\n\nCreating a search key that will only search over the body field.\n\n```python\n>>> api_key = 'search-xxxxxxxxxxxxxxxxxxxxxxxx'\n>>> api_key_name = 'search-key' # This name must match the name of the key above from your App Search dashboard\n>>> signed_search_key = Client.create_signed_search_key(api_key, api_key_name, {'search_fields': { 'body': {}}})\n>>> client = Client(\n base_endpoint='localhost:3002/api/as/v1',\n api_key=signed_search_key,\n use_https=False\n)\n```\n\n### Create a Meta Engine\n\n```python\n>>> client.create_meta_engine(\n engine_name=engine_name,\n source_engines=[\n 'source-engine-1',\n 'source-engine-2'\n ]\n)\n{'source_engines': ['source-engine-1', 'source-engine-2'], 'type': 'meta', 'name': 'my-meta-engine'}\n```\n\n### Add a Source Engine to a Meta Engine\n\n```python\n>>> client.add_meta_engine_sources('my-meta-engine', ['source-engine-3'])\n{'source_engines': ['source-engine-1', 'source-engine-2', 'source-engine-3'], 'type': 'meta', 'name': 'my-meta-engine'}\n```\n\n### Remove a Source Engine from a Meta Engine\n\n```python\n>>> client.delete_meta_engine_sources('my-meta-engine', ['source-engine-3'])\n{'source_engines': ['source-engine-1', 'source-engine-2'], 'type': 'meta', 'name': 'my-meta-engine'}\n```\n\n### Search the API logs\n\n```python\n>>> client.get_api_logs('my-meta-engine', {\n \"filters\": {\n \"date\": {\n \"from\": \"2020-03-30T00:00:00+00:00\",\n \"to\": \"2020-03-31T00:00:00+00:00\"\n },\n \"status\": \"429\"\n }\n})\n{\n 'results': [],\n 'meta': {\n 'query': '',\n 'filters': {\n 'date': {\n 'from': '2020-03-27T00:00:00+00:00',\n 'to': '2020-03-31T00:00:00+00:00'\n },\n 'status': '429'\n },\n 'sort_direction': 'asc',\n 'page': {\n 'current': 1,\n 'total_pages': 0,\n 'total_results': 0,\n 'size': 10\n }\n }\n}\n```\n\n### Get search settings\n\n```python\n>>> client.get_search_settings(engine_name='us-national-parks')\n{\n \"search_fields\": {\n \"name\": {\n \"weight\": 1\n },\n \"description\": {\n \"weight\": 1\n }\n },\n \"result_fields\": {\n \"name\": {\n \"raw\": {}\n },\n \"description\": {\n \"raw\": {}\n }\n },\n \"boosts\": {}\n}\n```\n\n### Update search settings\n\n```python\n>>> client.update_search_settings(\n engine_name='us-national-parks',\n search_settings={\n \"search_fields\": {\n \"name\": {\n \"weight\": 2\n },\n \"description\": {\n \"weight\": 1\n }\n },\n \"result_fields\": {\n \"name\": {\n \"raw\": {}\n },\n \"description\": {\n \"raw\": {}\n }\n },\n \"boosts\": {}\n }\n)\n{\n \"search_fields\": {\n \"name\": {\n \"weight\": 2\n },\n \"description\": {\n \"weight\": 1\n }\n },\n \"result_fields\": {\n \"name\": {\n \"raw\": {}\n },\n \"description\": {\n \"raw\": {}\n }\n },\n \"boosts\": {}\n}\n```\n\n### Reset search settings\n\n```python\n>>> client.reset_search_settings(engine_name='us-national-parks')\n{\n \"search_fields\": {\n \"name\": {\n \"weight\": 1\n },\n \"description\": {\n \"weight\": 1\n }\n },\n \"boosts\": {}\n}\n```\n\n## Running tests\n\n```python\npython setup.py test\n```\n\n## FAQ \ud83d\udd2e\n\n### Where do I report issues with the client?\n\nIf something is not working as expected, please open an [issue](https://github.com/elastic/app-search-python/issues/new).\n\n### Where can I learn more about App Search?\n\nYour best bet is to read the [documentation](https://swiftype.com/documentation/app-search).\n\n### Where else can I go to get help?\n\nYou can checkout the [Elastic App Search community discuss forums](https://discuss.elastic.co/c/app-search).\n\n## Contribute \ud83d\ude80\n\nWe welcome contributors to the project. Before you begin, a couple notes:\n\n- Prior to opening a pull request, please create an issue to [discuss the scope of your proposal](https://github.com/elastic/app-search-python/issues).\n- Please write simple code and concise documentation, when appropriate.\n\n## License \ud83d\udcd7\n\n[Apache 2.0](https://github.com/elastic/app-search-python/blob/master/LICENSE.txt) \u00a9 [Elastic](https://github.com/elastic)\n\nThank you to all the [contributors](https://github.com/elastic/app-search-python/graphs/contributors)!", "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/elastic/app-search-python", "keywords": "elastic app search api", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "elastic-app-search", "package_url": "https://pypi.org/project/elastic-app-search/", "platform": "", "project_url": "https://pypi.org/project/elastic-app-search/", "project_urls": { "Homepage": "https://github.com/elastic/app-search-python" }, "release_url": "https://pypi.org/project/elastic-app-search/7.10.0/", "requires_dist": null, "requires_python": "", "summary": "An API client for Elastic App Search", "version": "7.10.0", "yanked": false, "yanked_reason": null }, "last_serial": 8743624, "releases": { "0.7.0": [ { "comment_text": "", "digests": { "md5": "c53492c9aecfe38668a1104501effc3e", "sha256": "81f286ccfed8265822b3fec21fe183fa43731ec99e369403ae30a5f2474ec47b" }, "downloads": -1, "filename": "elastic-app-search-0.7.0.tar.gz", "has_sig": false, "md5_digest": "c53492c9aecfe38668a1104501effc3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11841, "upload_time": "2019-08-07T08:55:01", "upload_time_iso_8601": "2019-08-07T08:55:01.042415Z", "url": "https://files.pythonhosted.org/packages/18/e0/c7cf228d09c859d88972f51e929217c6111460f04cc0255f3d2030063f54/elastic-app-search-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.10.0": [ { "comment_text": "", "digests": { "md5": "f8c4d67d04399f9be923d2b4058cd3e1", "sha256": "e6813e54da27eedf30db3d86f772ec403b215875d4c1047f2e68cddc45525f54" }, "downloads": -1, "filename": "elastic-app-search-7.10.0.tar.gz", "has_sig": false, "md5_digest": "f8c4d67d04399f9be923d2b4058cd3e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13787, "upload_time": "2020-11-25T02:52:50", "upload_time_iso_8601": "2020-11-25T02:52:50.383603Z", "url": "https://files.pythonhosted.org/packages/d1/04/93de16b6d3f6ca4ccd630c6fae3b30ef9034a8104b54f1a25c8be4de0dd7/elastic-app-search-7.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.2.0": [ { "comment_text": "", "digests": { "md5": "79ae4e7057d620a932cddbc466523760", "sha256": "51d9179113b892b8568426833306b58903a01412626155525a2921e938e303c1" }, "downloads": -1, "filename": "elastic-app-search-7.2.0.tar.gz", "has_sig": false, "md5_digest": "79ae4e7057d620a932cddbc466523760", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11919, "upload_time": "2019-08-26T18:58:06", "upload_time_iso_8601": "2019-08-26T18:58:06.300966Z", "url": "https://files.pythonhosted.org/packages/64/98/736c824dedb66a4fe171d41899da5dab231ec6988d20afbab29836bba381/elastic-app-search-7.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.3.0": [ { "comment_text": "", "digests": { "md5": "5e68abf6f283fca49f3055d950c1e234", "sha256": "d78cf715930cc56e7197bf9a06e45e994faa588c92869c320ceec0e192d325c2" }, "downloads": -1, "filename": "elastic-app-search-7.3.0.tar.gz", "has_sig": false, "md5_digest": "5e68abf6f283fca49f3055d950c1e234", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11916, "upload_time": "2019-08-26T19:42:48", "upload_time_iso_8601": "2019-08-26T19:42:48.833153Z", "url": "https://files.pythonhosted.org/packages/0a/82/d58afa1b160909bf2e73f56a96988b2f22e492c20c22d690534122c420ec/elastic-app-search-7.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.4.0": [ { "comment_text": "", "digests": { "md5": "e2349f6f44fe628ac555d898132474ac", "sha256": "442617b8a5f2a5af31744b305ba7f3974164d01295d30dd6cc71c9ee9748fc52" }, "downloads": -1, "filename": "elastic-app-search-7.4.0.tar.gz", "has_sig": false, "md5_digest": "e2349f6f44fe628ac555d898132474ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11919, "upload_time": "2019-10-01T18:17:05", "upload_time_iso_8601": "2019-10-01T18:17:05.375347Z", "url": "https://files.pythonhosted.org/packages/24/3b/6f3a4edc594b59963ee9a30d3e8c46731144cd1b3c43ad5e0f56b78b9a44/elastic-app-search-7.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.5.0": [ { "comment_text": "", "digests": { "md5": "cb9ef3b0dfa490f168af4d40fff8d59b", "sha256": "1d954dc64bff8a30cfb54bf3835fc4a30c1d93693bab95f2374629ea727e9ae9" }, "downloads": -1, "filename": "elastic-app-search-7.5.0.tar.gz", "has_sig": false, "md5_digest": "cb9ef3b0dfa490f168af4d40fff8d59b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11915, "upload_time": "2019-12-02T17:10:36", "upload_time_iso_8601": "2019-12-02T17:10:36.940610Z", "url": "https://files.pythonhosted.org/packages/54/29/53fec4e8258f03c83f58601d56797eff6740ad0a8c077f30fb607a240514/elastic-app-search-7.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.6.0": [ { "comment_text": "", "digests": { "md5": "0b0e871854b67e7c8a5e011c3b1a7a22", "sha256": "57ef2bf1ccd5755f7b5082feb6f5122a37f189e4ea9d097ef781c8939227b72f" }, "downloads": -1, "filename": "elastic-app-search-7.6.0.tar.gz", "has_sig": false, "md5_digest": "0b0e871854b67e7c8a5e011c3b1a7a22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12475, "upload_time": "2020-02-13T16:52:47", "upload_time_iso_8601": "2020-02-13T16:52:47.298489Z", "url": "https://files.pythonhosted.org/packages/69/fa/642b458ee3082d827bb7d98139e50956b686c90e348e942af5c137d6c5bd/elastic-app-search-7.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.7.0": [ { "comment_text": "", "digests": { "md5": "c55880b85831768e5510fb99f98b1629", "sha256": "ca50153c10c9c45c121ff1546200496b616fe89bd2da966a00d81534d9aacad5" }, "downloads": -1, "filename": "elastic-app-search-7.7.0.tar.gz", "has_sig": false, "md5_digest": "c55880b85831768e5510fb99f98b1629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12730, "upload_time": "2020-05-14T14:43:28", "upload_time_iso_8601": "2020-05-14T14:43:28.240395Z", "url": "https://files.pythonhosted.org/packages/78/d9/9c7d1aa44b49d7c6516d20405cb088e563587e8c15489331acdef33e1544/elastic-app-search-7.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.8.0": [ { "comment_text": "", "digests": { "md5": "f975add8576cd95e0ca1994678e6ea59", "sha256": "4255cae3e17ed5d5b9442daf2e70dec9ffcf6de1d09106b84ba9ffa220d55699" }, "downloads": -1, "filename": "elastic-app-search-7.8.0.tar.gz", "has_sig": false, "md5_digest": "f975add8576cd95e0ca1994678e6ea59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12695, "upload_time": "2020-06-29T12:39:06", "upload_time_iso_8601": "2020-06-29T12:39:06.701167Z", "url": "https://files.pythonhosted.org/packages/75/b2/fecbe211f46123ad2ef69a67941a4c50aef1c72c16d821d952b2a0cdf666/elastic-app-search-7.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.8.1": [ { "comment_text": "", "digests": { "md5": "fdd5574e166fd4efdf0cae42edacc348", "sha256": "cb57ffbaca6a006804063d09c57aaf6891e0a7f2867fe538218b37a3acb0a302" }, "downloads": -1, "filename": "elastic-app-search-7.8.1.tar.gz", "has_sig": false, "md5_digest": "fdd5574e166fd4efdf0cae42edacc348", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13512, "upload_time": "2020-07-30T16:39:25", "upload_time_iso_8601": "2020-07-30T16:39:25.006412Z", "url": "https://files.pythonhosted.org/packages/09/a8/1fe60fbd2e262d86b82b451cdd21ede0fd9a3712e8edde4b1e0bb79b719c/elastic-app-search-7.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "7.9.0": [ { "comment_text": "", "digests": { "md5": "37be1519f2aa495e2f09c683b5b2d8cb", "sha256": "e9f9cb1a581807da8c93a43824c05dc26c91fe76fd28df588e8dde57daafb86c" }, "downloads": -1, "filename": "elastic-app-search-7.9.0.tar.gz", "has_sig": false, "md5_digest": "37be1519f2aa495e2f09c683b5b2d8cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13539, "upload_time": "2020-08-20T17:56:37", "upload_time_iso_8601": "2020-08-20T17:56:37.096913Z", "url": "https://files.pythonhosted.org/packages/7c/2e/469e694c1205d976d33f58e025b1a4344fefee75b6c9aa33b415d5f0a874/elastic-app-search-7.9.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f8c4d67d04399f9be923d2b4058cd3e1", "sha256": "e6813e54da27eedf30db3d86f772ec403b215875d4c1047f2e68cddc45525f54" }, "downloads": -1, "filename": "elastic-app-search-7.10.0.tar.gz", "has_sig": false, "md5_digest": "f8c4d67d04399f9be923d2b4058cd3e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13787, "upload_time": "2020-11-25T02:52:50", "upload_time_iso_8601": "2020-11-25T02:52:50.383603Z", "url": "https://files.pythonhosted.org/packages/d1/04/93de16b6d3f6ca4ccd630c6fae3b30ef9034a8104b54f1a25c8be4de0dd7/elastic-app-search-7.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }