Skip to main content

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

http://www.apache.org/licenses/LICENSE-2.0

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

elasticsearch-async-5.2.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

elasticsearch_async-5.2.0-py2.py3-none-any.whl (8.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file elasticsearch-async-5.2.0.tar.gz.

File metadata

File hashes

Hashes for elasticsearch-async-5.2.0.tar.gz
Algorithm Hash digest
SHA256 f085a566264e92e59afeab2a172a56a32b9408d5c0a8c19958b0590b52badfb0
MD5 5b63adee56c3b9047dd697b91848eeb4
BLAKE2b-256 1791c8897046755827fd57c5cf04e5e57893da1abc651c4a27622fb67598377e

See more details on using hashes here.

File details

Details for the file elasticsearch_async-5.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for elasticsearch_async-5.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dea072a00b458a27a4b177834b28f0be9ceb16a78c4c1d54ebf16c7b5f121f06
MD5 b2ace966cda79ee9ddd6f359cabf097c
BLAKE2b-256 c4460ef47c145b6ab682171776a36f9e0cc26a3ad610a374843522cd82978909

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page