API Reference / API Methods / The Python API client

Algolia’s Python API client lets you use Algolia’s APIs from your Python application. Compared to using the APIs directly, using the Python API client has these benefits:

  • Network retry strategy. The API client automatically retries connecting to another Algolia server, if the connection fails. Thanks to that, using the API clients is covered by Algolia’s SLA.

  • Reindexing. The API clients let you reindex your records in a single operation.

  • Automatic batching. When you add records to your index, the API client automatically batches your records to make fewer API requests.

Algolia’s Python API client is open source. You can find the source code on GitHub.

Do you want to integrate Algolia into your Django app? Use Algolia’s Django integration to get started even quicker.

You’re reading documentation for version 2 of the Python API client. Version 1 of the API client is no longer supported. If you want to update to version 2, see the upgrade guide

Quickstart sample app

To download and run a self-contained example, see the Python quickstart on GitHub.

Install the Python API client

Install the Python API client using pip:

1
pip install --upgrade 'algoliasearch>=2.0,<3.0'

Test your installation

If you haven’t already, create an Algolia account and create a new Algolia app to get started.

To test whether you can connect to Algolia, run a simple program that adds a record to a new index, searches the index, and print the results.

  1. Copy the following code sample into a text editor. If you’re signed in, the code samples below show your Algolia application ID and API key. If you’re not signed in, replace YourApplicationID with your Algolia application ID and YourAdminAPIKey with your Admin API key. You can find both in your Algolia account.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    
    # hello_algolia.py
    from algoliasearch.search_client import SearchClient
    
    # Connect and authenticate with your Algolia app
    client = SearchClient.create("YourApplicationID", "YourAdminAPIKey")
    
    # Create a new index and add a record
    index = client.init_index("test_index")
    record = {"objectID": 1, "name": "test_record"}
    index.save_object(record).wait()
    
    # Search the index and print the results
    results = index.search("test_record")
    print(results["hits"][0])
    
  2. Save the file as hello_algolia.py. Go to the directory with the file you just created and run inside a terminal:

    1
    
    python hello_algolia.py
    
  3. If the program ran successfully, you should see:

    1
    
    {'name': 'test_record', 'objectID': '1', '_highlightResult': ... }
    

You can inspect your index now in the Algolia dashboard.

Next steps

Now you can interact with the Algolia Search API, you can look at the available methods, for example, for search or indexing.

Other APIs, for example for Algolia Recommend or Analytics, come with their own clients. To get an overview, see Initialize the API client.

Did you find this page helpful?