Skip to content

elastic/elasticsearch-serverless-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7113cad · Mar 7, 2025
Nov 7, 2024
Mar 6, 2025
Mar 7, 2025
Mar 7, 2025
Jan 16, 2025
Oct 11, 2024
Apr 26, 2024
Mar 6, 2025
Jun 2, 2023
Jun 2, 2023
Jun 2, 2023
Oct 12, 2023
Jun 2, 2023
Mar 6, 2025
Mar 6, 2025
Nov 7, 2024
Mar 7, 2025
Aug 21, 2023

Elasticsearch Serverless Python Client

PyPI Version Python Versions Downloads Documentation Status

Warning

Starting with the release of the Elastic Stack 9.0.0, this client will be discontinued. Instead, you can use the latest version of the Elasticsearch Python Client to build your Elasticsearch Serverless Python applications.

Features

  • Translating basic Python data types to and from JSON
  • Configurable automatic discovery of cluster nodes
  • Persistent connections
  • Load balancing (with pluggable selection strategy) across available nodes
  • Failed connection penalization (time based - failed connections won't be retried until a timeout is reached)
  • Support for TLS and HTTP authentication
  • Thread safety across requests
  • Pluggable architecture
  • Helper functions for idiomatically using APIs together

Quick Start

# Import the client from the 'elasticsearch' module
# Import the client from the 'elasticsearch' module
>>> from elasticsearch_serverless import Elasticsearch

# Instantiate a client instance
>>> client = Elasticsearch("http://localhost:9200")

# Call an API, in this example `info()`
>>> resp = client.info()

# View the result
>>> resp
{
"name" : "instance-name",
"cluster_name" : "cluster-name",
"cluster_uuid" : "cluster-uuid",
"version" : {
   "number" : "7.14.0",
   ...
},
"tagline" : "You know, for Search"
}

License

This software is licensed under the Apache License 2.0. See NOTICE.