Async backend for elasticsearch-py
Project description
This is an adapter for elasticsearch-py providing a transport layer based on Python’s asyncio module. All API calls now return a future wrapping the response.
Sniffing (when requested) is also done via a scheduled coroutine.
Example:
import asyncio from elasticsearch_async import AsyncElasticsearch client = AsyncElasticsearch(hosts=['localhost', 'other-host']) @asyncio.coroutine def print_info(): info = yield from client.info() print(info) loop = asyncio.get_event_loop() loop.run_until_complete(print_info()) loop.close() client.transport.close()
AsyncElasticsearch introduces one extra parameter loop which can be used to pass in an event loop you wish the client to use. By default asyncio.get_event_loop() will be used.
Installation
elasticsearch-async is available via PyPI so you can install it using pip:
pip install elasticsearch-async
License
Copyright 2015 Elasticsearch
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file elasticsearch-async-5.0.0.tar.gz
.
File metadata
- Download URL: elasticsearch-async-5.0.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbf311cde3053038abe6a356f5253cc8cab7669091c739962724da5c9164c925 |
|
MD5 | bb9e052ea13f3780f6dd43db6b66919a |
|
BLAKE2b-256 | 2e5d8996514a0ffef636bdd563aa51a92adae0f2347ff3112bcae5cc9a6956c5 |
Provenance
File details
Details for the file elasticsearch_async-5.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: elasticsearch_async-5.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f8f6b0b390bc6d54b3c2f1ab295ddf9db65a48b97406c28fb5a93d5f786e457 |
|
MD5 | 2a8763ecf6a7fcc0b5bf48134aa328eb |
|
BLAKE2b-256 | 92f00799ee7084516e27630907eb128cf7a9faa83b380bf8c41054f9706d9d7e |