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.
Release files for elasticsearch-async 5.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| elasticsearch-async-5.2.0.tar.gz | 5.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| elasticsearch_async-5.2.0-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 14.1 kB
Release files / elasticsearch-async-5.2.0.tar.gz
| Download URL | elasticsearch-async-5.2.0.tar.gz |
|---|---|
| Size | 5.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f085a566264e92e59afeab2a172a56a32b9408d5c0a8c19958b0590b52badfb0
|
|
BLAKE2b-256 checksum How to use checksums |
1791c8897046755827fd57c5cf04e5e57893da1abc651c4a27622fb67598377e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / elasticsearch_async-5.2.0-py2.py3-none-any.whl
| Download URL | elasticsearch_async-5.2.0-py2.py3-none-any.whl |
|---|---|
| Size | 8.5 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
dea072a00b458a27a4b177834b28f0be9ceb16a78c4c1d54ebf16c7b5f121f06
|
|
BLAKE2b-256 checksum How to use checksums |
c4460ef47c145b6ab682171776a36f9e0cc26a3ad610a374843522cd82978909
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |