elasticsearch 8.14.0__py3-none-any.whl → 8.15.1__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 +200 -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 +295 -317
- elasticsearch/_async/client/inference.py +42 -33
- elasticsearch/_async/client/ingest.py +197 -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 +11 -9
- 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 +24 -6
- elasticsearch/_sync/client/__init__.py +200 -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 +295 -317
- elasticsearch/_sync/client/inference.py +42 -33
- elasticsearch/_sync/client/ingest.py +197 -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 +11 -9
- 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/actions.py +120 -106
- elasticsearch/helpers/vectorstore/_async/vectorstore.py +36 -6
- elasticsearch/helpers/vectorstore/_sync/vectorstore.py +36 -6
- elasticsearch/serializer.py +34 -0
- elasticsearch-8.15.1.dist-info/METADATA +177 -0
- elasticsearch-8.15.1.dist-info/RECORD +117 -0
- {elasticsearch-8.14.0.dist-info → elasticsearch-8.15.1.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.1.dist-info/licenses}/LICENSE +0 -0
- {elasticsearch-8.14.0.dist-info → elasticsearch-8.15.1.dist-info/licenses}/NOTICE +0 -0
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
-
# license agreements. See the NOTICE file distributed with
|
|
3
|
-
# this work for additional information regarding copyright
|
|
4
|
-
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
-
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
-
# not use this file except in compliance with the License.
|
|
7
|
-
# You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing,
|
|
12
|
-
# software distributed under the License is distributed on an
|
|
13
|
-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
# KIND, either express or implied. See the License for the
|
|
15
|
-
# specific language governing permissions and limitations
|
|
16
|
-
# under the License.
|
|
17
|
-
|
|
18
|
-
import typing as t
|
|
19
|
-
|
|
20
|
-
from elastic_transport import ObjectApiResponse
|
|
21
|
-
|
|
22
|
-
from ._base import NamespacedClient
|
|
23
|
-
from .utils import SKIP_IN_PATH, _quote, _rewrite_parameters
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
class QueryRulesetClient(NamespacedClient):
|
|
27
|
-
|
|
28
|
-
@_rewrite_parameters()
|
|
29
|
-
def delete(
|
|
30
|
-
self,
|
|
31
|
-
*,
|
|
32
|
-
ruleset_id: str,
|
|
33
|
-
error_trace: t.Optional[bool] = None,
|
|
34
|
-
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
35
|
-
human: t.Optional[bool] = None,
|
|
36
|
-
pretty: t.Optional[bool] = None,
|
|
37
|
-
) -> ObjectApiResponse[t.Any]:
|
|
38
|
-
"""
|
|
39
|
-
Deletes a query ruleset.
|
|
40
|
-
|
|
41
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/delete-query-ruleset.html>`_
|
|
42
|
-
|
|
43
|
-
:param ruleset_id: The unique identifier of the query ruleset to delete
|
|
44
|
-
"""
|
|
45
|
-
if ruleset_id in SKIP_IN_PATH:
|
|
46
|
-
raise ValueError("Empty value passed for parameter 'ruleset_id'")
|
|
47
|
-
__path_parts: t.Dict[str, str] = {"ruleset_id": _quote(ruleset_id)}
|
|
48
|
-
__path = f'/_query_rules/{__path_parts["ruleset_id"]}'
|
|
49
|
-
__query: t.Dict[str, t.Any] = {}
|
|
50
|
-
if error_trace is not None:
|
|
51
|
-
__query["error_trace"] = error_trace
|
|
52
|
-
if filter_path is not None:
|
|
53
|
-
__query["filter_path"] = filter_path
|
|
54
|
-
if human is not None:
|
|
55
|
-
__query["human"] = human
|
|
56
|
-
if pretty is not None:
|
|
57
|
-
__query["pretty"] = pretty
|
|
58
|
-
__headers = {"accept": "application/json"}
|
|
59
|
-
return self.perform_request( # type: ignore[return-value]
|
|
60
|
-
"DELETE",
|
|
61
|
-
__path,
|
|
62
|
-
params=__query,
|
|
63
|
-
headers=__headers,
|
|
64
|
-
endpoint_id="query_ruleset.delete",
|
|
65
|
-
path_parts=__path_parts,
|
|
66
|
-
)
|
|
67
|
-
|
|
68
|
-
@_rewrite_parameters()
|
|
69
|
-
def get(
|
|
70
|
-
self,
|
|
71
|
-
*,
|
|
72
|
-
ruleset_id: str,
|
|
73
|
-
error_trace: t.Optional[bool] = None,
|
|
74
|
-
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
75
|
-
human: t.Optional[bool] = None,
|
|
76
|
-
pretty: t.Optional[bool] = None,
|
|
77
|
-
) -> ObjectApiResponse[t.Any]:
|
|
78
|
-
"""
|
|
79
|
-
Returns the details about a query ruleset.
|
|
80
|
-
|
|
81
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/get-query-ruleset.html>`_
|
|
82
|
-
|
|
83
|
-
:param ruleset_id: The unique identifier of the query ruleset
|
|
84
|
-
"""
|
|
85
|
-
if ruleset_id in SKIP_IN_PATH:
|
|
86
|
-
raise ValueError("Empty value passed for parameter 'ruleset_id'")
|
|
87
|
-
__path_parts: t.Dict[str, str] = {"ruleset_id": _quote(ruleset_id)}
|
|
88
|
-
__path = f'/_query_rules/{__path_parts["ruleset_id"]}'
|
|
89
|
-
__query: t.Dict[str, t.Any] = {}
|
|
90
|
-
if error_trace is not None:
|
|
91
|
-
__query["error_trace"] = error_trace
|
|
92
|
-
if filter_path is not None:
|
|
93
|
-
__query["filter_path"] = filter_path
|
|
94
|
-
if human is not None:
|
|
95
|
-
__query["human"] = human
|
|
96
|
-
if pretty is not None:
|
|
97
|
-
__query["pretty"] = pretty
|
|
98
|
-
__headers = {"accept": "application/json"}
|
|
99
|
-
return self.perform_request( # type: ignore[return-value]
|
|
100
|
-
"GET",
|
|
101
|
-
__path,
|
|
102
|
-
params=__query,
|
|
103
|
-
headers=__headers,
|
|
104
|
-
endpoint_id="query_ruleset.get",
|
|
105
|
-
path_parts=__path_parts,
|
|
106
|
-
)
|
|
107
|
-
|
|
108
|
-
@_rewrite_parameters(
|
|
109
|
-
parameter_aliases={"from": "from_"},
|
|
110
|
-
)
|
|
111
|
-
def list(
|
|
112
|
-
self,
|
|
113
|
-
*,
|
|
114
|
-
error_trace: t.Optional[bool] = None,
|
|
115
|
-
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
116
|
-
from_: t.Optional[int] = None,
|
|
117
|
-
human: t.Optional[bool] = None,
|
|
118
|
-
pretty: t.Optional[bool] = None,
|
|
119
|
-
size: t.Optional[int] = None,
|
|
120
|
-
) -> ObjectApiResponse[t.Any]:
|
|
121
|
-
"""
|
|
122
|
-
Lists query rulesets.
|
|
123
|
-
|
|
124
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/list-query-rulesets.html>`_
|
|
125
|
-
|
|
126
|
-
:param from_: Starting offset (default: 0)
|
|
127
|
-
:param size: specifies a max number of results to get
|
|
128
|
-
"""
|
|
129
|
-
__path_parts: t.Dict[str, str] = {}
|
|
130
|
-
__path = "/_query_rules"
|
|
131
|
-
__query: t.Dict[str, t.Any] = {}
|
|
132
|
-
if error_trace is not None:
|
|
133
|
-
__query["error_trace"] = error_trace
|
|
134
|
-
if filter_path is not None:
|
|
135
|
-
__query["filter_path"] = filter_path
|
|
136
|
-
if from_ is not None:
|
|
137
|
-
__query["from"] = from_
|
|
138
|
-
if human is not None:
|
|
139
|
-
__query["human"] = human
|
|
140
|
-
if pretty is not None:
|
|
141
|
-
__query["pretty"] = pretty
|
|
142
|
-
if size is not None:
|
|
143
|
-
__query["size"] = size
|
|
144
|
-
__headers = {"accept": "application/json"}
|
|
145
|
-
return self.perform_request( # type: ignore[return-value]
|
|
146
|
-
"GET",
|
|
147
|
-
__path,
|
|
148
|
-
params=__query,
|
|
149
|
-
headers=__headers,
|
|
150
|
-
endpoint_id="query_ruleset.list",
|
|
151
|
-
path_parts=__path_parts,
|
|
152
|
-
)
|
|
153
|
-
|
|
154
|
-
@_rewrite_parameters(
|
|
155
|
-
body_fields=("rules",),
|
|
156
|
-
)
|
|
157
|
-
def put(
|
|
158
|
-
self,
|
|
159
|
-
*,
|
|
160
|
-
ruleset_id: str,
|
|
161
|
-
rules: t.Optional[t.Sequence[t.Mapping[str, t.Any]]] = None,
|
|
162
|
-
error_trace: t.Optional[bool] = None,
|
|
163
|
-
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
164
|
-
human: t.Optional[bool] = None,
|
|
165
|
-
pretty: t.Optional[bool] = None,
|
|
166
|
-
body: t.Optional[t.Dict[str, t.Any]] = None,
|
|
167
|
-
) -> ObjectApiResponse[t.Any]:
|
|
168
|
-
"""
|
|
169
|
-
Creates or updates a query ruleset.
|
|
170
|
-
|
|
171
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/put-query-ruleset.html>`_
|
|
172
|
-
|
|
173
|
-
:param ruleset_id: The unique identifier of the query ruleset to be created or
|
|
174
|
-
updated
|
|
175
|
-
:param rules:
|
|
176
|
-
"""
|
|
177
|
-
if ruleset_id in SKIP_IN_PATH:
|
|
178
|
-
raise ValueError("Empty value passed for parameter 'ruleset_id'")
|
|
179
|
-
if rules is None and body is None:
|
|
180
|
-
raise ValueError("Empty value passed for parameter 'rules'")
|
|
181
|
-
__path_parts: t.Dict[str, str] = {"ruleset_id": _quote(ruleset_id)}
|
|
182
|
-
__path = f'/_query_rules/{__path_parts["ruleset_id"]}'
|
|
183
|
-
__query: t.Dict[str, t.Any] = {}
|
|
184
|
-
__body: t.Dict[str, t.Any] = body if body is not None else {}
|
|
185
|
-
if error_trace is not None:
|
|
186
|
-
__query["error_trace"] = error_trace
|
|
187
|
-
if filter_path is not None:
|
|
188
|
-
__query["filter_path"] = filter_path
|
|
189
|
-
if human is not None:
|
|
190
|
-
__query["human"] = human
|
|
191
|
-
if pretty is not None:
|
|
192
|
-
__query["pretty"] = pretty
|
|
193
|
-
if not __body:
|
|
194
|
-
if rules is not None:
|
|
195
|
-
__body["rules"] = rules
|
|
196
|
-
__headers = {"accept": "application/json", "content-type": "application/json"}
|
|
197
|
-
return self.perform_request( # type: ignore[return-value]
|
|
198
|
-
"PUT",
|
|
199
|
-
__path,
|
|
200
|
-
params=__query,
|
|
201
|
-
headers=__headers,
|
|
202
|
-
body=__body,
|
|
203
|
-
endpoint_id="query_ruleset.put",
|
|
204
|
-
path_parts=__path_parts,
|
|
205
|
-
)
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: elasticsearch
|
|
3
|
-
Version: 8.14.0
|
|
4
|
-
Summary: Python client for Elasticsearch
|
|
5
|
-
Home-page: https://github.com/elastic/elasticsearch-py
|
|
6
|
-
Author: Elastic Client Library Maintainers
|
|
7
|
-
Author-email: client-libs@elastic.co
|
|
8
|
-
License: Apache-2.0
|
|
9
|
-
Project-URL: Documentation, https://elasticsearch-py.readthedocs.io
|
|
10
|
-
Project-URL: Source Code, https://github.com/elastic/elasticsearch-py
|
|
11
|
-
Project-URL: Issue Tracker, https://github.com/elastic/elasticsearch-py/issues
|
|
12
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Operating System :: OS Independent
|
|
16
|
-
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
|
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
26
|
-
Requires-Python: >=3.7
|
|
27
|
-
Description-Content-Type: text/x-rst
|
|
28
|
-
License-File: LICENSE
|
|
29
|
-
License-File: NOTICE
|
|
30
|
-
Requires-Dist: elastic-transport <9,>=8.13
|
|
31
|
-
Provides-Extra: async
|
|
32
|
-
Requires-Dist: aiohttp <4,>=3 ; extra == 'async'
|
|
33
|
-
Provides-Extra: orjson
|
|
34
|
-
Requires-Dist: orjson >=3 ; extra == 'orjson'
|
|
35
|
-
Provides-Extra: requests
|
|
36
|
-
Requires-Dist: requests !=2.32.2,<3.0.0,>=2.4.0 ; extra == 'requests'
|
|
37
|
-
Provides-Extra: vectorstore_mmr
|
|
38
|
-
Requires-Dist: numpy >=1 ; extra == 'vectorstore_mmr'
|
|
39
|
-
Requires-Dist: simsimd >=3 ; extra == 'vectorstore_mmr'
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
Elasticsearch Python Client
|
|
43
|
-
===========================
|
|
44
|
-
|
|
45
|
-
.. image:: https://img.shields.io/pypi/v/elasticsearch
|
|
46
|
-
:target: https://pypi.org/project/elasticsearch
|
|
47
|
-
|
|
48
|
-
.. image:: https://img.shields.io/conda/vn/conda-forge/elasticsearch?color=blue
|
|
49
|
-
:target: https://anaconda.org/conda-forge/elasticsearch
|
|
50
|
-
|
|
51
|
-
.. image:: https://static.pepy.tech/badge/elasticsearch
|
|
52
|
-
:target: https://pepy.tech/project/elasticsearch?versions=*
|
|
53
|
-
|
|
54
|
-
.. image:: https://badge.buildkite.com/68e22afcb2ea8f6dcc20834e3a5b5ab4431beee33d3bd751f3.svg
|
|
55
|
-
:target: https://buildkite.com/elastic/elasticsearch-py-integration-tests
|
|
56
|
-
|
|
57
|
-
.. image:: https://readthedocs.org/projects/elasticsearch-py/badge/?version=latest&style=flat
|
|
58
|
-
:target: https://elasticsearch-py.readthedocs.io
|
|
59
|
-
|
|
60
|
-
*The official Python client for Elasticsearch.*
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Features
|
|
64
|
-
--------
|
|
65
|
-
|
|
66
|
-
* Translating basic Python data types to and from JSON
|
|
67
|
-
* Configurable automatic discovery of cluster nodes
|
|
68
|
-
* Persistent connections
|
|
69
|
-
* Load balancing (with pluggable selection strategy) across available nodes
|
|
70
|
-
* Failed connection penalization (time based - failed connections won't be
|
|
71
|
-
retried until a timeout is reached)
|
|
72
|
-
* Support for TLS and HTTP authentication
|
|
73
|
-
* Thread safety across requests
|
|
74
|
-
* Pluggable architecture
|
|
75
|
-
* Helper functions for idiomatically using APIs together
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
Installation
|
|
79
|
-
------------
|
|
80
|
-
|
|
81
|
-
`Download the latest version of Elasticsearch <https://www.elastic.co/downloads/elasticsearch>`_
|
|
82
|
-
or
|
|
83
|
-
`sign-up <https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page>`_
|
|
84
|
-
for a free trial of Elastic Cloud.
|
|
85
|
-
|
|
86
|
-
Refer to the `Installation section <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation>`_
|
|
87
|
-
of the getting started documentation.
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Connecting
|
|
91
|
-
----------
|
|
92
|
-
|
|
93
|
-
Refer to the `Connecting section <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_connecting>`_
|
|
94
|
-
of the getting started documentation.
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
Usage
|
|
98
|
-
-----
|
|
99
|
-
|
|
100
|
-
* `Creating an index <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_creating_an_index>`_
|
|
101
|
-
* `Indexing a document <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_indexing_documents>`_
|
|
102
|
-
* `Getting documents <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_getting_documents>`_
|
|
103
|
-
* `Searching documents <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_searching_documents>`_
|
|
104
|
-
* `Updating documents <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_updating_documents>`_
|
|
105
|
-
* `Deleting documents <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_documents>`_
|
|
106
|
-
* `Deleting an index <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_an_index>`_
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
Compatibility
|
|
110
|
-
-------------
|
|
111
|
-
|
|
112
|
-
Language clients are forward compatible; meaning that the clients support
|
|
113
|
-
communicating with greater or equal minor versions of Elasticsearch without
|
|
114
|
-
breaking. It does not mean that the clients automatically support new features
|
|
115
|
-
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
116
|
-
client version. For example, a 8.12 client version won't automatically support
|
|
117
|
-
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
118
|
-
is required for that. Elasticsearch language clients are only backwards
|
|
119
|
-
compatible with default distributions and without guarantees made.
|
|
120
|
-
|
|
121
|
-
+-----------------------+-------------------------+-----------+
|
|
122
|
-
| Elasticsearch version | elasticsearch-py branch | Supported |
|
|
123
|
-
+=======================+=========================+===========+
|
|
124
|
-
| main | main | |
|
|
125
|
-
+-----------------------+-------------------------+-----------+
|
|
126
|
-
| 8.x | 8.x | 8.x |
|
|
127
|
-
+-----------------------+-------------------------+-----------+
|
|
128
|
-
| 7.x | 7.x | 7.17 |
|
|
129
|
-
+-----------------------+-------------------------+-----------+
|
|
130
|
-
|
|
131
|
-
If you have a need to have multiple versions installed at the same time older
|
|
132
|
-
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
Documentation
|
|
136
|
-
-------------
|
|
137
|
-
|
|
138
|
-
Documentation for the client is `available on elastic.co`_ and `Read the Docs`_.
|
|
139
|
-
|
|
140
|
-
.. _available on elastic.co: https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html
|
|
141
|
-
.. _Read the Docs: https://elasticsearch-py.readthedocs.io
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
Feedback 🗣️
|
|
145
|
-
-----------
|
|
146
|
-
|
|
147
|
-
The engineering team here at Elastic is looking for developers to participate in
|
|
148
|
-
research and feedback sessions to learn more about how you use our Python client and
|
|
149
|
-
what improvements we can make to their design and your workflow. If you're interested in
|
|
150
|
-
sharing your insights into developer experience and language client design, please fill
|
|
151
|
-
out this `short form`_. Depending on the number of responses we get, we may either
|
|
152
|
-
contact you for a 1:1 conversation or a focus group with other developers who use the
|
|
153
|
-
same client. Thank you in advance - your feedback is crucial to improving the user
|
|
154
|
-
experience for all Elasticsearch developers!
|
|
155
|
-
|
|
156
|
-
.. _short form: https://forms.gle/bYZwDQXijfhfwshn9
|
|
157
|
-
|
|
158
|
-
License
|
|
159
|
-
-------
|
|
160
|
-
|
|
161
|
-
Copyright 2023 Elasticsearch B.V. Licensed under the Apache License, Version 2.0.
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
elasticsearch/__init__.py,sha256=w5YnO16zjOi6loGJ8caUgSXsj3b-Y8OfF0BIddP2BiE,3289
|
|
2
|
-
elasticsearch/_otel.py,sha256=9nMvDwSz_BephEQmkETCmEdA_6YNtj_CJQyxIwOzEGo,3406
|
|
3
|
-
elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
|
|
4
|
-
elasticsearch/_version.py,sha256=4E1mhy2IjXbXRzveYUMdi4X9COA7A67Nek0JpAft83A,814
|
|
5
|
-
elasticsearch/client.py,sha256=p4naAgAPs_B9laux-aC-bpZNvbu9fvrpicBvLRlp_yw,5120
|
|
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=2Rgl17sRUL4HUy30ktFpnoXthCDOn7Mlu6U6ud_2B2U,7095
|
|
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=k0XEwIvFyjxuaJSBxoob8IdCmPBDEEC1MVwUqrabUbQ,240739
|
|
14
|
-
elasticsearch/_async/client/_base.py,sha256=wDJIs-4Z_fDBF0_XvfCmfSuyL6Oh8I2nSGDZyP91XCU,15531
|
|
15
|
-
elasticsearch/_async/client/async_search.py,sha256=ImBdtlSOfTwE_fJ-RVez5KnaMOmAwvKC650yCXO8AyI,29238
|
|
16
|
-
elasticsearch/_async/client/autoscaling.py,sha256=8IVl2U9IHRt9k-0qoo2h5NIQ_u4WRRlgeWNZLtHX4tk,7741
|
|
17
|
-
elasticsearch/_async/client/cat.py,sha256=t2x5Eb-cxosrQFNUHLChPtwyiFXla3wnzqt6p5wcM7E,116630
|
|
18
|
-
elasticsearch/_async/client/ccr.py,sha256=ni0qvhw9-B7_JaLKkPkPPtdLWEs-cqoGep-O_feeGmQ,37130
|
|
19
|
-
elasticsearch/_async/client/cluster.py,sha256=Rss4MBUos-rgAFI7T_MO5s2A940aK4fJg2xSSiRcZqA,47992
|
|
20
|
-
elasticsearch/_async/client/dangling_indices.py,sha256=ocvsadNjnj8OAIMCAEmB_7drpws3MBkNtrky4c5DgZ8,6994
|
|
21
|
-
elasticsearch/_async/client/enrich.py,sha256=1oW8cq1VgBnUUhXGNdh9605AP0hsFEBy1ArpELJ3b6A,9657
|
|
22
|
-
elasticsearch/_async/client/eql.py,sha256=rUlS8DcHuZBenn5Hub_dNSLgYEkEsDwYheVK_1LPYqQ,13151
|
|
23
|
-
elasticsearch/_async/client/esql.py,sha256=CwdNY4uLghXEDUStZ250M79RWBlBW5YXn_MILdrcaHA,4568
|
|
24
|
-
elasticsearch/_async/client/features.py,sha256=4YXIofyIx3bFPFoC6IMYggN2kFfa0XlYrY9AJHgmMFI,3550
|
|
25
|
-
elasticsearch/_async/client/fleet.py,sha256=kqjr9dUtV1D7Z231akw0XQC4KvWN77hSUu_4wkeUJcM,30938
|
|
26
|
-
elasticsearch/_async/client/graph.py,sha256=JDgpLlDo9KjOsI3CECqxQGtO4gcYJkmDVJCwf-Fc3a8,4578
|
|
27
|
-
elasticsearch/_async/client/ilm.py,sha256=JFAIj6iiZ-fZxPaXekLkhA4sS1dnxj4eu0dtXMVvh2g,23668
|
|
28
|
-
elasticsearch/_async/client/indices.py,sha256=a9iot5Zg0SNNxbi2IWN82IZLXDylWxCqjSTWxy2g7KE,214149
|
|
29
|
-
elasticsearch/_async/client/inference.py,sha256=v2F4brAAgaRS6YUhqg51RsKrUxnZajPyCoYA9rN69q4,11883
|
|
30
|
-
elasticsearch/_async/client/ingest.py,sha256=m_otCczTvFhj4A7lBQs5YOHxV6gX-AZcRW5kV73PmuM,15234
|
|
31
|
-
elasticsearch/_async/client/license.py,sha256=Yr4Mo-0omioUCvAeL4-DPzTONxt8u0QAonKUxwcoO4k,12100
|
|
32
|
-
elasticsearch/_async/client/logstash.py,sha256=eNptlgLEauh66IfXEvUayvF-7G1ooVqs5Mwswn8YZUI,6127
|
|
33
|
-
elasticsearch/_async/client/migration.py,sha256=QonK5SwvnyvEkna4c8DQbKn4xtvLNxpHlIyD3eQcjxE,5331
|
|
34
|
-
elasticsearch/_async/client/ml.py,sha256=t-eXZ9TjfyipPCxkn3vVPxiZwAe9wJUkMxus_oiWLLo,241082
|
|
35
|
-
elasticsearch/_async/client/monitoring.py,sha256=OIVyst09y9x0_a1rIrU2yb8M2GZH0VIDSovGLwglHWQ,3822
|
|
36
|
-
elasticsearch/_async/client/nodes.py,sha256=hcdx9U0C36o8XT-TOrdMyz_aL4tbHmSZlcXnziBK9tE,23723
|
|
37
|
-
elasticsearch/_async/client/query_ruleset.py,sha256=7ZI8rTN2tKmny59PXiZbnDh8m9MYkNJ89dgxcwgFm0U,7606
|
|
38
|
-
elasticsearch/_async/client/rollup.py,sha256=NgDryshf9MlgZWHYwlpA-6KzL6QljVwbKWaqTc4GjrY,20828
|
|
39
|
-
elasticsearch/_async/client/search_application.py,sha256=1v3As93edM8Ya9hVl5RTQqcRyoKVeH9QEq7e_ozlHMc,15306
|
|
40
|
-
elasticsearch/_async/client/searchable_snapshots.py,sha256=CXxmFp6_nUSyz3XLDHGxJKfsM-QjjYxbmnvkMLvpO-M,11694
|
|
41
|
-
elasticsearch/_async/client/security.py,sha256=GzaMeBrn-_5HpJXlflo0aooBcabQdT6I15y-zPCG59Y,130247
|
|
42
|
-
elasticsearch/_async/client/shutdown.py,sha256=Ckk_YcGy1yO2PuD0LDIulxkFFcmx4t7V3z_thRUWkEw,11364
|
|
43
|
-
elasticsearch/_async/client/slm.py,sha256=rQ30acpny3kcd7vA2QGkks0tOm4MpsiLJVAJ09DgRNs,16150
|
|
44
|
-
elasticsearch/_async/client/snapshot.py,sha256=y_RYwoRYA1evGse93KFEAlLxcZfTANnhkYJ25AnRHyY,37085
|
|
45
|
-
elasticsearch/_async/client/sql.py,sha256=tsICjVHrENcSWlBjErP-7tEktPldT7CazQiTTsuOneg,17876
|
|
46
|
-
elasticsearch/_async/client/ssl.py,sha256=83ijyBE3KTGRm1w-py0qPvUrf29KIL_wmFIkEh4Xu68,2261
|
|
47
|
-
elasticsearch/_async/client/synonyms.py,sha256=sl0oXuu-SheD4RtGAy33JmFf_AEyZzzc_zmM-9MJHkw,13797
|
|
48
|
-
elasticsearch/_async/client/tasks.py,sha256=_uRMXtxfx3LhYTUxNs7h8-GAtwPU3jWF2R6bd_SSaqs,8983
|
|
49
|
-
elasticsearch/_async/client/text_structure.py,sha256=gJRB53RHaaQ07pqjBO7hUiBCxFN3D4TaSbk3R2N0hno,12050
|
|
50
|
-
elasticsearch/_async/client/transform.py,sha256=hhVq-2JwKBNCgxJ5vHmsDlgBbK7OzOCdlkBjjYC_r4Q,37158
|
|
51
|
-
elasticsearch/_async/client/utils.py,sha256=JwFOxo-YrRg4exXlpiUuOG1uNtJKP_VeK0HgrCJSN98,1367
|
|
52
|
-
elasticsearch/_async/client/watcher.py,sha256=T_TA0gWs4chrUaGT0ycFJMvjQLzCxVZLTLKmGLmCeho,25760
|
|
53
|
-
elasticsearch/_async/client/xpack.py,sha256=9RFV989DBQuB-ipIpSc4LXhv4H6YhnBEudrVVPJD86M,4490
|
|
54
|
-
elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
55
|
-
elasticsearch/_sync/client/__init__.py,sha256=8Hz5cLFa8wbZraC6p8fxl6-txmRLPA4FkQy91pLNCMo,240108
|
|
56
|
-
elasticsearch/_sync/client/_base.py,sha256=LesRKQzvgstEPn-hzoY7PBq_4hAyPCzjGiUggGn-fB8,15461
|
|
57
|
-
elasticsearch/_sync/client/async_search.py,sha256=fq5M6m4KmDYrC3guqB0aK3cISqcoAwQ331kl8c9jHLk,29190
|
|
58
|
-
elasticsearch/_sync/client/autoscaling.py,sha256=lK26PVNoXPoDHOGBIFG1MO-bb3gWnUKPmM2OJUdZM9U,7693
|
|
59
|
-
elasticsearch/_sync/client/cat.py,sha256=J5OSMSrEYIAkAqI82GeZ4n1U7PZ-X-wdIPKFhRjSiqM,116318
|
|
60
|
-
elasticsearch/_sync/client/ccr.py,sha256=swZRi3UWcKO83dfWppTk1OmrKz-cnL_qaGFTAEMF3gU,36974
|
|
61
|
-
elasticsearch/_sync/client/cluster.py,sha256=RvpzcSiyq4EOoYzpwrZbca9kX0nhjMEU0SIBJMt95Bk,47800
|
|
62
|
-
elasticsearch/_sync/client/dangling_indices.py,sha256=PQS1caIG1Ruy6C42ovutdNtCae_gYdRF7u06RLvmMUo,6958
|
|
63
|
-
elasticsearch/_sync/client/enrich.py,sha256=8wX3l1MQRSme67XFtbWIo-MMSSQ4hi6v2ihY8rikQqY,9597
|
|
64
|
-
elasticsearch/_sync/client/eql.py,sha256=ec-mx-bgZLl9j91bmKD-Gb3w56OAylhpelqC7Z7VSbU,13103
|
|
65
|
-
elasticsearch/_sync/client/esql.py,sha256=gMGtbUg0baTi_xvLXA6hVnmL0knfd30__aowkMhihVk,4556
|
|
66
|
-
elasticsearch/_sync/client/features.py,sha256=DAROerLS2HnVjoz8br5-3-oVFHhlM0qj1SThyOOlXe0,3526
|
|
67
|
-
elasticsearch/_sync/client/fleet.py,sha256=WAE_xRvsHVRNF-flm9KfOoeYjmfuQZcehwicTL4VtsQ,30902
|
|
68
|
-
elasticsearch/_sync/client/graph.py,sha256=YO3mkVm5mieDDLFhyT61W5oZwIUYdnwGriypNwPRBjo,4566
|
|
69
|
-
elasticsearch/_sync/client/ilm.py,sha256=uKnwDFD0ZJS0ZieYOpAlBH0YkAOPF9TyFwgOIWdHafw,23536
|
|
70
|
-
elasticsearch/_sync/client/indices.py,sha256=H9BsJeifTacIVHnpI3myW7Aji-f9kWlqDVbcq7TYnsQ,213441
|
|
71
|
-
elasticsearch/_sync/client/inference.py,sha256=PdbTvuBFTPQNITQhEbE1x30eJmYI_-OO118ekyIqDgc,11835
|
|
72
|
-
elasticsearch/_sync/client/ingest.py,sha256=dpBTWLbzhbKLDG28eFps8Igg_aRiqOeRo1-ea1TbFxw,15162
|
|
73
|
-
elasticsearch/_sync/client/license.py,sha256=OpTABuUgsPEN9K_AbLpN_nNAYtJDJr-Cyddt-XXlloQ,12016
|
|
74
|
-
elasticsearch/_sync/client/logstash.py,sha256=IcixYMxsQN-fi4iZSuxEv3bIXFpLmBL2PtfnH72T7ys,6091
|
|
75
|
-
elasticsearch/_sync/client/migration.py,sha256=fKCNGoFYdPomfnnk4ZP3jfD0IMZurykptQJD6RSZH8o,5295
|
|
76
|
-
elasticsearch/_sync/client/ml.py,sha256=HSRfN2AiCjbwRwRo3FYN8RO7Zb8uprtBIVfnXS_oSe4,240206
|
|
77
|
-
elasticsearch/_sync/client/monitoring.py,sha256=t7r_pWbeSElHkGy0fL1bA7TUOgfhlVSKg71pY8hw4JQ,3810
|
|
78
|
-
elasticsearch/_sync/client/nodes.py,sha256=2Axyyezre04NSjp3AY-zRr6J37SIkcs0d3fX_Z1ypUQ,23639
|
|
79
|
-
elasticsearch/_sync/client/query_ruleset.py,sha256=8xLAmw1ARwDGXqS4A9LvhaDadKGI3aMtNbJJNbN4C4U,7558
|
|
80
|
-
elasticsearch/_sync/client/rollup.py,sha256=f9xLs58WAJR4NKVCaJOv3nzJUS1V-ihoWySBHld-tGc,20732
|
|
81
|
-
elasticsearch/_sync/client/search_application.py,sha256=MPHzesfaRctBpsuBbZpkeNV4rs9zHlEcHEAnK2Aic_Y,15210
|
|
82
|
-
elasticsearch/_sync/client/searchable_snapshots.py,sha256=t8OfV1fPQP8XlTL6TNckLsk68eCLw7o64xeWbYs3css,11646
|
|
83
|
-
elasticsearch/_sync/client/security.py,sha256=3Az-HRA5aV-2-0Hh3Vj8u_aPofpPVU3ICauxPbeCMq0,129635
|
|
84
|
-
elasticsearch/_sync/client/shutdown.py,sha256=YWT70DR1u4wBh1kKAtO-9hkJTm8OrYfTuUiLshwxebM,11328
|
|
85
|
-
elasticsearch/_sync/client/slm.py,sha256=i5oam60H1qeX_lmQoEKtBkjQ9iV3gtZ8mqkfWxYI1J0,16042
|
|
86
|
-
elasticsearch/_sync/client/snapshot.py,sha256=B9KJQInEdeU-myL2vDvnqr-M8GorGSklpcmlpzkaIFY,36953
|
|
87
|
-
elasticsearch/_sync/client/sql.py,sha256=ZjMwnDobp7EdA0GFVFmx9SBWK89UGOQRJFf-yj_e7wQ,17804
|
|
88
|
-
elasticsearch/_sync/client/ssl.py,sha256=xocJTYhEtinBkLzj94xYJeQgB54xUmD-WWQFSb7UpaM,2249
|
|
89
|
-
elasticsearch/_sync/client/synonyms.py,sha256=B3kwk-Pg11vLUVf6R55nJiCEQrXRbN5l-5fryc9PHFU,13713
|
|
90
|
-
elasticsearch/_sync/client/tasks.py,sha256=k91tUsK0_UD8h8OaFhbExsCejW8pdZLauutpoDW1QGU,8947
|
|
91
|
-
elasticsearch/_sync/client/text_structure.py,sha256=rzGM5HWU_YWSIuDNxjcvpdAgArrxQq3LkvdLOEB_lGU,12026
|
|
92
|
-
elasticsearch/_sync/client/transform.py,sha256=yKqC02CLNzTgbTvsEGX5pg58QbKdvGBObruZNdGyDSM,37026
|
|
93
|
-
elasticsearch/_sync/client/utils.py,sha256=QKgoK3f87YPa5R5v7_TN8ib8JircbfI_R5RQXeEOKiU,17209
|
|
94
|
-
elasticsearch/_sync/client/watcher.py,sha256=Mz9RtegNaKuvKhvteu-vku2LpvqhFDXibA7r-5uZvQg,25628
|
|
95
|
-
elasticsearch/_sync/client/xpack.py,sha256=jhaRsGuSs51yieTWp0tOhj4i8PqR-15Ar1NAqqgTwPw,4466
|
|
96
|
-
elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
|
|
97
|
-
elasticsearch/helpers/actions.py,sha256=oEVAqOjWBn9PLFPpdIEBb5BMKLgN4mi7EozEcOqb4us,30956
|
|
98
|
-
elasticsearch/helpers/errors.py,sha256=GKtlM2687mbBC8PjwQGClBFE4sD129Ytb6wkHZveFJw,1213
|
|
99
|
-
elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
|
|
100
|
-
elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
|
|
101
|
-
elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
102
|
-
elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
|
|
103
|
-
elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
|
|
104
|
-
elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=nh_wvNfWmZIjbTQ38FGSkUeF4_yDk48zukNuhOkq9bE,15322
|
|
105
|
-
elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=YiwiNJsslVPmfrqB5jpkNchHKoGGZLdz_tieHMR0Jpk,15161
|
|
106
|
-
elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
107
|
-
elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
|
|
108
|
-
elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
|
|
109
|
-
elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=0Q1zoOrO51S6HXjXwkAePPVtCUGQz5lKN9NyRCso-GU,15220
|
|
110
|
-
elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=MqTDeHyG4NS9gInxwljh4J0QVvS499SajQ22fe1UpLs,14970
|
|
111
|
-
elasticsearch-8.14.0.dist-info/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
|
|
112
|
-
elasticsearch-8.14.0.dist-info/METADATA,sha256=YoAc61tLysXUFSF0hW0NKsiVV5z4kpruPWzY6t4uW08,7188
|
|
113
|
-
elasticsearch-8.14.0.dist-info/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
|
|
114
|
-
elasticsearch-8.14.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
115
|
-
elasticsearch-8.14.0.dist-info/top_level.txt,sha256=Jp2bLWq49skvCN4YCZsg1Hfn_NDLgleC-x-Bn01_HgM,14
|
|
116
|
-
elasticsearch-8.14.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
elasticsearch
|
|
File without changes
|
|
File without changes
|