ipsolar / aioelasticsearch

aioelasticsearch-py wrapper for asyncio

Home Page:https://pypi.python.org/pypi/aioelasticsearch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aioelasticsearch

info:elasticsearch-py wrapper for asyncio

Installation

pip install aioelasticsearch

Usage

import asyncio

from aioelasticsearch import Elasticsearch

async def go():
    es = Elasticsearch()

    print(await es.search())

    await es.close()

loop = asyncio.get_event_loop()
loop.run_until_complete(go())
loop.close()

Features

Asynchronous scroll

import asyncio

from aioelasticsearch import Elasticsearch
from aioelasticsearch.helpers import Scan

async def go():
    async with Elasticsearch() as es:
        async with Scan(
            es,
            index='index',
            doc_type='doc_type',
            query={},
        ) as scan:
            print(scan.total)

            async for doc in scan:
                print(doc['_source'])

loop = asyncio.get_event_loop()
loop.run_until_complete(go())
loop.close()

About

aioelasticsearch-py wrapper for asyncio

https://pypi.python.org/pypi/aioelasticsearch

License:MIT License


Languages

Language:Python 100.0%