elasticsearch 8.14.0__py3-none-any.whl → 8.15.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- elasticsearch/_async/client/__init__.py +196 -168
- elasticsearch/_async/client/async_search.py +35 -20
- elasticsearch/_async/client/autoscaling.py +4 -4
- elasticsearch/_async/client/cat.py +785 -180
- elasticsearch/_async/client/ccr.py +20 -32
- elasticsearch/_async/client/cluster.py +87 -79
- elasticsearch/_async/client/connector.py +1470 -0
- elasticsearch/_async/client/dangling_indices.py +7 -11
- elasticsearch/_async/client/enrich.py +8 -8
- elasticsearch/_async/client/eql.py +17 -16
- elasticsearch/_async/client/esql.py +2 -2
- elasticsearch/_async/client/features.py +2 -2
- elasticsearch/_async/client/fleet.py +18 -17
- elasticsearch/_async/client/graph.py +4 -4
- elasticsearch/_async/client/ilm.py +36 -44
- elasticsearch/_async/client/indices.py +282 -317
- elasticsearch/_async/client/inference.py +42 -33
- elasticsearch/_async/client/ingest.py +22 -23
- elasticsearch/_async/client/license.py +18 -10
- elasticsearch/_async/client/logstash.py +6 -6
- elasticsearch/_async/client/migration.py +3 -3
- elasticsearch/_async/client/ml.py +383 -176
- elasticsearch/_async/client/monitoring.py +2 -2
- elasticsearch/_async/client/nodes.py +32 -32
- elasticsearch/_async/client/query_rules.py +384 -0
- elasticsearch/_async/client/rollup.py +13 -13
- elasticsearch/_async/client/search_application.py +10 -10
- elasticsearch/_async/client/searchable_snapshots.py +9 -13
- elasticsearch/_async/client/security.py +577 -104
- elasticsearch/_async/client/shutdown.py +7 -7
- elasticsearch/_async/client/slm.py +11 -13
- elasticsearch/_async/client/snapshot.py +39 -52
- elasticsearch/_async/client/sql.py +12 -14
- elasticsearch/_async/client/ssl.py +1 -1
- elasticsearch/_async/client/synonyms.py +8 -8
- elasticsearch/_async/client/tasks.py +9 -10
- elasticsearch/_async/client/text_structure.py +3 -3
- elasticsearch/_async/client/transform.py +89 -34
- elasticsearch/_async/client/watcher.py +30 -15
- elasticsearch/_async/client/xpack.py +6 -7
- elasticsearch/_otel.py +2 -6
- elasticsearch/_sync/client/__init__.py +196 -168
- elasticsearch/_sync/client/async_search.py +35 -20
- elasticsearch/_sync/client/autoscaling.py +4 -4
- elasticsearch/_sync/client/cat.py +785 -180
- elasticsearch/_sync/client/ccr.py +20 -32
- elasticsearch/_sync/client/cluster.py +87 -79
- elasticsearch/_sync/client/connector.py +1470 -0
- elasticsearch/_sync/client/dangling_indices.py +7 -11
- elasticsearch/_sync/client/enrich.py +8 -8
- elasticsearch/_sync/client/eql.py +17 -16
- elasticsearch/_sync/client/esql.py +2 -2
- elasticsearch/_sync/client/features.py +2 -2
- elasticsearch/_sync/client/fleet.py +18 -17
- elasticsearch/_sync/client/graph.py +4 -4
- elasticsearch/_sync/client/ilm.py +36 -44
- elasticsearch/_sync/client/indices.py +282 -317
- elasticsearch/_sync/client/inference.py +42 -33
- elasticsearch/_sync/client/ingest.py +22 -23
- elasticsearch/_sync/client/license.py +18 -10
- elasticsearch/_sync/client/logstash.py +6 -6
- elasticsearch/_sync/client/migration.py +3 -3
- elasticsearch/_sync/client/ml.py +383 -176
- elasticsearch/_sync/client/monitoring.py +2 -2
- elasticsearch/_sync/client/nodes.py +32 -32
- elasticsearch/_sync/client/query_rules.py +384 -0
- elasticsearch/_sync/client/rollup.py +13 -13
- elasticsearch/_sync/client/search_application.py +10 -10
- elasticsearch/_sync/client/searchable_snapshots.py +9 -13
- elasticsearch/_sync/client/security.py +577 -104
- elasticsearch/_sync/client/shutdown.py +7 -7
- elasticsearch/_sync/client/slm.py +11 -13
- elasticsearch/_sync/client/snapshot.py +39 -52
- elasticsearch/_sync/client/sql.py +12 -14
- elasticsearch/_sync/client/ssl.py +1 -1
- elasticsearch/_sync/client/synonyms.py +8 -8
- elasticsearch/_sync/client/tasks.py +9 -10
- elasticsearch/_sync/client/text_structure.py +3 -3
- elasticsearch/_sync/client/transform.py +89 -34
- elasticsearch/_sync/client/watcher.py +30 -15
- elasticsearch/_sync/client/xpack.py +6 -7
- elasticsearch/_version.py +1 -1
- elasticsearch/client.py +3 -3
- elasticsearch/helpers/vectorstore/_async/vectorstore.py +36 -6
- elasticsearch/helpers/vectorstore/_sync/vectorstore.py +36 -6
- elasticsearch/serializer.py +34 -0
- elasticsearch-8.15.0.dist-info/METADATA +177 -0
- elasticsearch-8.15.0.dist-info/RECORD +117 -0
- {elasticsearch-8.14.0.dist-info → elasticsearch-8.15.0.dist-info}/WHEEL +1 -2
- elasticsearch/_async/client/query_ruleset.py +0 -205
- elasticsearch/_sync/client/query_ruleset.py +0 -205
- elasticsearch-8.14.0.dist-info/METADATA +0 -161
- elasticsearch-8.14.0.dist-info/RECORD +0 -116
- elasticsearch-8.14.0.dist-info/top_level.txt +0 -1
- {elasticsearch-8.14.0.dist-info → elasticsearch-8.15.0.dist-info/licenses}/LICENSE +0 -0
- {elasticsearch-8.14.0.dist-info → elasticsearch-8.15.0.dist-info/licenses}/NOTICE +0 -0
|
@@ -57,6 +57,7 @@ class VectorStore:
|
|
|
57
57
|
vector_field: str = "vector_field",
|
|
58
58
|
metadata_mappings: Optional[Dict[str, Any]] = None,
|
|
59
59
|
user_agent: str = f"elasticsearch-py-vs/{lib_version}",
|
|
60
|
+
custom_index_settings: Optional[Dict[str, Any]] = None,
|
|
60
61
|
) -> None:
|
|
61
62
|
"""
|
|
62
63
|
:param user_header: user agent header specific to the 3rd party integration.
|
|
@@ -69,6 +70,11 @@ class VectorStore:
|
|
|
69
70
|
the embedding vector goes in this field.
|
|
70
71
|
:param client: Elasticsearch client connection. Alternatively specify the
|
|
71
72
|
Elasticsearch connection with the other es_* parameters.
|
|
73
|
+
:param custom_index_settings: A dictionary of custom settings for the index.
|
|
74
|
+
This can include configurations like the number of shards, number of replicas,
|
|
75
|
+
analysis settings, and other index-specific settings. If not provided, default
|
|
76
|
+
settings will be used. Note that if the same setting is provided by both the user
|
|
77
|
+
and the strategy, will raise an error.
|
|
72
78
|
"""
|
|
73
79
|
# Add integration-specific usage header for tracking usage in Elastic Cloud.
|
|
74
80
|
# client.options preserves existing (non-user-agent) headers.
|
|
@@ -87,6 +93,7 @@ class VectorStore:
|
|
|
87
93
|
self.text_field = text_field
|
|
88
94
|
self.vector_field = vector_field
|
|
89
95
|
self.metadata_mappings = metadata_mappings
|
|
96
|
+
self.custom_index_settings = custom_index_settings
|
|
90
97
|
|
|
91
98
|
def close(self) -> None:
|
|
92
99
|
return self.client.close()
|
|
@@ -222,7 +229,7 @@ class VectorStore:
|
|
|
222
229
|
def search(
|
|
223
230
|
self,
|
|
224
231
|
*,
|
|
225
|
-
query: Optional[str],
|
|
232
|
+
query: Optional[str] = None,
|
|
226
233
|
query_vector: Optional[List[float]] = None,
|
|
227
234
|
k: int = 4,
|
|
228
235
|
num_candidates: int = 50,
|
|
@@ -303,6 +310,16 @@ class VectorStore:
|
|
|
303
310
|
vector_field=self.vector_field,
|
|
304
311
|
num_dimensions=self.num_dimensions,
|
|
305
312
|
)
|
|
313
|
+
|
|
314
|
+
if self.custom_index_settings:
|
|
315
|
+
conflicting_keys = set(self.custom_index_settings.keys()) & set(
|
|
316
|
+
settings.keys()
|
|
317
|
+
)
|
|
318
|
+
if conflicting_keys:
|
|
319
|
+
raise ValueError(f"Conflicting settings: {conflicting_keys}")
|
|
320
|
+
else:
|
|
321
|
+
settings.update(self.custom_index_settings)
|
|
322
|
+
|
|
306
323
|
if self.metadata_mappings:
|
|
307
324
|
metadata = mappings["properties"].get("metadata", {"properties": {}})
|
|
308
325
|
for key in self.metadata_mappings.keys():
|
|
@@ -324,8 +341,9 @@ class VectorStore:
|
|
|
324
341
|
def max_marginal_relevance_search(
|
|
325
342
|
self,
|
|
326
343
|
*,
|
|
327
|
-
|
|
328
|
-
|
|
344
|
+
query: Optional[str] = None,
|
|
345
|
+
query_embedding: Optional[List[float]] = None,
|
|
346
|
+
embedding_service: Optional[EmbeddingService] = None,
|
|
329
347
|
vector_field: str,
|
|
330
348
|
k: int = 4,
|
|
331
349
|
num_candidates: int = 20,
|
|
@@ -341,6 +359,8 @@ class VectorStore:
|
|
|
341
359
|
among selected documents.
|
|
342
360
|
|
|
343
361
|
:param query (str): Text to look up documents similar to.
|
|
362
|
+
:param query_embedding: Input embedding vector. If given, input query string is
|
|
363
|
+
ignored.
|
|
344
364
|
:param k (int): Number of Documents to return. Defaults to 4.
|
|
345
365
|
:param fetch_k (int): Number of Documents to fetch to pass to MMR algorithm.
|
|
346
366
|
:param lambda_mult (float): Number between 0 and 1 that determines the degree
|
|
@@ -361,12 +381,22 @@ class VectorStore:
|
|
|
361
381
|
remove_vector_query_field_from_metadata = False
|
|
362
382
|
|
|
363
383
|
# Embed the query
|
|
364
|
-
query_embedding
|
|
384
|
+
if query_embedding:
|
|
385
|
+
query_vector = query_embedding
|
|
386
|
+
else:
|
|
387
|
+
if not query:
|
|
388
|
+
raise ValueError("specify either query or query_embedding to search")
|
|
389
|
+
elif embedding_service:
|
|
390
|
+
query_vector = embedding_service.embed_query(query)
|
|
391
|
+
elif self.embedding_service:
|
|
392
|
+
query_vector = self.embedding_service.embed_query(query)
|
|
393
|
+
else:
|
|
394
|
+
raise ValueError("specify embedding_service to search with query")
|
|
365
395
|
|
|
366
396
|
# Fetch the initial documents
|
|
367
397
|
got_hits = self.search(
|
|
368
398
|
query=None,
|
|
369
|
-
query_vector=
|
|
399
|
+
query_vector=query_vector,
|
|
370
400
|
k=num_candidates,
|
|
371
401
|
fields=fields,
|
|
372
402
|
custom_query=custom_query,
|
|
@@ -377,7 +407,7 @@ class VectorStore:
|
|
|
377
407
|
|
|
378
408
|
# Select documents using maximal marginal relevance
|
|
379
409
|
selected_indices = maximal_marginal_relevance(
|
|
380
|
-
|
|
410
|
+
query_vector, got_embeddings, lambda_mult=lambda_mult, k=k
|
|
381
411
|
)
|
|
382
412
|
selected_hits = [got_hits[i] for i in selected_indices]
|
|
383
413
|
|
elasticsearch/serializer.py
CHANGED
|
@@ -49,6 +49,14 @@ except ImportError:
|
|
|
49
49
|
_OrjsonSerializer = None # type: ignore[assignment,misc]
|
|
50
50
|
|
|
51
51
|
|
|
52
|
+
try:
|
|
53
|
+
import pyarrow as pa
|
|
54
|
+
|
|
55
|
+
__all__.append("PyArrowSerializer")
|
|
56
|
+
except ImportError:
|
|
57
|
+
pa = None
|
|
58
|
+
|
|
59
|
+
|
|
52
60
|
class JsonSerializer(_JsonSerializer):
|
|
53
61
|
mimetype: ClassVar[str] = "application/json"
|
|
54
62
|
|
|
@@ -114,6 +122,29 @@ class MapboxVectorTileSerializer(Serializer):
|
|
|
114
122
|
raise SerializationError(f"Cannot serialize {data!r} into a MapBox vector tile")
|
|
115
123
|
|
|
116
124
|
|
|
125
|
+
if pa is not None:
|
|
126
|
+
|
|
127
|
+
class PyArrowSerializer(Serializer):
|
|
128
|
+
"""PyArrow serializer for deserializing Arrow Stream data."""
|
|
129
|
+
|
|
130
|
+
mimetype: ClassVar[str] = "application/vnd.apache.arrow.stream"
|
|
131
|
+
|
|
132
|
+
def loads(self, data: bytes) -> pa.Table:
|
|
133
|
+
try:
|
|
134
|
+
with pa.ipc.open_stream(data) as reader:
|
|
135
|
+
return reader.read_all()
|
|
136
|
+
except pa.ArrowException as e:
|
|
137
|
+
raise SerializationError(
|
|
138
|
+
message=f"Unable to deserialize as Arrow stream: {data!r}",
|
|
139
|
+
errors=(e,),
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
def dumps(self, data: Any) -> bytes:
|
|
143
|
+
raise SerializationError(
|
|
144
|
+
message="Elasticsearch does not accept Arrow input data"
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
|
|
117
148
|
DEFAULT_SERIALIZERS: Dict[str, Serializer] = {
|
|
118
149
|
JsonSerializer.mimetype: JsonSerializer(),
|
|
119
150
|
MapboxVectorTileSerializer.mimetype: MapboxVectorTileSerializer(),
|
|
@@ -122,6 +153,9 @@ DEFAULT_SERIALIZERS: Dict[str, Serializer] = {
|
|
|
122
153
|
CompatibilityModeNdjsonSerializer.mimetype: CompatibilityModeNdjsonSerializer(),
|
|
123
154
|
}
|
|
124
155
|
|
|
156
|
+
if pa is not None:
|
|
157
|
+
DEFAULT_SERIALIZERS[PyArrowSerializer.mimetype] = PyArrowSerializer()
|
|
158
|
+
|
|
125
159
|
# Alias for backwards compatibility
|
|
126
160
|
JSONSerializer = JsonSerializer
|
|
127
161
|
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: elasticsearch
|
|
3
|
+
Version: 8.15.0
|
|
4
|
+
Summary: Python client for Elasticsearch
|
|
5
|
+
Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
|
|
6
|
+
Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
|
|
7
|
+
Project-URL: Issue Tracker, https://github.com/elastic/elasticsearch-py/issues
|
|
8
|
+
Project-URL: Source Code, https://github.com/elastic/elasticsearch-py
|
|
9
|
+
Author-email: Elastic Client Library Maintainers <client-libs@elastic.co>
|
|
10
|
+
Maintainer-email: Elastic Client Library Maintainers <client-libs@elastic.co>
|
|
11
|
+
License-Expression: Apache-2.0
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
License-File: NOTICE
|
|
14
|
+
Keywords: REST,client,elastic,elasticsearch,index,kibana,mapping,search
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Programming Language :: Python
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
28
|
+
Requires-Python: >=3.8
|
|
29
|
+
Requires-Dist: elastic-transport<9,>=8.13
|
|
30
|
+
Provides-Extra: async
|
|
31
|
+
Requires-Dist: aiohttp<4,>=3; extra == 'async'
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: aiohttp; extra == 'dev'
|
|
34
|
+
Requires-Dist: black; extra == 'dev'
|
|
35
|
+
Requires-Dist: build; extra == 'dev'
|
|
36
|
+
Requires-Dist: coverage; extra == 'dev'
|
|
37
|
+
Requires-Dist: isort; extra == 'dev'
|
|
38
|
+
Requires-Dist: jinja2; extra == 'dev'
|
|
39
|
+
Requires-Dist: mapbox-vector-tile; extra == 'dev'
|
|
40
|
+
Requires-Dist: nox; extra == 'dev'
|
|
41
|
+
Requires-Dist: numpy; extra == 'dev'
|
|
42
|
+
Requires-Dist: orjson; extra == 'dev'
|
|
43
|
+
Requires-Dist: pandas; extra == 'dev'
|
|
44
|
+
Requires-Dist: pyarrow; extra == 'dev'
|
|
45
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest-asyncio; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
48
|
+
Requires-Dist: python-dateutil; extra == 'dev'
|
|
49
|
+
Requires-Dist: pyyaml>=5.4; extra == 'dev'
|
|
50
|
+
Requires-Dist: requests<3,>=2; extra == 'dev'
|
|
51
|
+
Requires-Dist: simsimd; extra == 'dev'
|
|
52
|
+
Requires-Dist: twine; extra == 'dev'
|
|
53
|
+
Requires-Dist: unasync; extra == 'dev'
|
|
54
|
+
Provides-Extra: docs
|
|
55
|
+
Requires-Dist: sphinx; extra == 'docs'
|
|
56
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
|
|
57
|
+
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
|
|
58
|
+
Provides-Extra: orjson
|
|
59
|
+
Requires-Dist: orjson>=3; extra == 'orjson'
|
|
60
|
+
Provides-Extra: pyarrow
|
|
61
|
+
Requires-Dist: pyarrow>=1; extra == 'pyarrow'
|
|
62
|
+
Provides-Extra: requests
|
|
63
|
+
Requires-Dist: requests!=2.32.2,<3.0.0,>=2.4.0; extra == 'requests'
|
|
64
|
+
Provides-Extra: vectorstore-mmr
|
|
65
|
+
Requires-Dist: numpy>=1; extra == 'vectorstore-mmr'
|
|
66
|
+
Requires-Dist: simsimd>=3; extra == 'vectorstore-mmr'
|
|
67
|
+
Description-Content-Type: text/markdown
|
|
68
|
+
|
|
69
|
+
<p align="center">
|
|
70
|
+
<img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
|
|
71
|
+
</p>
|
|
72
|
+
|
|
73
|
+
# Elasticsearch Python Client
|
|
74
|
+
|
|
75
|
+
<p align="center">
|
|
76
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/elasticsearch" /></a>
|
|
77
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/elasticsearch" /></a>
|
|
78
|
+
<a href="https://anaconda.org/conda-forge/elasticsearch"><img alt="Conda Version" src="https://img.shields.io/conda/vn/conda-forge/elasticsearch" /></a>
|
|
79
|
+
<a href="https://pepy.tech/project/elasticsearch?versions=*"><img alt="Downloads" src="https://static.pepy.tech/badge/elasticsearch" /></a>
|
|
80
|
+
<br/>
|
|
81
|
+
<a href="https://github.com/elastic/elasticsearch-py/actions/workflows/ci.yml?query=workflow%3ACI"><img alt="Build Status on GitHub" src="https://github.com/elastic/elasticsearch-py/workflows/CI/badge.svg" /></a>
|
|
82
|
+
<a href="https://buildkite.com/elastic/elasticsearch-py-integration-tests"><img alt="Buildkite Status on Buildkite" src="https://badge.buildkite.com/68e22afcb2ea8f6dcc20834e3a5b5ab4431beee33d3bd751f3.svg" /></a>
|
|
83
|
+
<a href="https://elasticsearch-py.readthedocs.io"><img alt="Documentation Status" src="https://readthedocs.org/projects/elasticsearch-py/badge/?version=latest" /></a><br>
|
|
84
|
+
</p>
|
|
85
|
+
|
|
86
|
+
*The official Python client for Elasticsearch.*
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## Features
|
|
90
|
+
|
|
91
|
+
* Translating basic Python data types to and from JSON
|
|
92
|
+
* Configurable automatic discovery of cluster nodes
|
|
93
|
+
* Persistent connections
|
|
94
|
+
* Load balancing (with pluggable selection strategy) across available nodes
|
|
95
|
+
* Failed connection penalization (time based - failed connections won't be
|
|
96
|
+
retried until a timeout is reached)
|
|
97
|
+
* Support for TLS and HTTP authentication
|
|
98
|
+
* Thread safety across requests
|
|
99
|
+
* Pluggable architecture
|
|
100
|
+
* Helper functions for idiomatically using APIs together
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
## Installation
|
|
104
|
+
|
|
105
|
+
[Download the latest version of Elasticsearch](https://www.elastic.co/downloads/elasticsearch)
|
|
106
|
+
or
|
|
107
|
+
[sign-up](https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page)
|
|
108
|
+
for a free trial of Elastic Cloud.
|
|
109
|
+
|
|
110
|
+
Refer to the [Installation section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation)
|
|
111
|
+
of the getting started documentation.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## Connecting
|
|
115
|
+
|
|
116
|
+
Refer to the [Connecting section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_connecting)
|
|
117
|
+
of the getting started documentation.
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
## Usage
|
|
121
|
+
-----
|
|
122
|
+
|
|
123
|
+
* [Creating an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_creating_an_index)
|
|
124
|
+
* [Indexing a document](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_indexing_documents)
|
|
125
|
+
* [Getting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_getting_documents)
|
|
126
|
+
* [Searching documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_searching_documents)
|
|
127
|
+
* [Updating documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_updating_documents)
|
|
128
|
+
* [Deleting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_documents)
|
|
129
|
+
* [Deleting an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_an_index)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## Compatibility
|
|
133
|
+
|
|
134
|
+
Language clients are forward compatible; meaning that the clients support
|
|
135
|
+
communicating with greater or equal minor versions of Elasticsearch without
|
|
136
|
+
breaking. It does not mean that the clients automatically support new features
|
|
137
|
+
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
138
|
+
client version. For example, a 8.12 client version won't automatically support
|
|
139
|
+
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
140
|
+
is required for that. Elasticsearch language clients are only backwards
|
|
141
|
+
compatible with default distributions and without guarantees made.
|
|
142
|
+
|
|
143
|
+
| Elasticsearch Version | Elasticsearch-Python Branch | Supported |
|
|
144
|
+
| --------------------- | ------------------------ | --------- |
|
|
145
|
+
| main | main | |
|
|
146
|
+
| 8.x | 8.x | 8.x |
|
|
147
|
+
| 7.x | 7.x | 7.17 |
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
If you have a need to have multiple versions installed at the same time older
|
|
151
|
+
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
## Documentation
|
|
155
|
+
|
|
156
|
+
Documentation for the client is [available on elastic.co] and [Read the Docs].
|
|
157
|
+
|
|
158
|
+
[available on elastic.co]: https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html
|
|
159
|
+
[Read the Docs]: https://elasticsearch-py.readthedocs.io
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
## Feedback 🗣️
|
|
163
|
+
|
|
164
|
+
The engineering team here at Elastic is looking for developers to participate in
|
|
165
|
+
research and feedback sessions to learn more about how you use our Python client and
|
|
166
|
+
what improvements we can make to their design and your workflow. If you're interested in
|
|
167
|
+
sharing your insights into developer experience and language client design, please fill
|
|
168
|
+
out this [short form]. Depending on the number of responses we get, we may either
|
|
169
|
+
contact you for a 1:1 conversation or a focus group with other developers who use the
|
|
170
|
+
same client. Thank you in advance - your feedback is crucial to improving the user
|
|
171
|
+
experience for all Elasticsearch developers!
|
|
172
|
+
|
|
173
|
+
[short form]: https://forms.gle/bYZwDQXijfhfwshn9
|
|
174
|
+
|
|
175
|
+
## License
|
|
176
|
+
|
|
177
|
+
This software is licensed under the [Apache License 2.0](./LICENSE). See [NOTICE](./NOTICE).
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
elasticsearch/__init__.py,sha256=w5YnO16zjOi6loGJ8caUgSXsj3b-Y8OfF0BIddP2BiE,3289
|
|
2
|
+
elasticsearch/_otel.py,sha256=vODaHAu3wnMsy3k9xK_Zp6YDsQksDesfAFyk8KAX_kM,3276
|
|
3
|
+
elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
|
|
4
|
+
elasticsearch/_version.py,sha256=BMfxFJvQ9AbUDRPNnCCZVqEnz6XoksVXgjyt_vN5ZkI,814
|
|
5
|
+
elasticsearch/client.py,sha256=Zik8KKnpJBvbapk4BhZXC7PZiuZwWqtcmMARDNXMwlA,5213
|
|
6
|
+
elasticsearch/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
|
|
7
|
+
elasticsearch/exceptions.py,sha256=HHqidMTlLXRcNbo4gjsbhHsLfiV4JGg7tx1lXQndG98,4025
|
|
8
|
+
elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
elasticsearch/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
|
|
10
|
+
elasticsearch/transport.py,sha256=CxKo2USPQ-6q4x8Ckfq_dUFWhA1s98p75ghXc3breJI,2248
|
|
11
|
+
elasticsearch/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
12
|
+
elasticsearch/_async/helpers.py,sha256=vX2oGiYHO5raZJOnTMEX9hViPNy1YW26IeS60gbhNno,22285
|
|
13
|
+
elasticsearch/_async/client/__init__.py,sha256=ZW8dIhMYmszOvcFiVdlxIHAcGwBXXVkPQptbIxezbyg,243294
|
|
14
|
+
elasticsearch/_async/client/_base.py,sha256=wDJIs-4Z_fDBF0_XvfCmfSuyL6Oh8I2nSGDZyP91XCU,15531
|
|
15
|
+
elasticsearch/_async/client/async_search.py,sha256=lxXkg9zN1wABx-yBczMUEkOAzGnfKaPbfwzX-r780Q0,30535
|
|
16
|
+
elasticsearch/_async/client/autoscaling.py,sha256=HCpGPgztl69Aa1GcGjCc1X8UNLEOLEMft8-vvGrFLxk,7741
|
|
17
|
+
elasticsearch/_async/client/cat.py,sha256=yUpg3FLeI36M-8k5RswaHlUNDUmLdILS5F6CqaRZQh0,138697
|
|
18
|
+
elasticsearch/_async/client/ccr.py,sha256=zyShAQqlrYDr2DTafRBQr7TCU8zRJPFrCHPB0bd9bKk,36972
|
|
19
|
+
elasticsearch/_async/client/cluster.py,sha256=yR_eUNhJUz_VjqIB_s5YRkRe530NDWoh48fffkUUj3Y,50435
|
|
20
|
+
elasticsearch/_async/client/connector.py,sha256=Y-I_OQUM8ylOXVNRnl_aCdKRZsGwQNtn9kOtYMoEUYM,57603
|
|
21
|
+
elasticsearch/_async/client/dangling_indices.py,sha256=rrSfpvgeExbePpm3azj5XsKGex3KPaeyPFdHfVYYEX4,6934
|
|
22
|
+
elasticsearch/_async/client/enrich.py,sha256=KsufQwZuMlaDphlARxzkAr5Jm-qw-o8w8XTFt8Z6zSc,9660
|
|
23
|
+
elasticsearch/_async/client/eql.py,sha256=rKEIOpUVKz9rekDcD3daa7gz9d7pE_eJ1gSrp-UproA,13138
|
|
24
|
+
elasticsearch/_async/client/esql.py,sha256=-MA2k0SDmDHlhmpKV_xlx_9QF1LZrp6Ld7cir2g7uhE,4569
|
|
25
|
+
elasticsearch/_async/client/features.py,sha256=Sino6KgXZ7a9qIU27N2jJZ3TW7Fwih-OXpyB5WjDpHc,3550
|
|
26
|
+
elasticsearch/_async/client/fleet.py,sha256=VR2FuxpXzdusIipHVWA77fWsXsLC0udd8x6A2N_oXtw,31148
|
|
27
|
+
elasticsearch/_async/client/graph.py,sha256=nKsUtmn6S8uY-QGmRJxGPM4iFFCXEmr6uX9T09IzZ1I,4594
|
|
28
|
+
elasticsearch/_async/client/ilm.py,sha256=iUdqC2r6QP4_nWxK6pKbHuLaxsDpNVf90Mv7Ejrpxq8,23968
|
|
29
|
+
elasticsearch/_async/client/indices.py,sha256=5d9akN9sCAl68KdEcqmpDRCVpgSPclVJbaJcel2fucg,216172
|
|
30
|
+
elasticsearch/_async/client/inference.py,sha256=10uV4k_zGrnVclfYCCZjndNCC6pkZHDunRCRLEPaWCA,12260
|
|
31
|
+
elasticsearch/_async/client/ingest.py,sha256=ASe4P7DjyYif5az_bfVEk6VF6LJg3AVhPgAtOAPHezI,15633
|
|
32
|
+
elasticsearch/_async/client/license.py,sha256=jVnF9pU6F1VIjUdVrJ8S2vs-2ohk1sZ-70RYXCObBJY,12884
|
|
33
|
+
elasticsearch/_async/client/logstash.py,sha256=vscXPt2FeXExBSj-7yghTczVxoQl8nkZ05OdsbYDxyA,6136
|
|
34
|
+
elasticsearch/_async/client/migration.py,sha256=RFeEvSZibAROr3HiheY9XvGyyeLskfImhtPIlnts9c0,5331
|
|
35
|
+
elasticsearch/_async/client/ml.py,sha256=DTDJDEK-mCP7aJPx_CWuPJn96XZWHJzqqLZAWMms5ew,258958
|
|
36
|
+
elasticsearch/_async/client/monitoring.py,sha256=ZR8DvrTRfMuPebZ6A5JHGW2UFhR_-LbAUftF9oZbdug,3818
|
|
37
|
+
elasticsearch/_async/client/nodes.py,sha256=D7QVUvpcAE9HqMu0T6hoMPiEaf_B5VsDXZ6jAhC3LL8,24090
|
|
38
|
+
elasticsearch/_async/client/query_rules.py,sha256=gdPhpPRAKZxKNTAfy1np4iTlWOEFMG28X1WJyIVwD20,14821
|
|
39
|
+
elasticsearch/_async/client/rollup.py,sha256=JRO7D5qpdaCel6xWHaS3cHErBYInzLnsHVzNilhIaAY,20828
|
|
40
|
+
elasticsearch/_async/client/search_application.py,sha256=f699vpX2Ma9uzyEaT6BtHzlky8QUMO7eH6x129Tctw4,15306
|
|
41
|
+
elasticsearch/_async/client/searchable_snapshots.py,sha256=NNWkJd861hrsMr6-xTv5qJGQcDfok0WRxeD3PFspWw4,11636
|
|
42
|
+
elasticsearch/_async/client/security.py,sha256=Uvc2xEwPrR7Y13N5cp05gsztBJm9ts5Fr32e5V8AuKI,151051
|
|
43
|
+
elasticsearch/_async/client/shutdown.py,sha256=VLUD0VL065THNNuXB4lrA66aAPb_v2WW5oJfJNlfJcs,11350
|
|
44
|
+
elasticsearch/_async/client/slm.py,sha256=OsxIVx_MFdegv0-EGBtGJuiKtdSkySmf88Mg-KhAsmo,16120
|
|
45
|
+
elasticsearch/_async/client/snapshot.py,sha256=Fyyx-LjjPqbcJ3CQ_JHqlydrXwUb4clVo7QHbDuMBsk,37029
|
|
46
|
+
elasticsearch/_async/client/sql.py,sha256=_HcuH6cNlaIz0HBqM_eoEQ1gj-e3XXaVhp8_ieNIx7w,17830
|
|
47
|
+
elasticsearch/_async/client/ssl.py,sha256=7CLG1TweMXYj1LCS2HhQgWTB190v4toiykjSVAmblto,2261
|
|
48
|
+
elasticsearch/_async/client/synonyms.py,sha256=6nhJrvqWM1BBzdBM-2dDcYOUw8dYVtWj-7VEU4tHqEs,13797
|
|
49
|
+
elasticsearch/_async/client/tasks.py,sha256=LtoYpPBeYS-ZaIB4YPKqKuQsF6OD7avkTl21-ZKKxyc,9043
|
|
50
|
+
elasticsearch/_async/client/text_structure.py,sha256=Co6Tiso1sa_qJmXfcc3S9h0UcuiUV8VLnvBZHY5D5Vo,12046
|
|
51
|
+
elasticsearch/_async/client/transform.py,sha256=tAy4zfa84f0eqNenN2rQAToDW6ftNydXhXeOjyMjmsU,42181
|
|
52
|
+
elasticsearch/_async/client/utils.py,sha256=JwFOxo-YrRg4exXlpiUuOG1uNtJKP_VeK0HgrCJSN98,1367
|
|
53
|
+
elasticsearch/_async/client/watcher.py,sha256=Yybc7Kn4Q0qTTf6frYhfhQIDg3-AT8VTWLcu-irFEpQ,26482
|
|
54
|
+
elasticsearch/_async/client/xpack.py,sha256=yyRUufXjg1Yd9ehPPYQpeR2zlUHgUhq0QzJNxyw3CDo,4554
|
|
55
|
+
elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
56
|
+
elasticsearch/_sync/client/__init__.py,sha256=Lf6Gl0xofAk0WDDX9AQnH-Mq8Anz-d_hmM_QlB6lDDg,242663
|
|
57
|
+
elasticsearch/_sync/client/_base.py,sha256=LesRKQzvgstEPn-hzoY7PBq_4hAyPCzjGiUggGn-fB8,15461
|
|
58
|
+
elasticsearch/_sync/client/async_search.py,sha256=hCWz3xxSoQsYbP-b2j_0mrYcyoVLtdkwY6iR5psn-fU,30487
|
|
59
|
+
elasticsearch/_sync/client/autoscaling.py,sha256=x1aRaOw5ztEYmuzaiTPVyTrgL84eI1ta15MMv_bd2Fk,7693
|
|
60
|
+
elasticsearch/_sync/client/cat.py,sha256=4qegFQXRQX5p-Ncs62TEaF5fWLUdgbVWV2bF5-WKTdc,138385
|
|
61
|
+
elasticsearch/_sync/client/ccr.py,sha256=kOUErz201dJdqfubej10tHJ8z-_iB1LnL_gA-qBYbB0,36816
|
|
62
|
+
elasticsearch/_sync/client/cluster.py,sha256=0Bm2shIYq4_I4qTMhXZShR73ezStlFneWsSuh6HzFOs,50243
|
|
63
|
+
elasticsearch/_sync/client/connector.py,sha256=Mebrr1YifiQvNXfYwuKp71UKIU5FcJWsj_f_BaulZlU,57303
|
|
64
|
+
elasticsearch/_sync/client/dangling_indices.py,sha256=81dHvN6m6d3nyDaOm3O9T6zA3m9qE7PIm5RrNodjLAc,6898
|
|
65
|
+
elasticsearch/_sync/client/enrich.py,sha256=NPEY74siYR251SsfG_XrYKxASBOt8YMSWVVepFObRF4,9600
|
|
66
|
+
elasticsearch/_sync/client/eql.py,sha256=ySS7YNv9dhHfm0VpBdehNfd0dP6-7BdnEbbL0SfRlKA,13090
|
|
67
|
+
elasticsearch/_sync/client/esql.py,sha256=FZEsE1gV4Vs2uI8z30N3WYaUCYnC5tGe_bf5o3l3oFo,4557
|
|
68
|
+
elasticsearch/_sync/client/features.py,sha256=lW1iL9gtjCr9T6CwQftBh2yqlF9RqzD6A77MjyEP-Lk,3526
|
|
69
|
+
elasticsearch/_sync/client/fleet.py,sha256=hJU9MNjJL2b_BMVCKRl9vM-_KHV36Wx0wQR_CTcwoPY,31112
|
|
70
|
+
elasticsearch/_sync/client/graph.py,sha256=kcIhR9oUChXv56ZhYi1smf7uqPctw1zVA5HkqHyl1yU,4582
|
|
71
|
+
elasticsearch/_sync/client/ilm.py,sha256=RAqIvqPOAj1j9v6wxJrDu8wlOg6NVC-QV6sZpvZkf2U,23836
|
|
72
|
+
elasticsearch/_sync/client/indices.py,sha256=zXiA6wXajLNszzB4r8Rgn_cC7fdkjsfjCqlyRY0g3Ms,215464
|
|
73
|
+
elasticsearch/_sync/client/inference.py,sha256=Du0zu4NLBn5tlrg33yljtPmIKRRmbZ63vfKIKXj0hJc,12212
|
|
74
|
+
elasticsearch/_sync/client/ingest.py,sha256=z79qZMh_vO5rkAR-zciMyYwhwwzRVkSH8cQ_LNHhnQE,15561
|
|
75
|
+
elasticsearch/_sync/client/license.py,sha256=B_cnopns9c0bEnJeQtIBKaZ79srMfiN206MMw3ibOLE,12800
|
|
76
|
+
elasticsearch/_sync/client/logstash.py,sha256=ClY5jx7UYR5_sdxnanVCxEchUZKqxO6bJDB5JDdWHk0,6100
|
|
77
|
+
elasticsearch/_sync/client/migration.py,sha256=Mq5gzEqTZnyoviosqFuaYQDS6GlCIZP9npcd6T9nIEY,5295
|
|
78
|
+
elasticsearch/_sync/client/ml.py,sha256=CHJlGhFfShQJej7CXW_o-Fph3mbSH2Mqh9gGPbvZRJk,258082
|
|
79
|
+
elasticsearch/_sync/client/monitoring.py,sha256=VjEst2xeRbP2nUHfrmYYuTRZzZYggMwosS538rjnXLc,3806
|
|
80
|
+
elasticsearch/_sync/client/nodes.py,sha256=5P2pikLHHXb1ULPofYiyt4wO2Y7xyer2Pc91t6Rs79Y,24006
|
|
81
|
+
elasticsearch/_sync/client/query_rules.py,sha256=nuXojRIHKB-8yo_QIyR0DgMfZ3vroewnPBKs0T_JWBI,14737
|
|
82
|
+
elasticsearch/_sync/client/rollup.py,sha256=jdlkpD1B1eQoJcZEQ5TqrF9C8lZRvNTX_rP-JHgb4QU,20732
|
|
83
|
+
elasticsearch/_sync/client/search_application.py,sha256=m1lE1vSfAWwWapubDFQDsa6fQDXr6Ra3ziSCV82_ayQ,15210
|
|
84
|
+
elasticsearch/_sync/client/searchable_snapshots.py,sha256=1grNLwd7G6nNVSzWuFM43QUQdakyWIKG2-Y0O0j3pRU,11588
|
|
85
|
+
elasticsearch/_sync/client/security.py,sha256=0IFgj3LvvAVitqTjW-tPGBHyB_76grMFnlcx64WVNLM,150391
|
|
86
|
+
elasticsearch/_sync/client/shutdown.py,sha256=XmHwRxJTaETA7w2kc4i98WcMYGaQU04h-kXhMmgeSK0,11314
|
|
87
|
+
elasticsearch/_sync/client/slm.py,sha256=ALtxLp0IuTGdrrW4scuFedEwU_cx4YeblgqMgQGyDAo,16012
|
|
88
|
+
elasticsearch/_sync/client/snapshot.py,sha256=eToPd2PMiMYArXTRbL61gtC3U36CIZUYp8ci6c0qnvQ,36897
|
|
89
|
+
elasticsearch/_sync/client/sql.py,sha256=JeH49RlmMQXQL3ta4b4dqzwThz4WQn2YBxyHXPf7k1I,17758
|
|
90
|
+
elasticsearch/_sync/client/ssl.py,sha256=nfntq17En9-UbQNIRrahMc2nktOo3AdJfB2FFZwSBRM,2249
|
|
91
|
+
elasticsearch/_sync/client/synonyms.py,sha256=jOaGPwqj-C1uQ67v8PMXC0P8DFRrJ1qoO0rXnwzzonY,13713
|
|
92
|
+
elasticsearch/_sync/client/tasks.py,sha256=evkBejBfnn5nDGQoowM1v_DRtbKUNDDkJRD0ATWXJOg,9007
|
|
93
|
+
elasticsearch/_sync/client/text_structure.py,sha256=Kk1XwGBy_9sQmJIqea-GA60xF9XihrQWn57gvZcQzLM,12022
|
|
94
|
+
elasticsearch/_sync/client/transform.py,sha256=NJpbjvuBCz79COAcrLPgNopplVNrAzZgwLsI9Vj8Hcw,42049
|
|
95
|
+
elasticsearch/_sync/client/utils.py,sha256=QKgoK3f87YPa5R5v7_TN8ib8JircbfI_R5RQXeEOKiU,17209
|
|
96
|
+
elasticsearch/_sync/client/watcher.py,sha256=c9vdf8CxpMj1fJtZx1sdDyGHW8COlrwNL6OcyNUmhO8,26350
|
|
97
|
+
elasticsearch/_sync/client/xpack.py,sha256=_vmMqtwkPaSIIef7kxjjL4AsokR_TKTJffGd8OHmxX0,4530
|
|
98
|
+
elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
|
|
99
|
+
elasticsearch/helpers/actions.py,sha256=oEVAqOjWBn9PLFPpdIEBb5BMKLgN4mi7EozEcOqb4us,30956
|
|
100
|
+
elasticsearch/helpers/errors.py,sha256=GKtlM2687mbBC8PjwQGClBFE4sD129Ytb6wkHZveFJw,1213
|
|
101
|
+
elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
|
|
102
|
+
elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
|
|
103
|
+
elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
104
|
+
elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
|
|
105
|
+
elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
|
|
106
|
+
elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=nh_wvNfWmZIjbTQ38FGSkUeF4_yDk48zukNuhOkq9bE,15322
|
|
107
|
+
elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
|
|
108
|
+
elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
109
|
+
elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
|
|
110
|
+
elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
|
|
111
|
+
elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=0Q1zoOrO51S6HXjXwkAePPVtCUGQz5lKN9NyRCso-GU,15220
|
|
112
|
+
elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=bTWLhdGkdXHS4SojSFHHAuBTUUC3OBdiyDqgQmHC_sI,16510
|
|
113
|
+
elasticsearch-8.15.0.dist-info/METADATA,sha256=E407m11uqcasfsI3c_q0t8LQpTFm31WszOquuCt0JoI,8723
|
|
114
|
+
elasticsearch-8.15.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
115
|
+
elasticsearch-8.15.0.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
|
|
116
|
+
elasticsearch-8.15.0.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
|
|
117
|
+
elasticsearch-8.15.0.dist-info/RECORD,,
|