elasticsearch9 9.0.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.
- elasticsearch9/__init__.py +98 -0
- elasticsearch9/_async/__init__.py +16 -0
- elasticsearch9/_async/client/__init__.py +6531 -0
- elasticsearch9/_async/client/_base.py +430 -0
- elasticsearch9/_async/client/async_search.py +637 -0
- elasticsearch9/_async/client/autoscaling.py +252 -0
- elasticsearch9/_async/client/cat.py +2995 -0
- elasticsearch9/_async/client/ccr.py +1043 -0
- elasticsearch9/_async/client/cluster.py +1223 -0
- elasticsearch9/_async/client/connector.py +1978 -0
- elasticsearch9/_async/client/dangling_indices.py +192 -0
- elasticsearch9/_async/client/enrich.py +291 -0
- elasticsearch9/_async/client/eql.py +359 -0
- elasticsearch9/_async/client/esql.py +490 -0
- elasticsearch9/_async/client/features.py +130 -0
- elasticsearch9/_async/client/fleet.py +658 -0
- elasticsearch9/_async/client/graph.py +113 -0
- elasticsearch9/_async/client/ilm.py +668 -0
- elasticsearch9/_async/client/indices.py +5582 -0
- elasticsearch9/_async/client/inference.py +2247 -0
- elasticsearch9/_async/client/ingest.py +766 -0
- elasticsearch9/_async/client/license.py +400 -0
- elasticsearch9/_async/client/logstash.py +176 -0
- elasticsearch9/_async/client/migration.py +160 -0
- elasticsearch9/_async/client/ml.py +5835 -0
- elasticsearch9/_async/client/monitoring.py +100 -0
- elasticsearch9/_async/client/nodes.py +543 -0
- elasticsearch9/_async/client/query_rules.py +485 -0
- elasticsearch9/_async/client/rollup.py +616 -0
- elasticsearch9/_async/client/search_application.py +574 -0
- elasticsearch9/_async/client/searchable_snapshots.py +313 -0
- elasticsearch9/_async/client/security.py +4688 -0
- elasticsearch9/_async/client/shutdown.py +268 -0
- elasticsearch9/_async/client/simulate.py +145 -0
- elasticsearch9/_async/client/slm.py +559 -0
- elasticsearch9/_async/client/snapshot.py +1338 -0
- elasticsearch9/_async/client/sql.py +469 -0
- elasticsearch9/_async/client/ssl.py +76 -0
- elasticsearch9/_async/client/synonyms.py +413 -0
- elasticsearch9/_async/client/tasks.py +295 -0
- elasticsearch9/_async/client/text_structure.py +664 -0
- elasticsearch9/_async/client/transform.py +922 -0
- elasticsearch9/_async/client/utils.py +48 -0
- elasticsearch9/_async/client/watcher.py +894 -0
- elasticsearch9/_async/client/xpack.py +134 -0
- elasticsearch9/_async/helpers.py +596 -0
- elasticsearch9/_otel.py +110 -0
- elasticsearch9/_sync/__init__.py +16 -0
- elasticsearch9/_sync/client/__init__.py +6529 -0
- elasticsearch9/_sync/client/_base.py +430 -0
- elasticsearch9/_sync/client/async_search.py +637 -0
- elasticsearch9/_sync/client/autoscaling.py +252 -0
- elasticsearch9/_sync/client/cat.py +2995 -0
- elasticsearch9/_sync/client/ccr.py +1043 -0
- elasticsearch9/_sync/client/cluster.py +1223 -0
- elasticsearch9/_sync/client/connector.py +1978 -0
- elasticsearch9/_sync/client/dangling_indices.py +192 -0
- elasticsearch9/_sync/client/enrich.py +291 -0
- elasticsearch9/_sync/client/eql.py +359 -0
- elasticsearch9/_sync/client/esql.py +490 -0
- elasticsearch9/_sync/client/features.py +130 -0
- elasticsearch9/_sync/client/fleet.py +658 -0
- elasticsearch9/_sync/client/graph.py +113 -0
- elasticsearch9/_sync/client/ilm.py +668 -0
- elasticsearch9/_sync/client/indices.py +5582 -0
- elasticsearch9/_sync/client/inference.py +2247 -0
- elasticsearch9/_sync/client/ingest.py +766 -0
- elasticsearch9/_sync/client/license.py +400 -0
- elasticsearch9/_sync/client/logstash.py +176 -0
- elasticsearch9/_sync/client/migration.py +160 -0
- elasticsearch9/_sync/client/ml.py +5835 -0
- elasticsearch9/_sync/client/monitoring.py +100 -0
- elasticsearch9/_sync/client/nodes.py +543 -0
- elasticsearch9/_sync/client/query_rules.py +485 -0
- elasticsearch9/_sync/client/rollup.py +616 -0
- elasticsearch9/_sync/client/search_application.py +574 -0
- elasticsearch9/_sync/client/searchable_snapshots.py +313 -0
- elasticsearch9/_sync/client/security.py +4688 -0
- elasticsearch9/_sync/client/shutdown.py +268 -0
- elasticsearch9/_sync/client/simulate.py +145 -0
- elasticsearch9/_sync/client/slm.py +559 -0
- elasticsearch9/_sync/client/snapshot.py +1338 -0
- elasticsearch9/_sync/client/sql.py +469 -0
- elasticsearch9/_sync/client/ssl.py +76 -0
- elasticsearch9/_sync/client/synonyms.py +413 -0
- elasticsearch9/_sync/client/tasks.py +295 -0
- elasticsearch9/_sync/client/text_structure.py +664 -0
- elasticsearch9/_sync/client/transform.py +922 -0
- elasticsearch9/_sync/client/utils.py +475 -0
- elasticsearch9/_sync/client/watcher.py +894 -0
- elasticsearch9/_sync/client/xpack.py +134 -0
- elasticsearch9/_utils.py +34 -0
- elasticsearch9/_version.py +18 -0
- elasticsearch9/client.py +126 -0
- elasticsearch9/compat.py +79 -0
- elasticsearch9/dsl/__init__.py +203 -0
- elasticsearch9/dsl/_async/__init__.py +16 -0
- elasticsearch9/dsl/_async/document.py +522 -0
- elasticsearch9/dsl/_async/faceted_search.py +50 -0
- elasticsearch9/dsl/_async/index.py +639 -0
- elasticsearch9/dsl/_async/mapping.py +49 -0
- elasticsearch9/dsl/_async/search.py +237 -0
- elasticsearch9/dsl/_async/update_by_query.py +47 -0
- elasticsearch9/dsl/_sync/__init__.py +16 -0
- elasticsearch9/dsl/_sync/document.py +514 -0
- elasticsearch9/dsl/_sync/faceted_search.py +50 -0
- elasticsearch9/dsl/_sync/index.py +597 -0
- elasticsearch9/dsl/_sync/mapping.py +49 -0
- elasticsearch9/dsl/_sync/search.py +230 -0
- elasticsearch9/dsl/_sync/update_by_query.py +45 -0
- elasticsearch9/dsl/aggs.py +3734 -0
- elasticsearch9/dsl/analysis.py +341 -0
- elasticsearch9/dsl/async_connections.py +37 -0
- elasticsearch9/dsl/connections.py +142 -0
- elasticsearch9/dsl/document.py +20 -0
- elasticsearch9/dsl/document_base.py +444 -0
- elasticsearch9/dsl/exceptions.py +32 -0
- elasticsearch9/dsl/faceted_search.py +28 -0
- elasticsearch9/dsl/faceted_search_base.py +489 -0
- elasticsearch9/dsl/field.py +4392 -0
- elasticsearch9/dsl/function.py +180 -0
- elasticsearch9/dsl/index.py +23 -0
- elasticsearch9/dsl/index_base.py +178 -0
- elasticsearch9/dsl/mapping.py +19 -0
- elasticsearch9/dsl/mapping_base.py +219 -0
- elasticsearch9/dsl/query.py +2822 -0
- elasticsearch9/dsl/response/__init__.py +388 -0
- elasticsearch9/dsl/response/aggs.py +100 -0
- elasticsearch9/dsl/response/hit.py +53 -0
- elasticsearch9/dsl/search.py +20 -0
- elasticsearch9/dsl/search_base.py +1053 -0
- elasticsearch9/dsl/serializer.py +34 -0
- elasticsearch9/dsl/types.py +6453 -0
- elasticsearch9/dsl/update_by_query.py +19 -0
- elasticsearch9/dsl/update_by_query_base.py +149 -0
- elasticsearch9/dsl/utils.py +687 -0
- elasticsearch9/dsl/wrappers.py +144 -0
- elasticsearch9/exceptions.py +133 -0
- elasticsearch9/helpers/__init__.py +41 -0
- elasticsearch9/helpers/actions.py +875 -0
- elasticsearch9/helpers/errors.py +40 -0
- elasticsearch9/helpers/vectorstore/__init__.py +62 -0
- elasticsearch9/helpers/vectorstore/_async/__init__.py +16 -0
- elasticsearch9/helpers/vectorstore/_async/_utils.py +39 -0
- elasticsearch9/helpers/vectorstore/_async/embedding_service.py +89 -0
- elasticsearch9/helpers/vectorstore/_async/strategies.py +487 -0
- elasticsearch9/helpers/vectorstore/_async/vectorstore.py +421 -0
- elasticsearch9/helpers/vectorstore/_sync/__init__.py +16 -0
- elasticsearch9/helpers/vectorstore/_sync/_utils.py +39 -0
- elasticsearch9/helpers/vectorstore/_sync/embedding_service.py +89 -0
- elasticsearch9/helpers/vectorstore/_sync/strategies.py +487 -0
- elasticsearch9/helpers/vectorstore/_sync/vectorstore.py +421 -0
- elasticsearch9/helpers/vectorstore/_utils.py +116 -0
- elasticsearch9/py.typed +0 -0
- elasticsearch9/serializer.py +250 -0
- elasticsearch9-9.0.0.dist-info/METADATA +175 -0
- elasticsearch9-9.0.0.dist-info/RECORD +160 -0
- elasticsearch9-9.0.0.dist-info/WHEEL +4 -0
- elasticsearch9-9.0.0.dist-info/licenses/LICENSE +176 -0
- elasticsearch9-9.0.0.dist-info/licenses/NOTICE +2 -0
|
@@ -0,0 +1,250 @@
|
|
|
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 uuid
|
|
19
|
+
from datetime import date, datetime
|
|
20
|
+
from decimal import Decimal
|
|
21
|
+
from typing import Any, ClassVar, Dict, Tuple
|
|
22
|
+
|
|
23
|
+
from elastic_transport import JsonSerializer as _JsonSerializer
|
|
24
|
+
from elastic_transport import NdjsonSerializer as _NdjsonSerializer
|
|
25
|
+
from elastic_transport import Serializer as Serializer
|
|
26
|
+
from elastic_transport import TextSerializer as TextSerializer
|
|
27
|
+
|
|
28
|
+
from .exceptions import SerializationError
|
|
29
|
+
|
|
30
|
+
INTEGER_TYPES = ()
|
|
31
|
+
FLOAT_TYPES = (Decimal,)
|
|
32
|
+
TIME_TYPES = (date, datetime)
|
|
33
|
+
|
|
34
|
+
__all__ = [
|
|
35
|
+
"Serializer",
|
|
36
|
+
"JsonSerializer",
|
|
37
|
+
"TextSerializer",
|
|
38
|
+
"NdjsonSerializer",
|
|
39
|
+
"CompatibilityModeJsonSerializer",
|
|
40
|
+
"CompatibilityModeNdjsonSerializer",
|
|
41
|
+
"MapboxVectorTileSerializer",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
try:
|
|
45
|
+
from elastic_transport import OrjsonSerializer as _OrjsonSerializer
|
|
46
|
+
|
|
47
|
+
__all__.append("OrjsonSerializer")
|
|
48
|
+
except ImportError:
|
|
49
|
+
_OrjsonSerializer = None # type: ignore[assignment,misc]
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
try:
|
|
53
|
+
import pyarrow as pa
|
|
54
|
+
|
|
55
|
+
__all__.append("PyArrowSerializer")
|
|
56
|
+
except ImportError:
|
|
57
|
+
pa = None
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
class JsonSerializer(_JsonSerializer):
|
|
61
|
+
mimetype: ClassVar[str] = "application/json"
|
|
62
|
+
|
|
63
|
+
def default(self, data: Any) -> Any:
|
|
64
|
+
if isinstance(data, TIME_TYPES):
|
|
65
|
+
# Little hack to avoid importing pandas but to not
|
|
66
|
+
# return 'NaT' string for pd.NaT as that's not a valid
|
|
67
|
+
# Elasticsearch date.
|
|
68
|
+
formatted_data = data.isoformat()
|
|
69
|
+
if formatted_data != "NaT":
|
|
70
|
+
return formatted_data
|
|
71
|
+
|
|
72
|
+
if isinstance(data, uuid.UUID):
|
|
73
|
+
return str(data)
|
|
74
|
+
elif isinstance(data, FLOAT_TYPES):
|
|
75
|
+
return float(data)
|
|
76
|
+
|
|
77
|
+
# This is kept for backwards compatibility even
|
|
78
|
+
# if 'INTEGER_TYPES' isn't used by default anymore.
|
|
79
|
+
elif INTEGER_TYPES and isinstance(data, INTEGER_TYPES):
|
|
80
|
+
return int(data)
|
|
81
|
+
|
|
82
|
+
# Special cases for numpy and pandas types
|
|
83
|
+
# These are expensive to import so we try them last.
|
|
84
|
+
serialized, value = _attempt_serialize_numpy_or_pandas(data)
|
|
85
|
+
if serialized:
|
|
86
|
+
return value
|
|
87
|
+
|
|
88
|
+
raise TypeError(f"Unable to serialize {data!r} (type: {type(data)})")
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
if _OrjsonSerializer is not None:
|
|
92
|
+
|
|
93
|
+
class OrjsonSerializer(JsonSerializer, _OrjsonSerializer):
|
|
94
|
+
def default(self, data: Any) -> Any:
|
|
95
|
+
return JsonSerializer.default(self, data)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class NdjsonSerializer(JsonSerializer, _NdjsonSerializer):
|
|
99
|
+
mimetype: ClassVar[str] = "application/x-ndjson"
|
|
100
|
+
|
|
101
|
+
def default(self, data: Any) -> Any:
|
|
102
|
+
return JsonSerializer.default(self, data)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class CompatibilityModeJsonSerializer(JsonSerializer):
|
|
106
|
+
mimetype: ClassVar[str] = "application/vnd.elasticsearch+json"
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class CompatibilityModeNdjsonSerializer(NdjsonSerializer):
|
|
110
|
+
mimetype: ClassVar[str] = "application/vnd.elasticsearch+x-ndjson"
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class MapboxVectorTileSerializer(Serializer):
|
|
114
|
+
mimetype: ClassVar[str] = "application/vnd.mapbox-vector-tile"
|
|
115
|
+
|
|
116
|
+
def loads(self, data: bytes) -> bytes:
|
|
117
|
+
return data
|
|
118
|
+
|
|
119
|
+
def dumps(self, data: bytes) -> bytes:
|
|
120
|
+
if isinstance(data, bytes):
|
|
121
|
+
return data
|
|
122
|
+
raise SerializationError(f"Cannot serialize {data!r} into a MapBox vector tile")
|
|
123
|
+
|
|
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
|
+
|
|
148
|
+
DEFAULT_SERIALIZERS: Dict[str, Serializer] = {
|
|
149
|
+
JsonSerializer.mimetype: JsonSerializer(),
|
|
150
|
+
MapboxVectorTileSerializer.mimetype: MapboxVectorTileSerializer(),
|
|
151
|
+
NdjsonSerializer.mimetype: NdjsonSerializer(),
|
|
152
|
+
CompatibilityModeJsonSerializer.mimetype: CompatibilityModeJsonSerializer(),
|
|
153
|
+
CompatibilityModeNdjsonSerializer.mimetype: CompatibilityModeNdjsonSerializer(),
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
if pa is not None:
|
|
157
|
+
DEFAULT_SERIALIZERS[PyArrowSerializer.mimetype] = PyArrowSerializer()
|
|
158
|
+
|
|
159
|
+
# Alias for backwards compatibility
|
|
160
|
+
JSONSerializer = JsonSerializer
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
def _attempt_serialize_numpy_or_pandas(data: Any) -> Tuple[bool, Any]:
|
|
164
|
+
"""Attempts to serialize a value from the numpy or pandas libraries.
|
|
165
|
+
This function is separate from JSONSerializer because the inner functions
|
|
166
|
+
are rewritten to be no-ops if either library isn't available to avoid
|
|
167
|
+
attempting to import and raising an ImportError over and over again.
|
|
168
|
+
|
|
169
|
+
Returns a tuple of (bool, Any) where the bool corresponds to whether
|
|
170
|
+
the second value contains a properly serialized value and thus
|
|
171
|
+
should be returned by JSONSerializer.default().
|
|
172
|
+
"""
|
|
173
|
+
serialized, value = _attempt_serialize_numpy(data)
|
|
174
|
+
if serialized:
|
|
175
|
+
return serialized, value
|
|
176
|
+
|
|
177
|
+
serialized, value = _attempt_serialize_pandas(data)
|
|
178
|
+
if serialized:
|
|
179
|
+
return serialized, value
|
|
180
|
+
|
|
181
|
+
return False, None
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
def _attempt_serialize_numpy(data: Any) -> Tuple[bool, Any]:
|
|
185
|
+
global _attempt_serialize_numpy
|
|
186
|
+
try:
|
|
187
|
+
import numpy as np
|
|
188
|
+
|
|
189
|
+
if isinstance(
|
|
190
|
+
data,
|
|
191
|
+
(
|
|
192
|
+
np.int_,
|
|
193
|
+
np.intc,
|
|
194
|
+
np.int8,
|
|
195
|
+
np.int16,
|
|
196
|
+
np.int32,
|
|
197
|
+
np.int64,
|
|
198
|
+
np.uint8,
|
|
199
|
+
np.uint16,
|
|
200
|
+
np.uint32,
|
|
201
|
+
np.uint64,
|
|
202
|
+
),
|
|
203
|
+
):
|
|
204
|
+
return True, int(data)
|
|
205
|
+
elif isinstance(
|
|
206
|
+
data,
|
|
207
|
+
(
|
|
208
|
+
np.float16,
|
|
209
|
+
np.float32,
|
|
210
|
+
np.float64,
|
|
211
|
+
),
|
|
212
|
+
):
|
|
213
|
+
return True, float(data)
|
|
214
|
+
elif isinstance(data, np.bool_):
|
|
215
|
+
return True, bool(data)
|
|
216
|
+
elif isinstance(data, np.datetime64):
|
|
217
|
+
return True, data.item().isoformat()
|
|
218
|
+
elif isinstance(data, np.ndarray):
|
|
219
|
+
return True, data.tolist()
|
|
220
|
+
|
|
221
|
+
except ImportError:
|
|
222
|
+
# Since we failed to import 'numpy' we don't want to try again.
|
|
223
|
+
_attempt_serialize_numpy = _attempt_serialize_noop
|
|
224
|
+
|
|
225
|
+
return False, None
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
def _attempt_serialize_pandas(data: Any) -> Tuple[bool, Any]:
|
|
229
|
+
global _attempt_serialize_pandas
|
|
230
|
+
try:
|
|
231
|
+
import pandas as pd
|
|
232
|
+
|
|
233
|
+
if isinstance(data, (pd.Series, pd.Categorical)):
|
|
234
|
+
return True, data.tolist()
|
|
235
|
+
elif isinstance(data, pd.Timestamp) and data is not getattr(pd, "NaT", None):
|
|
236
|
+
return True, data.isoformat()
|
|
237
|
+
elif data is getattr(pd, "NA", None):
|
|
238
|
+
return True, None
|
|
239
|
+
|
|
240
|
+
except ImportError:
|
|
241
|
+
# Since we failed to import 'pandas' we don't want to try again.
|
|
242
|
+
_attempt_serialize_pandas = _attempt_serialize_noop
|
|
243
|
+
|
|
244
|
+
return False, None
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
def _attempt_serialize_noop(data: Any) -> Tuple[bool, Any]: # noqa
|
|
248
|
+
# Short-circuit if the above functions can't import
|
|
249
|
+
# the corresponding library on the first attempt.
|
|
250
|
+
return False, None
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: elasticsearch9
|
|
3
|
+
Version: 9.0.0
|
|
4
|
+
Summary: Python client for Elasticsearch
|
|
5
|
+
Project-URL: Documentation, https://elasticsearch9-py.readthedocs.io/
|
|
6
|
+
Project-URL: Homepage, https://github.com/elastic/elasticsearch9-py
|
|
7
|
+
Project-URL: Issue Tracker, https://github.com/elastic/elasticsearch9-py/issues
|
|
8
|
+
Project-URL: Source Code, https://github.com/elastic/elasticsearch9-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,elasticsearch9,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 :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
29
|
+
Requires-Python: >=3.8
|
|
30
|
+
Requires-Dist: elastic-transport<9,>=8.15.1
|
|
31
|
+
Requires-Dist: python-dateutil
|
|
32
|
+
Requires-Dist: typing-extensions
|
|
33
|
+
Provides-Extra: async
|
|
34
|
+
Requires-Dist: aiohttp<4,>=3; extra == 'async'
|
|
35
|
+
Provides-Extra: dev
|
|
36
|
+
Requires-Dist: aiohttp; extra == 'dev'
|
|
37
|
+
Requires-Dist: black; extra == 'dev'
|
|
38
|
+
Requires-Dist: build; extra == 'dev'
|
|
39
|
+
Requires-Dist: coverage; extra == 'dev'
|
|
40
|
+
Requires-Dist: isort; extra == 'dev'
|
|
41
|
+
Requires-Dist: jinja2; extra == 'dev'
|
|
42
|
+
Requires-Dist: mapbox-vector-tile; extra == 'dev'
|
|
43
|
+
Requires-Dist: mypy; extra == 'dev'
|
|
44
|
+
Requires-Dist: nltk; extra == 'dev'
|
|
45
|
+
Requires-Dist: nox; extra == 'dev'
|
|
46
|
+
Requires-Dist: numpy; extra == 'dev'
|
|
47
|
+
Requires-Dist: orjson; extra == 'dev'
|
|
48
|
+
Requires-Dist: pandas; extra == 'dev'
|
|
49
|
+
Requires-Dist: pyarrow; extra == 'dev'
|
|
50
|
+
Requires-Dist: pyright; extra == 'dev'
|
|
51
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
52
|
+
Requires-Dist: pytest-asyncio; extra == 'dev'
|
|
53
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
54
|
+
Requires-Dist: pytest-mock; extra == 'dev'
|
|
55
|
+
Requires-Dist: python-dateutil; extra == 'dev'
|
|
56
|
+
Requires-Dist: pyyaml>=5.4; extra == 'dev'
|
|
57
|
+
Requires-Dist: requests<3,>=2; extra == 'dev'
|
|
58
|
+
Requires-Dist: sentence-transformers; extra == 'dev'
|
|
59
|
+
Requires-Dist: simsimd; extra == 'dev'
|
|
60
|
+
Requires-Dist: tqdm; extra == 'dev'
|
|
61
|
+
Requires-Dist: twine; extra == 'dev'
|
|
62
|
+
Requires-Dist: types-python-dateutil; extra == 'dev'
|
|
63
|
+
Requires-Dist: types-tqdm; extra == 'dev'
|
|
64
|
+
Requires-Dist: unasync; extra == 'dev'
|
|
65
|
+
Provides-Extra: docs
|
|
66
|
+
Requires-Dist: sphinx; extra == 'docs'
|
|
67
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
|
|
68
|
+
Requires-Dist: sphinx-rtd-theme>=2.0; extra == 'docs'
|
|
69
|
+
Provides-Extra: orjson
|
|
70
|
+
Requires-Dist: orjson>=3; extra == 'orjson'
|
|
71
|
+
Provides-Extra: pyarrow
|
|
72
|
+
Requires-Dist: pyarrow>=1; extra == 'pyarrow'
|
|
73
|
+
Provides-Extra: requests
|
|
74
|
+
Requires-Dist: requests!=2.32.2,<3.0.0,>=2.4.0; extra == 'requests'
|
|
75
|
+
Provides-Extra: vectorstore-mmr
|
|
76
|
+
Requires-Dist: numpy>=1; extra == 'vectorstore-mmr'
|
|
77
|
+
Requires-Dist: simsimd>=3; extra == 'vectorstore-mmr'
|
|
78
|
+
Description-Content-Type: text/markdown
|
|
79
|
+
|
|
80
|
+
<p align="center">
|
|
81
|
+
<img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/images/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
|
|
82
|
+
</p>
|
|
83
|
+
|
|
84
|
+
# Elasticsearch Python Client
|
|
85
|
+
|
|
86
|
+
<p align="center">
|
|
87
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/elasticsearch" /></a>
|
|
88
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/elasticsearch" /></a>
|
|
89
|
+
<a href="https://anaconda.org/conda-forge/elasticsearch"><img alt="Conda Version" src="https://img.shields.io/conda/vn/conda-forge/elasticsearch" /></a>
|
|
90
|
+
<a href="https://pepy.tech/project/elasticsearch?versions=*"><img alt="Downloads" src="https://static.pepy.tech/badge/elasticsearch" /></a>
|
|
91
|
+
<br/>
|
|
92
|
+
<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>
|
|
93
|
+
<a href="https://buildkite.com/elastic/elasticsearch-py-integration-tests"><img alt="Buildkite Status on Buildkite" src="https://badge.buildkite.com/68e22afcb2ea8f6dcc20834e3a5b5ab4431beee33d3bd751f3.svg" /></a>
|
|
94
|
+
<a href="https://elasticsearch-py.readthedocs.io"><img alt="Documentation Status" src="https://readthedocs.org/projects/elasticsearch-py/badge/?version=latest" /></a><br>
|
|
95
|
+
</p>
|
|
96
|
+
|
|
97
|
+
*The official Python client for Elasticsearch.*
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
## Features
|
|
101
|
+
|
|
102
|
+
* Translating basic Python data types to and from JSON
|
|
103
|
+
* Configurable automatic discovery of cluster nodes
|
|
104
|
+
* Persistent connections
|
|
105
|
+
* Load balancing (with pluggable selection strategy) across available nodes
|
|
106
|
+
* Failed connection penalization (time based - failed connections won't be
|
|
107
|
+
retried until a timeout is reached)
|
|
108
|
+
* Support for TLS and HTTP authentication
|
|
109
|
+
* Thread safety across requests
|
|
110
|
+
* Pluggable architecture
|
|
111
|
+
* Helper functions for idiomatically using APIs together
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## Installation
|
|
115
|
+
|
|
116
|
+
[Download the latest version of Elasticsearch](https://www.elastic.co/downloads/elasticsearch)
|
|
117
|
+
or
|
|
118
|
+
[sign-up](https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page)
|
|
119
|
+
for a free trial of Elastic Cloud.
|
|
120
|
+
|
|
121
|
+
Refer to the [Installation section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation)
|
|
122
|
+
of the getting started documentation.
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
## Connecting
|
|
126
|
+
|
|
127
|
+
Refer to the [Connecting section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_connecting)
|
|
128
|
+
of the getting started documentation.
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
## Usage
|
|
132
|
+
-----
|
|
133
|
+
|
|
134
|
+
* [Creating an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_creating_an_index)
|
|
135
|
+
* [Indexing a document](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_indexing_documents)
|
|
136
|
+
* [Getting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_getting_documents)
|
|
137
|
+
* [Searching documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_searching_documents)
|
|
138
|
+
* [Updating documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_updating_documents)
|
|
139
|
+
* [Deleting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_documents)
|
|
140
|
+
* [Deleting an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_an_index)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
## Compatibility
|
|
144
|
+
|
|
145
|
+
Language clients are forward compatible; meaning that the clients support
|
|
146
|
+
communicating with greater or equal minor versions of Elasticsearch without
|
|
147
|
+
breaking. It does not mean that the clients automatically support new features
|
|
148
|
+
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
149
|
+
client version. For example, a 8.12 client version won't automatically support
|
|
150
|
+
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
151
|
+
is required for that. Elasticsearch language clients are only backwards
|
|
152
|
+
compatible with default distributions and without guarantees made.
|
|
153
|
+
|
|
154
|
+
| Elasticsearch Version | Elasticsearch-Python Branch | Supported |
|
|
155
|
+
| --------------------- | ------------------------ | --------- |
|
|
156
|
+
| main | main | |
|
|
157
|
+
| 8.x | 8.x | 8.x |
|
|
158
|
+
| 7.x | 7.x | 7.17 |
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
If you have a need to have multiple versions installed at the same time older
|
|
162
|
+
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
## Documentation
|
|
166
|
+
|
|
167
|
+
Documentation for the client is [available on elastic.co] and [Read the Docs].
|
|
168
|
+
|
|
169
|
+
[available on elastic.co]: https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html
|
|
170
|
+
[Read the Docs]: https://elasticsearch-py.readthedocs.io
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
## License
|
|
174
|
+
|
|
175
|
+
This software is licensed under the [Apache License 2.0](./LICENSE). See [NOTICE](./NOTICE).
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
elasticsearch9/__init__.py,sha256=KicjUPfCZzRi4nTg2vJa1CklY168gVI6WwQsF2qsoXM,3325
|
|
2
|
+
elasticsearch9/_otel.py,sha256=Oidt86g9XzeVrwMsJeV7dGLsyquVMJWfhcRlz43RlGo,4188
|
|
3
|
+
elasticsearch9/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
|
|
4
|
+
elasticsearch9/_version.py,sha256=zDhYFJjWXrpJMj4E06pdEqDqsQyVGsYCL0siqCv4WOs,813
|
|
5
|
+
elasticsearch9/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
|
|
6
|
+
elasticsearch9/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
|
|
7
|
+
elasticsearch9/exceptions.py,sha256=ynpP0TLJxur7x7JQJD-CFtXov0bPImGt234gdlAyv6g,4142
|
|
8
|
+
elasticsearch9/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
elasticsearch9/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
|
|
10
|
+
elasticsearch9/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
11
|
+
elasticsearch9/_async/helpers.py,sha256=Q5LIXoyjoHeShBUltwLIkGc3WqmqAYHW2ddLjzNpYQU,22801
|
|
12
|
+
elasticsearch9/_async/client/__init__.py,sha256=cdRfsOS2bHtDc0tbTHWWOujMCUh55O_p59o-hTBJvcA,351800
|
|
13
|
+
elasticsearch9/_async/client/_base.py,sha256=q-efl19moyBufyiX2WYRLfBkrcmT3TUVKPf_Kqs5NqA,15494
|
|
14
|
+
elasticsearch9/_async/client/async_search.py,sha256=JW7meOSt9BCLTJwYuoXQqHalkf-tch-ZHxuA87A1ec8,30600
|
|
15
|
+
elasticsearch9/_async/client/autoscaling.py,sha256=-bzLJVXk1yMB522fQHu2gQTvk7pgUBKcRjYrARGJZmo,11275
|
|
16
|
+
elasticsearch9/_async/client/cat.py,sha256=xfbyygwsGMv3tCUSYtHBjWQr1n9uWA11L5GwNKS7uSw,132075
|
|
17
|
+
elasticsearch9/_async/client/ccr.py,sha256=9ETmgiYrotkEKXMQxJla8M4_knhEGvGEcW1avBJH-Vs,49930
|
|
18
|
+
elasticsearch9/_async/client/cluster.py,sha256=TaJVnIN8pwnSE5J1E9fCRY8qVFVU_Cc9ic1p2IHWTgI,61138
|
|
19
|
+
elasticsearch9/_async/client/connector.py,sha256=SOIE1MTBAAfDMdjBAY9NOX9XUgqSzZtkQZvjmB4P9aI,79155
|
|
20
|
+
elasticsearch9/_async/client/dangling_indices.py,sha256=5lMSqcF6qaG7ux9qsOcDFOxZaGadNrzkKx0hEgXmEJk,8536
|
|
21
|
+
elasticsearch9/_async/client/enrich.py,sha256=lvGscbUEpR4HemcJNZwKwvnyOwcWPDmM4WFejp76I14,11309
|
|
22
|
+
elasticsearch9/_async/client/eql.py,sha256=W3qx_b3tszfCeJJH3ea6NPjFHPbqvaejEMbI6UgjSf0,15324
|
|
23
|
+
elasticsearch9/_async/client/esql.py,sha256=73YozMhhnbiR7Ai7o8B-L280k5DHrgVQow789tkpb2w,22741
|
|
24
|
+
elasticsearch9/_async/client/features.py,sha256=kJWyyNK8UynTYSh6Xw0K2xE-0Z-RCJKZ1lmS9nP0gNk,6202
|
|
25
|
+
elasticsearch9/_async/client/fleet.py,sha256=t8nokMSpxSXyP_1j1LUexdbAJQ7aFmb_LY4L2y2-aog,31102
|
|
26
|
+
elasticsearch9/_async/client/graph.py,sha256=6GhE9XelFc5PRvh2x-6BnQ5v0E7Drz0ZNoMyXBOeSEc,5139
|
|
27
|
+
elasticsearch9/_async/client/ilm.py,sha256=-Y0GkOKzGxp9EnXV_8bV2l25giwjG9ZSjkYlQQSVFss,28647
|
|
28
|
+
elasticsearch9/_async/client/indices.py,sha256=_pq-ckVOURa1HmaCXfFXIXZScO_TPYywfxJni9gYq1g,278286
|
|
29
|
+
elasticsearch9/_async/client/inference.py,sha256=SCHYetySNOE46R6aoCHTb0hnalMVaI_jGTl1eLUiKHI,109105
|
|
30
|
+
elasticsearch9/_async/client/ingest.py,sha256=XtdqDNXpTDAnZtmzBUTeYbIVSBGJSMtL1MbMYCutwPk,32484
|
|
31
|
+
elasticsearch9/_async/client/license.py,sha256=mKaNGglbQMXDPjoGIN96tsY8ttUKrhea86MRtLvPZg0,16747
|
|
32
|
+
elasticsearch9/_async/client/logstash.py,sha256=hPIRBmdTt-QLM0Hkb7IkMCW3UL49Ng-p3fMD3Bo98Ss,6543
|
|
33
|
+
elasticsearch9/_async/client/migration.py,sha256=K2fMkjMQ97UAYcMciLkPI4nfoNGt_uR90eTjQhF5h0o,6419
|
|
34
|
+
elasticsearch9/_async/client/ml.py,sha256=01DGmiE7dNKxDSgxPstn-auygbRt4cQPeWx-Eqd_mcg,268493
|
|
35
|
+
elasticsearch9/_async/client/monitoring.py,sha256=xiHKDeFwLEUAbz4QQkQcSlxSZCQLLdW8Mj1jYrqHlYc,3853
|
|
36
|
+
elasticsearch9/_async/client/nodes.py,sha256=wK7U7zAY-F4NDPH667iQ0yP1RUBsekEBu9jsSzVG0cA,24051
|
|
37
|
+
elasticsearch9/_async/client/query_rules.py,sha256=Kc2iQ2gLY2k5zCLO_FblULFisV0-OQteWPXKvVFGR50,19455
|
|
38
|
+
elasticsearch9/_async/client/rollup.py,sha256=qxMIzum4tXEB-le_zkAQ1D3HdMQYC4iW2V69pTzX4r4,29148
|
|
39
|
+
elasticsearch9/_async/client/search_application.py,sha256=A6rBq6OeDvWkuDPe52x9Ix-QN6QogQUEyX3aC1YnAjs,22177
|
|
40
|
+
elasticsearch9/_async/client/searchable_snapshots.py,sha256=_HyYjE_43GQfM-8ffjyL8K3kV8xMsNUiQx3FgaS8btE,12718
|
|
41
|
+
elasticsearch9/_async/client/security.py,sha256=-nOk__dsh8Uyl8Z8Cdj1yZUJmyFq3WCxNpWPcdd-MIs,222591
|
|
42
|
+
elasticsearch9/_async/client/shutdown.py,sha256=qb-__6SIPhuvhg_FQFTslS_tmYMzkzWBkqbj8RXUG0k,13261
|
|
43
|
+
elasticsearch9/_async/client/simulate.py,sha256=APtHQjXhk7tJaWIuLeR1q6rCJXly9deHyTMuqAt6Vek,7351
|
|
44
|
+
elasticsearch9/_async/client/slm.py,sha256=5G8b2zRQvjB2f67woW8FvxYKxHchMEVM1MUklJEoB5Y,24386
|
|
45
|
+
elasticsearch9/_async/client/snapshot.py,sha256=fTGFX7iVEdvC_xIuq-dA-2XcgnlfwNjuOrxkqC4EEr4,76579
|
|
46
|
+
elasticsearch9/_async/client/sql.py,sha256=VgN_zHMmBERlyMdiCc_EZFPYfBnb6I1QOhG_JvjA9Ak,20130
|
|
47
|
+
elasticsearch9/_async/client/ssl.py,sha256=0RfIoBeJA2onEtiXxjV4H0g0iZIMUvIwAmViuDE1clQ,3779
|
|
48
|
+
elasticsearch9/_async/client/synonyms.py,sha256=DrbrbfM6yr2kDhk_lHE4-uuh1MQVD8ietCogC-AOARM,16330
|
|
49
|
+
elasticsearch9/_async/client/tasks.py,sha256=cbcQmrYcnBFebm98NX-HpmR5iiFkBTRPnxl1vyWs6bo,13694
|
|
50
|
+
elasticsearch9/_async/client/text_structure.py,sha256=pxQKoX3zKGcNQCUiSGu4IIm2Mz0s0YSVx9It_Qf_ixk,40677
|
|
51
|
+
elasticsearch9/_async/client/transform.py,sha256=4SQGW06bhWlAr7HeIQvpdFz1y6bFAWe5Vc5cWUumhY4,44430
|
|
52
|
+
elasticsearch9/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
|
|
53
|
+
elasticsearch9/_async/client/watcher.py,sha256=l1KZcf7vw6maXJ6I71xSEPgV6EicezHQkRjqS1Q80wc,38056
|
|
54
|
+
elasticsearch9/_async/client/xpack.py,sha256=hRZToaH7B7JLqVauZcT9s7prFYpTpTR3_f_Lnci-QwY,5140
|
|
55
|
+
elasticsearch9/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
56
|
+
elasticsearch9/_sync/client/__init__.py,sha256=P3EdFIQcuKGBrnc6JkvKMaqENAk2Oc3vYSXBbTm_4Xc,351181
|
|
57
|
+
elasticsearch9/_sync/client/_base.py,sha256=H3CZjE4sUUxVXCXSNsyIwBFuUJv8JS9Y5fujRqlqHjg,15424
|
|
58
|
+
elasticsearch9/_sync/client/async_search.py,sha256=fqdMKjdiezqJTu8IYNq82Si3sSojKH2aOlVDidtrctI,30552
|
|
59
|
+
elasticsearch9/_sync/client/autoscaling.py,sha256=lYfz7jJY4EqEhQ0oHRO_kQC7g7rvCXCAaGmQSavMMxg,11227
|
|
60
|
+
elasticsearch9/_sync/client/cat.py,sha256=SDfiVG8jtHxr9pf_2RIqTahGePpbPPzU4EICWwHZXkM,131763
|
|
61
|
+
elasticsearch9/_sync/client/ccr.py,sha256=yA5S-Sh1WW-mrUbChb2NPhISbIZi22rJEneGPhlSFHs,49774
|
|
62
|
+
elasticsearch9/_sync/client/cluster.py,sha256=NsQmITZxMcYpwqVS2AnD__pEqFbiwdKKqzPJ30lC4R8,60946
|
|
63
|
+
elasticsearch9/_sync/client/connector.py,sha256=vNIi6Gfs16OZPMmalgRupRM1EzwHeCOfs6-BYJpdoBg,78795
|
|
64
|
+
elasticsearch9/_sync/client/dangling_indices.py,sha256=XLbWVshsPitTEhUH5l5f2LmdpnxP1eWDrcA-_eWCeTE,8500
|
|
65
|
+
elasticsearch9/_sync/client/enrich.py,sha256=sVQPzarkrGW_9zKcT5GQdjhtaefv5bn2iTyBip2DCJc,11249
|
|
66
|
+
elasticsearch9/_sync/client/eql.py,sha256=nhrTQlcLgT9OviP8Pks_f9Trs2ju0l-1_1_n_eX2I24,15276
|
|
67
|
+
elasticsearch9/_sync/client/esql.py,sha256=JLaSQdaMjOheW3wci6ByI4lMb_P1YeezXDei0FUdvjQ,22681
|
|
68
|
+
elasticsearch9/_sync/client/features.py,sha256=3kewhf6BYSTH3-4S1wfe-DpEVmbIh8jxRhQlRL4oj2M,6178
|
|
69
|
+
elasticsearch9/_sync/client/fleet.py,sha256=mvnKv3aYnSMa6WnqVXvQmF0a_uSjny3mreOZ7ra4Sfk,31066
|
|
70
|
+
elasticsearch9/_sync/client/graph.py,sha256=G2YHBr0fhQDVq2U9AaLs2PSiVGnSbAelgkKEZJHKe5E,5127
|
|
71
|
+
elasticsearch9/_sync/client/ilm.py,sha256=ns2Ke1eX-o1j7KrNDEPblZkyKLkxVQQByJAg_LtSU-Y,28515
|
|
72
|
+
elasticsearch9/_sync/client/indices.py,sha256=tteTPFAOyF4t_IdOu5bODLwBXc8bGNMD3mE_mATpGrc,277530
|
|
73
|
+
elasticsearch9/_sync/client/inference.py,sha256=wfBJs6Ohj8FuxG0sv7pXewpLVKnP5hGGueLN2U1TCLY,108805
|
|
74
|
+
elasticsearch9/_sync/client/ingest.py,sha256=XsKRkakMQwxMq9_tWbSu9al40NMZmvd1kXJBQTj--Pw,32340
|
|
75
|
+
elasticsearch9/_sync/client/license.py,sha256=rhqk3rBSoTmqopFp7rGRFcQhWM6L32VifwEvkZiRNhI,16663
|
|
76
|
+
elasticsearch9/_sync/client/logstash.py,sha256=ajugUoJk7iUnggPGE6LzszbM3rJFIPj6_QeCqy8hKSo,6507
|
|
77
|
+
elasticsearch9/_sync/client/migration.py,sha256=NmjJ3g2lUw5Ym22sPJQznPQqPQuJQERJRIEy72hb-mo,6383
|
|
78
|
+
elasticsearch9/_sync/client/ml.py,sha256=PDDtHiDs3Wy03rLpCQlvOkk21kBDelLWp54KyTqe48M,267617
|
|
79
|
+
elasticsearch9/_sync/client/monitoring.py,sha256=cYUvFJ-Oizo-oV0DcWj-0KZmaW-C1VYzmarNIbnINb4,3841
|
|
80
|
+
elasticsearch9/_sync/client/nodes.py,sha256=lLHbiNIgcvjzgbontj54mNu0wtSi79R1-MLSiBFtuYI,23967
|
|
81
|
+
elasticsearch9/_sync/client/query_rules.py,sha256=uN1NhoJ7rwg_-fxZMO2LvH-RmooAo8HERKOX1DIVwAY,19359
|
|
82
|
+
elasticsearch9/_sync/client/rollup.py,sha256=tlsi7X3s2Q2VBIBYSsGukjsGR1-ihuHnoM1sW-ev-kE,29052
|
|
83
|
+
elasticsearch9/_sync/client/search_application.py,sha256=r4dzspXaos-fvzg0TikFcSCzvpWXliu-pD9YvcCB00o,22057
|
|
84
|
+
elasticsearch9/_sync/client/searchable_snapshots.py,sha256=W8iTPsUB3UmrmnOYE49EeTG4dMz5Oksk9UTxXSP1mXk,12670
|
|
85
|
+
elasticsearch9/_sync/client/security.py,sha256=Cj_yy0ot1k5__I7rC-GPUuO__653fLKAMTYovpZXRCI,221823
|
|
86
|
+
elasticsearch9/_sync/client/shutdown.py,sha256=RhE6j80lEni6dqkxI7l7wes3mA5QXJLAGeKWenF4XcE,13225
|
|
87
|
+
elasticsearch9/_sync/client/simulate.py,sha256=ddDWO4TE4xDj6prmUsiOepTQxSQBG6PWHzJaHjH2ECg,7339
|
|
88
|
+
elasticsearch9/_sync/client/slm.py,sha256=MfxM5T_0cuiaip6dYQspSxNua-fcWHLptmjHolvlkGU,24278
|
|
89
|
+
elasticsearch9/_sync/client/snapshot.py,sha256=xQKROkf6Yy81qT2MBHWEh3Hf8WJUw4Ndcom2RHb1FYg,76423
|
|
90
|
+
elasticsearch9/_sync/client/sql.py,sha256=jOQjOpRFOkEgoI6Uo9DCc5dCSlKMi34XragNjvsW7VA,20058
|
|
91
|
+
elasticsearch9/_sync/client/ssl.py,sha256=16GXY22cJ7gZ5mzcrKqBEMeVYXjnQlYuNULfRuEkFJk,3767
|
|
92
|
+
elasticsearch9/_sync/client/synonyms.py,sha256=9IhJqMJD5OhL1b7W526m4E7W4LyUsTpUS7NmzedH5LI,16246
|
|
93
|
+
elasticsearch9/_sync/client/tasks.py,sha256=07ftfAtJmIc32ooz-R7fMe_Rii-nyER8OUbwlMJsAvE,13658
|
|
94
|
+
elasticsearch9/_sync/client/text_structure.py,sha256=tGj93vxw8QaDhLTG-b-a25JNYyggidp8rUZ3i2Oc74s,40629
|
|
95
|
+
elasticsearch9/_sync/client/transform.py,sha256=IeYxrx_i76HWApUenw_zTbFdlxRUOH3E_DDj0ahVVQQ,44298
|
|
96
|
+
elasticsearch9/_sync/client/utils.py,sha256=DxEShkaJzeycquaEVLbYXo00DmAqsVlBk8hyEtObxew,17187
|
|
97
|
+
elasticsearch9/_sync/client/watcher.py,sha256=rqOdCTH7EjVwpwbLixl0W_JESe5BEz3_Dw8UxnmJzq8,37900
|
|
98
|
+
elasticsearch9/_sync/client/xpack.py,sha256=0xrYsLnw3fusUDozeFMB7JQWTXoT2NgpMkrCq7BxbE4,5116
|
|
99
|
+
elasticsearch9/dsl/__init__.py,sha256=IKzYnYwF2Xb4_xTRN_upDOHpYJgIP3iWXXmd7O_2lDc,4296
|
|
100
|
+
elasticsearch9/dsl/aggs.py,sha256=Iwx0y6vT0znNJEb7qwcBLMmSOf2muwZzdOAWCyZ_YqU,131379
|
|
101
|
+
elasticsearch9/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
|
|
102
|
+
elasticsearch9/dsl/async_connections.py,sha256=K57MB_Gbu6s4Bn_1pzy5iA32ur8imfKP7yC4XlSI11s,1451
|
|
103
|
+
elasticsearch9/dsl/connections.py,sha256=WxgUdq6PsQ6-ESG1pW6fab--VMm_IwlhH-J50XqeBZw,5176
|
|
104
|
+
elasticsearch9/dsl/document.py,sha256=VzUvFqntLx_uWxIhOlK9WwXXa63Bwrp0a_Ja4rCKOF8,957
|
|
105
|
+
elasticsearch9/dsl/document_base.py,sha256=r045luNNySLO-Jrv6wec43yKlQM_pEXcjvde4_7cMLk,15999
|
|
106
|
+
elasticsearch9/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
|
|
107
|
+
elasticsearch9/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
|
|
108
|
+
elasticsearch9/dsl/faceted_search_base.py,sha256=BlZzt8jY3P4rrKe30Szw2aZE2q36OVtOWwyJZPghYao,15354
|
|
109
|
+
elasticsearch9/dsl/field.py,sha256=uAgaJKpgaQMKHB7grSCYoFHE4GwpG4YamqQcBFEKUts,157423
|
|
110
|
+
elasticsearch9/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
|
|
111
|
+
elasticsearch9/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
|
|
112
|
+
elasticsearch9/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
|
|
113
|
+
elasticsearch9/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
|
|
114
|
+
elasticsearch9/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
|
|
115
|
+
elasticsearch9/dsl/query.py,sha256=vvSaD_Z5--jwdBKU7WoupAWf-wEiaDfNcMq9-wFtzcQ,103745
|
|
116
|
+
elasticsearch9/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
|
|
117
|
+
elasticsearch9/dsl/search_base.py,sha256=ApVSfUAtU0gf0RjRdz2jVY97FeXj6rh_IDjaIYrSkBU,34963
|
|
118
|
+
elasticsearch9/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
|
|
119
|
+
elasticsearch9/dsl/types.py,sha256=qxej6f7bfTP6SNOM0EdMxxdOwpNw8i7pD00V_vYgRps,202406
|
|
120
|
+
elasticsearch9/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
|
|
121
|
+
elasticsearch9/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
|
|
122
|
+
elasticsearch9/dsl/utils.py,sha256=WRupAUt432wZuyS49IpF2f6m0Ux79P9RthkG2FM4pFw,22977
|
|
123
|
+
elasticsearch9/dsl/wrappers.py,sha256=W1EW5H9uRAOewFLzYRQeMnZp358-w7_1XujmNFKsQb8,4099
|
|
124
|
+
elasticsearch9/dsl/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
125
|
+
elasticsearch9/dsl/_async/document.py,sha256=knCXN_hRKFldUF6dC8kGr-AcTwZCXhcvgSqbkpeMCVE,19347
|
|
126
|
+
elasticsearch9/dsl/_async/faceted_search.py,sha256=6I6ZNCfYHKSWwqfXv7b1Mb9gYark76XtWcpukTign9Q,1743
|
|
127
|
+
elasticsearch9/dsl/_async/index.py,sha256=ci8i3NxqOb_irt0GYHhvb2POEu-maKQgL6ox3GLOZlw,22765
|
|
128
|
+
elasticsearch9/dsl/_async/mapping.py,sha256=5MmAuBXh17EvTKpyLi24B1aFiJwvspYMfJim8Omx1ks,1759
|
|
129
|
+
elasticsearch9/dsl/_async/search.py,sha256=I8sQdoUM8Vhz40TJmD5ILxWaANdOlOxTt7RbN-A2mQE,8227
|
|
130
|
+
elasticsearch9/dsl/_async/update_by_query.py,sha256=YsqNb03V8Zyq52_wdJOFC5At5ujvlTcwtU85m3PlbhA,1641
|
|
131
|
+
elasticsearch9/dsl/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
132
|
+
elasticsearch9/dsl/_sync/document.py,sha256=vHRIU1lEyY13SRnsVjg9DKWRXllC4m_Ee2tZpKrp-20,18940
|
|
133
|
+
elasticsearch9/dsl/_sync/faceted_search.py,sha256=HVBXlwZQ3ld150RkGCXyxeZ3dHAwZDQTCCJQqJpGxog,1694
|
|
134
|
+
elasticsearch9/dsl/_sync/index.py,sha256=DpUmWTUXDRqRlVHN9eeCMLvb0Xvx0-bGa4XHtb12RLQ,21635
|
|
135
|
+
elasticsearch9/dsl/_sync/mapping.py,sha256=yRRE3lMj5DNkDson2fA2ZHVuotjNwZws7qcUoakKhlQ,1682
|
|
136
|
+
elasticsearch9/dsl/_sync/search.py,sha256=nAm5XPN8TBW1f-vqFyUTKf9dSvt9w708lxdgMSJJ9IU,7881
|
|
137
|
+
elasticsearch9/dsl/_sync/update_by_query.py,sha256=pUnHuLne_r2u3hh0OtZvM-TnP-Jf_UOuAmGwWopGPZU,1570
|
|
138
|
+
elasticsearch9/dsl/response/__init__.py,sha256=WOmfs3vb_KzM9kRfxsw0z4lZvf4OFP-vpY-4hSiiPYk,13786
|
|
139
|
+
elasticsearch9/dsl/response/aggs.py,sha256=Unqp-acPQjqGbCTs1j0UhXQJjWuzjikySz__5BCIx_E,3394
|
|
140
|
+
elasticsearch9/dsl/response/hit.py,sha256=SCMeVQz4gsID4xgp3iGcpBw_XY5nbSDQ8B_RyDwgUnU,2111
|
|
141
|
+
elasticsearch9/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
|
|
142
|
+
elasticsearch9/helpers/actions.py,sha256=A4IVl8TrCdqk2mnZ_KQggeMolDEHBaesk2qDygE8skE,32378
|
|
143
|
+
elasticsearch9/helpers/errors.py,sha256=5khkK4zbXsk4ry8HDmGfyzlmZI9KSKP-MivCgcPoO5U,1506
|
|
144
|
+
elasticsearch9/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
|
|
145
|
+
elasticsearch9/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
|
|
146
|
+
elasticsearch9/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
147
|
+
elasticsearch9/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
|
|
148
|
+
elasticsearch9/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
|
|
149
|
+
elasticsearch9/helpers/vectorstore/_async/strategies.py,sha256=30s8zxn-mbImS_wGnAVUDU7fBsdTenyv8gbf0XoqZFg,16177
|
|
150
|
+
elasticsearch9/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
|
|
151
|
+
elasticsearch9/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
152
|
+
elasticsearch9/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
|
|
153
|
+
elasticsearch9/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
|
|
154
|
+
elasticsearch9/helpers/vectorstore/_sync/strategies.py,sha256=3ngdKfLNatqiwCjpAW51dT3Bx6gfT97ALD-gDAy6kxE,16075
|
|
155
|
+
elasticsearch9/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
|
|
156
|
+
elasticsearch9-9.0.0.dist-info/METADATA,sha256=MvQhLUwv8HbHBi4cmzJm9SDfCzeAQQ8fUamrCsFAJyM,8483
|
|
157
|
+
elasticsearch9-9.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
158
|
+
elasticsearch9-9.0.0.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
|
|
159
|
+
elasticsearch9-9.0.0.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
|
|
160
|
+
elasticsearch9-9.0.0.dist-info/RECORD,,
|