elasticsearch9.0.1
Published
Python client for Elasticsearch
pip install elasticsearch
Package Downloads
Project URLs
Requires Python
>=3.8
Dependencies
- elastic-transport
<9,>=8.15.1
- python-dateutil
- typing-extensions
- aiohttp
<4,>=3; extra == "async"
- aiohttp
; extra == "dev"
- black
; extra == "dev"
- build
; extra == "dev"
- coverage
; extra == "dev"
- isort
; extra == "dev"
- jinja2
; extra == "dev"
- mapbox-vector-tile
; extra == "dev"
- mypy
; extra == "dev"
- nltk
; extra == "dev"
- nox
; extra == "dev"
- numpy
; extra == "dev"
- orjson
; extra == "dev"
- pandas
; extra == "dev"
- pyarrow
; extra == "dev"
- pyright
; extra == "dev"
- pytest
; extra == "dev"
- pytest-asyncio
; extra == "dev"
- pytest-cov
; extra == "dev"
- pytest-mock
; extra == "dev"
- python-dateutil
; extra == "dev"
- pyyaml
>=5.4; extra == "dev"
- requests
<3,>=2; extra == "dev"
- sentence-transformers
; extra == "dev"
- simsimd
; extra == "dev"
- tqdm
; extra == "dev"
- twine
; extra == "dev"
- types-python-dateutil
; extra == "dev"
- types-tqdm
; extra == "dev"
- unasync
; extra == "dev"
- sphinx
; extra == "docs"
- sphinx-autodoc-typehints
; extra == "docs"
- sphinx-rtd-theme
>=2.0; extra == "docs"
- orjson
>=3; extra == "orjson"
- pyarrow
>=1; extra == "pyarrow"
- requests
!=2.32.2,<3.0.0,>=2.4.0; extra == "requests"
- numpy
>=1; extra == "vectorstore-mmr"
- simsimd
>=3; extra == "vectorstore-mmr"
Elasticsearch Python Client
The official Python client for Elasticsearch.
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
Installation
Download the latest version of Elasticsearch or sign-up for a free trial of Elastic Cloud.
Refer to the Installation section of the getting started documentation.
Connecting
Refer to the Connecting section of the getting started documentation.
Usage
- Creating an index
- Indexing a document
- Getting documents
- Searching documents
- Updating documents
- Deleting documents
- Deleting an index
Compatibility
Language clients are forward compatible: each client version works with equivalent and later minor versions of Elasticsearch without breaking.
Compatibility does not imply full feature parity. New Elasticsearch features are supported only in equivalent client versions. For example, an 8.12 client fully supports Elasticsearch 8.12 features and works with 8.13 without breaking; however, it does not support new Elasticsearch 8.13 features. An 8.13 client fully supports Elasticsearch 8.13 features.
Elasticsearch version | elasticsearch-py branch |
---|---|
main | main |
9.x | 9.x |
9.x | 8.x |
8.x | 8.x |
Elasticsearch language clients are also backward compatible across minor versions — with default distributions and without guarantees.
[!TIP] To upgrade to a new major version, first upgrade Elasticsearch, then upgrade the Python Elasticsearch client.
If you need to work with multiple client versions, note that older versions are also released as elasticsearch7
and elasticsearch8
.
Documentation
Documentation for the client is available on elastic.co and Read the Docs.
License
This software is licensed under the Apache License 2.0. See NOTICE.