Skip to main content

Algolia Search Asyncronous API Client for Python

Project description

Build Status

PyPI version Coverage Status

This package is in its early stages please report any bug you find to help us improve it

Algolia Asynchronous Python Client

This package is designed to replace the `algoliasearch <https://github.com/algolia/algoliasearch-client-python>`__ package in asynchronous environments.

This package is only compatible with python 3.4 and onward.

What it does

  • Is compatible with python asyncio.

  • Provide asynchronous alternatives to most of the client methods. All those methods are just suffixed by _async (search_async, add_object_async, etc.)

  • Still provide synchronous versions of the methods.

  • Uses aiohttp as the HTTP underlying library.

  • Uses __aexit__ to avoid manually closing aiohttp sessions with python >= 3.5.1.

What it does not

  • Implement the browse, browse_all, delete_by_query methods.

  • Implement the search_disjunctive_faceting method.

  • Support task canceling (yet).

Installation and Dependencies

Most of the logic of the synchronous client is being used here, so this client depends on the synchronous one. It also depends on aiohttp.

To install this package: pip install algoliasearchasync.

Documentation

All the asynchronous functions have the same names as the synchronous ones with _async appended. Synchronous methods keep the same name.

Arguments taken by the asynchronous functions are the same as the synchronous one, for documentation on the behavior of each function please see:

Examples

With python >= 3.4

import asyncio
from algoliasearchasync import ClientAsync


@asyncio.coroutine
def main(terms):
    client = ClientAsync('<APP_ID>', '<API_KEY>')
    index = client.init_index('<INDEX_NAME>')
    # Create as many searches as there is terms.
    searches = [index.search_async(term) for term in terms]
    # Store the aggregated results.
    s = yield from asyncio.gather(*searches)
    # Client must be closed manually before exiting the program.
    yield from client.close()
    # Return the aggregated results.
    return s


terms = ['<TERM2>', '<TERM2>']
loop = asyncio.get_event_loop()
# Start and wait for the tasks to complete.
complete = loop.run_until_complete(asyncio.gather(*searches))
for term, search in zip(terms, complete):
    print('Results for: {}'.format(term))
    # Display the field '<FIELD>' of each result.
    print('\n'.join([h['<FIELD>'] for h in search['hits']]))

With python >= 3.5.1

import asyncio
from algoliasearchasync import ClientAsync


# Define a coroutine to be able to use `async with`.
async def main(terms):
    # Scope the client for it to be closed automatically.
    async with ClientAsync('<APP_ID>', '<API_KEY>') as client:
        index = c.init_index('<INDEX_NAME>')
        # Create as many searches as there is terms.
        searches = [index.search_async(term) for term in terms]
        # Return the aggregated results.
        return await asyncio.gather(*searches)


terms = ['<TERM1>', '<TERM2>']
loop = asyncio.get_event_loop()
# Start and wait for the tasks to complete.
complete = loop.run_until_complete(main(terms))
for term, search in zip(terms, complete):
    print('Results for {}'.format(term))
    # Display the field '<FIELD>' of each result.
    print('\n'.join([h['<FIELD>'] for h in search['hits']]))

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

algoliasearchasync-0.5.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

algoliasearchasync-0.5-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file algoliasearchasync-0.5.tar.gz.

File metadata

File hashes

Hashes for algoliasearchasync-0.5.tar.gz
Algorithm Hash digest
SHA256 dee36cac9ed6a68a42dbebfddaeab5e102bedc210901fa84f52e242efc24ad40
MD5 853f6d1cdf38bdc201b0a2d5bfc74f6f
BLAKE2b-256 81827f5f6b91362980c6fa61c62550371757fdd604147552ae1b6449c11423e4

See more details on using hashes here.

File details

Details for the file algoliasearchasync-0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for algoliasearchasync-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e6510e029c8b280eca15af2615bd37dd0ab4fa4b6d5aa3e44f2d8e3f85673737
MD5 3f0bc3772ae50d213d97cb961c42b0b7
BLAKE2b-256 c14ea43ff4747b0e58e596a72b4ae0f50288f16acec9e9e6f4fba5c821daab3c

See more details on using hashes here.

Supported by

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