algoliasearch-client-python
algoliasearch-client-python copied to clipboard
⚡️ A fully-featured and blazing-fast Python API client to interact with Algolia.
The python versions listed in setup.cfg do not match what's in the readme file.
Is it possible to get the number of records returned from `client.browse_objects`? Thanks!
| Q | A | ----------------- | ---------- | Bug fix? | yes | New feature? | no | BC breaks? | no | Need Doc update | no ##...
Hello, I have a memory issue when using [`replace_all_objects`](https://github.com/algolia/algoliasearch-client-python/blob/3bb9108d9dff627f12c921ad23dab02984f70a44/algoliasearch/search_index.py#L88). When using this function with a significant amount of documents (5 Million), I use an iterator to minimize memory consumption. I...
- Algolia Client Version: 3.0.0 - Language Version: 3.9 ### Description As of now, I have approximately 2500 instances that require periodic updates in my Algolia search index. The updates...
- Algolia Client Version: 2.0.0 - 3.0.0 - Language Version: Python 3.7.4 - 3.7.17 ### Description We recently implemented the algoliasearch package into a flask app. All worked fine on...
* Algolia CLient Version: 3.0.0 * Language version: 3.12.3 **Description** I am trying to use `SearchIndex.search_async`, but running into issue with `TransporterAsync.retry` traceback: ``` /opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/events.py:88: RuntimeWarning: coroutine 'TransporterAsync.retry' was never...
| Q | A | ----------------- | ---------- | Bug fix? | no | New feature? | yes | BC breaks? | no | Related Issue | Fix #533 |...
I run code similar to: ```python import asyncio import os from algoliasearch.search.client import SearchClient app_id = os.getenv("ALGOLIA_APP_ID") api_key = os.getenv("ALGOLIA_API_KEY") index_name = os.getenv("test-index") async def search() -> None: async with...