Skip to content

Releases: algolia/algoliasearch-client-python

4.3.0

06 Sep 13:48
Compare
Choose a tag to compare

4.2.3

02 Sep 13:56
Compare
Choose a tag to compare

4.2.2

29 Aug 23:17
Compare
Choose a tag to compare

4.2.1

28 Aug 11:02
Compare
Choose a tag to compare

4.1.1

21 Aug 15:52
Compare
Choose a tag to compare

4.1.0

20 Aug 13:17
Compare
Choose a tag to compare

4.0.2

19 Aug 16:22
Compare
Choose a tag to compare

4.0.0

14 Aug 10:26
Compare
Choose a tag to compare

v3.0.0

27 Feb 10:15
Compare
Choose a tag to compare

v3.0.0

Changed

  • Major version!: drop support for Python 2.7, add support for Python 3.9, 3.10 and 3.11 (#553)
  • Major version!: remove recommendation client in favor of personalization (#554)

Fixed

  • Unable to initialize SearchClient on Python 3.11 (#549)

1.17.0

19 Jun 06:18
Compare
Choose a tag to compare
  • Introduce AB Testing feature - PR #408
    List/Create/Stop/Delete AB Tests programmatically
    Introduce new Analytics object, wrapper around the
    Analytics API (more methods to come).

  • 2 methods about taskID initially available in the Index moved to the Client.
    You could get some taskID from the engine without necessarily have an instance of Index,
    instead of instantiating an index that you won't need, you can now call wait_task and get_task_status on the client.
    The original methods on the index still work and are not deprecated.

    client.wait_ask(index_name, taskID)
    client.get_task_status(index_name, taskID)