elasticsearch 8.13.2__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.
Files changed (96) hide show
  1. elasticsearch/_async/client/__init__.py +204 -169
  2. elasticsearch/_async/client/async_search.py +35 -20
  3. elasticsearch/_async/client/autoscaling.py +4 -4
  4. elasticsearch/_async/client/cat.py +785 -180
  5. elasticsearch/_async/client/ccr.py +20 -32
  6. elasticsearch/_async/client/cluster.py +94 -88
  7. elasticsearch/_async/client/connector.py +1470 -0
  8. elasticsearch/_async/client/dangling_indices.py +7 -11
  9. elasticsearch/_async/client/enrich.py +8 -8
  10. elasticsearch/_async/client/eql.py +17 -16
  11. elasticsearch/_async/client/esql.py +2 -2
  12. elasticsearch/_async/client/features.py +2 -2
  13. elasticsearch/_async/client/fleet.py +18 -17
  14. elasticsearch/_async/client/graph.py +4 -4
  15. elasticsearch/_async/client/ilm.py +36 -44
  16. elasticsearch/_async/client/indices.py +401 -411
  17. elasticsearch/_async/client/inference.py +65 -39
  18. elasticsearch/_async/client/ingest.py +22 -23
  19. elasticsearch/_async/client/license.py +18 -10
  20. elasticsearch/_async/client/logstash.py +6 -6
  21. elasticsearch/_async/client/migration.py +3 -3
  22. elasticsearch/_async/client/ml.py +383 -176
  23. elasticsearch/_async/client/monitoring.py +2 -2
  24. elasticsearch/_async/client/nodes.py +32 -32
  25. elasticsearch/_async/client/query_rules.py +384 -0
  26. elasticsearch/_async/client/rollup.py +13 -13
  27. elasticsearch/_async/client/search_application.py +15 -10
  28. elasticsearch/_async/client/searchable_snapshots.py +9 -13
  29. elasticsearch/_async/client/security.py +587 -104
  30. elasticsearch/_async/client/shutdown.py +7 -7
  31. elasticsearch/_async/client/slm.py +11 -13
  32. elasticsearch/_async/client/snapshot.py +39 -52
  33. elasticsearch/_async/client/sql.py +12 -14
  34. elasticsearch/_async/client/ssl.py +1 -1
  35. elasticsearch/_async/client/synonyms.py +8 -8
  36. elasticsearch/_async/client/tasks.py +9 -10
  37. elasticsearch/_async/client/text_structure.py +3 -3
  38. elasticsearch/_async/client/transform.py +89 -34
  39. elasticsearch/_async/client/watcher.py +30 -15
  40. elasticsearch/_async/client/xpack.py +6 -7
  41. elasticsearch/_otel.py +2 -6
  42. elasticsearch/_sync/client/__init__.py +204 -169
  43. elasticsearch/_sync/client/async_search.py +35 -20
  44. elasticsearch/_sync/client/autoscaling.py +4 -4
  45. elasticsearch/_sync/client/cat.py +785 -180
  46. elasticsearch/_sync/client/ccr.py +20 -32
  47. elasticsearch/_sync/client/cluster.py +94 -88
  48. elasticsearch/_sync/client/connector.py +1470 -0
  49. elasticsearch/_sync/client/dangling_indices.py +7 -11
  50. elasticsearch/_sync/client/enrich.py +8 -8
  51. elasticsearch/_sync/client/eql.py +17 -16
  52. elasticsearch/_sync/client/esql.py +2 -2
  53. elasticsearch/_sync/client/features.py +2 -2
  54. elasticsearch/_sync/client/fleet.py +18 -17
  55. elasticsearch/_sync/client/graph.py +4 -4
  56. elasticsearch/_sync/client/ilm.py +36 -44
  57. elasticsearch/_sync/client/indices.py +401 -411
  58. elasticsearch/_sync/client/inference.py +65 -39
  59. elasticsearch/_sync/client/ingest.py +22 -23
  60. elasticsearch/_sync/client/license.py +18 -10
  61. elasticsearch/_sync/client/logstash.py +6 -6
  62. elasticsearch/_sync/client/migration.py +3 -3
  63. elasticsearch/_sync/client/ml.py +383 -176
  64. elasticsearch/_sync/client/monitoring.py +2 -2
  65. elasticsearch/_sync/client/nodes.py +32 -32
  66. elasticsearch/_sync/client/query_rules.py +384 -0
  67. elasticsearch/_sync/client/rollup.py +13 -13
  68. elasticsearch/_sync/client/search_application.py +15 -10
  69. elasticsearch/_sync/client/searchable_snapshots.py +9 -13
  70. elasticsearch/_sync/client/security.py +587 -104
  71. elasticsearch/_sync/client/shutdown.py +7 -7
  72. elasticsearch/_sync/client/slm.py +11 -13
  73. elasticsearch/_sync/client/snapshot.py +39 -52
  74. elasticsearch/_sync/client/sql.py +12 -14
  75. elasticsearch/_sync/client/ssl.py +1 -1
  76. elasticsearch/_sync/client/synonyms.py +8 -8
  77. elasticsearch/_sync/client/tasks.py +9 -10
  78. elasticsearch/_sync/client/text_structure.py +3 -3
  79. elasticsearch/_sync/client/transform.py +89 -34
  80. elasticsearch/_sync/client/watcher.py +30 -15
  81. elasticsearch/_sync/client/xpack.py +6 -7
  82. elasticsearch/_version.py +1 -1
  83. elasticsearch/client.py +3 -3
  84. elasticsearch/helpers/vectorstore/_async/vectorstore.py +36 -6
  85. elasticsearch/helpers/vectorstore/_sync/vectorstore.py +36 -6
  86. elasticsearch/serializer.py +34 -1
  87. elasticsearch-8.15.0.dist-info/METADATA +177 -0
  88. elasticsearch-8.15.0.dist-info/RECORD +117 -0
  89. {elasticsearch-8.13.2.dist-info → elasticsearch-8.15.0.dist-info}/WHEEL +1 -2
  90. elasticsearch/_async/client/query_ruleset.py +0 -205
  91. elasticsearch/_sync/client/query_ruleset.py +0 -205
  92. elasticsearch-8.13.2.dist-info/METADATA +0 -147
  93. elasticsearch-8.13.2.dist-info/RECORD +0 -116
  94. elasticsearch-8.13.2.dist-info/top_level.txt +0 -1
  95. {elasticsearch-8.13.2.dist-info → elasticsearch-8.15.0.dist-info/licenses}/LICENSE +0 -0
  96. {elasticsearch-8.13.2.dist-info → elasticsearch-8.15.0.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
- async 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.13/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 await 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
- async 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.13/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 await 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
- async 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.13/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 await 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
- async 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.13/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 await 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,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.13/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.13/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.13/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.13/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,147 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: elasticsearch
3
- Version: 8.13.2
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
- License
145
- -------
146
-
147
- 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=0P-o-HdbMQa0vGhTZYE8ZkuZ9v7zXoV3M6M0wUoqfrs,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=hPBqMHweVES7ixgKhe5KMMQGAdDamzW-PAn7jX8uqcs,7122
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=0JS0lH4tghGRfN5I2TiUv6f0VsF4et_cCD3lD7vDFao,240323
14
- elasticsearch/_async/client/_base.py,sha256=wDJIs-4Z_fDBF0_XvfCmfSuyL6Oh8I2nSGDZyP91XCU,15531
15
- elasticsearch/_async/client/async_search.py,sha256=bv2GC_5ZPX3HpOHCJLf7-CzjPxEQSyhWTlbn7K40ODY,29238
16
- elasticsearch/_async/client/autoscaling.py,sha256=eV4PGsQc3F-ykw8nRfRZcjD0Xr_0eo1oFbOh5nBBvok,7741
17
- elasticsearch/_async/client/cat.py,sha256=rlHO5f9azfSOdM8AYSpdV-Xd2W82IHgY4hHg6abZtcM,116630
18
- elasticsearch/_async/client/ccr.py,sha256=WZ2xAJL-9yOWAXTsZ5rLkeiuLYRIdS-8yqcIqeo_VOo,37130
19
- elasticsearch/_async/client/cluster.py,sha256=PJ7iJro2IbPBy7jzJpVGMzKw40Z1PfOCzpcPEUQlDfI,48228
20
- elasticsearch/_async/client/dangling_indices.py,sha256=pFYTelqsQbu0cALWsY9Pvl3d3UAR96uukcsF49FodNM,6994
21
- elasticsearch/_async/client/enrich.py,sha256=Y1yde33cEQE8nYQLqU2dizrFiCR-Ug1J1Z-5yRcrMvo,9657
22
- elasticsearch/_async/client/eql.py,sha256=0jfhguZpxFVs4B4XQu_6bYrjLU1Ky3oJlOpfjwAG7aY,13151
23
- elasticsearch/_async/client/esql.py,sha256=o3Eoh9fq2vSiSP9vh5o_5cJTuwvjfHvQ55V_Gof30BY,4568
24
- elasticsearch/_async/client/features.py,sha256=X5V_xH_vN7vjP_azl1_YBQwS1MxPcwwZ-9u0LrvJKtQ,3550
25
- elasticsearch/_async/client/fleet.py,sha256=LUNJzVdhlGjYTGC5vq6iulWhPwP_v6UdTre9lnJGJ_g,30938
26
- elasticsearch/_async/client/graph.py,sha256=5HadFDz-kmmzEctkmPWRygooNp1Ir_UlWmO0QmuuUW8,4578
27
- elasticsearch/_async/client/ilm.py,sha256=UZXOsaeJWgiBN2mEzq93d2jg8ZFe7bJTMNVLcOoq07k,23668
28
- elasticsearch/_async/client/indices.py,sha256=vodmPAikIxQ-KCocdk-I7RBJKprcFV-wU_lStlpSATM,212565
29
- elasticsearch/_async/client/inference.py,sha256=2kArAFQbbD9zRyILxIfHJdsjkZl5DX_glcR2QWoWHEk,11221
30
- elasticsearch/_async/client/ingest.py,sha256=5V8fur9z4Vkv4p-3geOfc1ek5N8qJ6CvWbdFbdy9t9U,15234
31
- elasticsearch/_async/client/license.py,sha256=kuqW-yfOVdsDHh5puu7_tD_LN7JU0Axt0AtE5ttx8jc,12100
32
- elasticsearch/_async/client/logstash.py,sha256=JrvbrTi9sCO-GzOe3lBWcaIOPkYFqzenCkYw_B6JW7Q,6127
33
- elasticsearch/_async/client/migration.py,sha256=It0NTjXaN-UW8keaNURglL4rYbOmAvTbHD7QlFBOJg4,5331
34
- elasticsearch/_async/client/ml.py,sha256=tckls24jxPSOb_OA3f6plc0DDLfKhwddhpAoVfyr0gU,241082
35
- elasticsearch/_async/client/monitoring.py,sha256=ZQSiQ8AXfu_8_--cHOpfhjpsQkQZekmBlPiOLAYotpw,3822
36
- elasticsearch/_async/client/nodes.py,sha256=xmLfm0cPsQSjH_WKyzGKHI6IhgT9gKhj3XrsJdTXL5w,23723
37
- elasticsearch/_async/client/query_ruleset.py,sha256=vBgpKRYL0X7giU05Vw6-pXre10W81zGoALWL_XAnkRM,7606
38
- elasticsearch/_async/client/rollup.py,sha256=g_zc1KwIW9Bms2XPO0jkaqhrDGVy05WvA1pYYBfgyLc,20828
39
- elasticsearch/_async/client/search_application.py,sha256=2UWgrM69Ai-O6oMbBrUxmW9BBBdTDI_UPGFzW86wIFU,15047
40
- elasticsearch/_async/client/searchable_snapshots.py,sha256=WsRPKq-ZjFwt7nj6GPCib1RwR7f5YG-Qo58BgZxJpqc,11694
41
- elasticsearch/_async/client/security.py,sha256=OJ7vXLuIja8VGHZIxteLjuEcMaLyfKUGOi75f-N54Eo,129415
42
- elasticsearch/_async/client/shutdown.py,sha256=Ckk_YcGy1yO2PuD0LDIulxkFFcmx4t7V3z_thRUWkEw,11364
43
- elasticsearch/_async/client/slm.py,sha256=lVnfb9LERioxR9frUwZA6l9UZaQcb3sYzBBLo1fuimE,16150
44
- elasticsearch/_async/client/snapshot.py,sha256=c6FSTngRw5PQK1UEFlA_vXPZOmbHMFi9FtT63y_mbbE,37085
45
- elasticsearch/_async/client/sql.py,sha256=vpi8pO5vc1RYMtPtnzBqZj86Hj-x9vELQcyx0znefZw,17876
46
- elasticsearch/_async/client/ssl.py,sha256=eIM45o0D0KWoFaJn9ckUogA4bZPiLgXSM1A0jc3ZKag,2261
47
- elasticsearch/_async/client/synonyms.py,sha256=DP0rSX-0DNalZxhLIeujrZzv3lT0oHhTcVfU4LRAlCM,13797
48
- elasticsearch/_async/client/tasks.py,sha256=Bn59PIu-7QUTXLdOtw2UJeoHynWyBTSTh6UdcAzWnX4,8983
49
- elasticsearch/_async/client/text_structure.py,sha256=6xyHzJoBBhU0E7WWCliSb3dUPXaZigfERN1-X67tv7U,12050
50
- elasticsearch/_async/client/transform.py,sha256=xzTwFxajyDkvO84BsVAkZyUu6N8JPtVp3ZudBLJtChg,37158
51
- elasticsearch/_async/client/utils.py,sha256=JwFOxo-YrRg4exXlpiUuOG1uNtJKP_VeK0HgrCJSN98,1367
52
- elasticsearch/_async/client/watcher.py,sha256=rp8cX_RgvpPp0Zny0fXPQ6Tx-oik2l3y38z1n8b4h44,25760
53
- elasticsearch/_async/client/xpack.py,sha256=yNFQduIcpIfbvY2-spbOOoQWQbKl0yx71mB-tMV9Sic,4490
54
- elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
55
- elasticsearch/_sync/client/__init__.py,sha256=WhHCGYW8u7czxp1LTiqC6DMgwzM5DocqP_i8mCkvr3k,239692
56
- elasticsearch/_sync/client/_base.py,sha256=LesRKQzvgstEPn-hzoY7PBq_4hAyPCzjGiUggGn-fB8,15461
57
- elasticsearch/_sync/client/async_search.py,sha256=miChWFtoXb8UhC4mrfzcM0vXxxOAoHsno1zJVey2vHM,29190
58
- elasticsearch/_sync/client/autoscaling.py,sha256=eSNyAXvp7TkYTVthPd8ez5UpCq_UrAYVEWGQw0cjriI,7693
59
- elasticsearch/_sync/client/cat.py,sha256=Efx7JLy4EDWlpK8J6JeYtzMqOufXq-RZ1XKnDugwyR4,116318
60
- elasticsearch/_sync/client/ccr.py,sha256=TVTCneIbotVaRHy1jqi0DKwo62aGlf85x_CJFbZKiYc,36974
61
- elasticsearch/_sync/client/cluster.py,sha256=w8PLsuEQhIrkOwqiXozL0-swMAJ8gg59_DIUI0WjXAY,48036
62
- elasticsearch/_sync/client/dangling_indices.py,sha256=-mQzSrtXLsgtyxwEPNxYAzYtMsjt4QAX9URfwBa__n4,6958
63
- elasticsearch/_sync/client/enrich.py,sha256=Y_GJDkPaHbHNftSpkydNva1Gikyi7aFkFTH4MP7YwWg,9597
64
- elasticsearch/_sync/client/eql.py,sha256=J5H6GflcKr_s88o8zA-vobkVOeZ5IPvXp6iLc3wpVDA,13103
65
- elasticsearch/_sync/client/esql.py,sha256=6dRo8-Xw4-7K35_aVjq3EYq07nFfeUOhsjahHRr8400,4556
66
- elasticsearch/_sync/client/features.py,sha256=j0r9LS3CWCt1vKuux8SSH8CEKezo3Cs6LYkFJQb-HsE,3526
67
- elasticsearch/_sync/client/fleet.py,sha256=3msamszCfc6GixrgpuGgQzBMagdtUuSE_OjrTkcNQ80,30902
68
- elasticsearch/_sync/client/graph.py,sha256=_Oem6ZUOCMm7mi5T7mc9Z1aLfL2lHRcpWcdA3KLPLG0,4566
69
- elasticsearch/_sync/client/ilm.py,sha256=EzW7oUDfD1Ys064gXo3eR_zqDG88C3x90WXLZnT8S4E,23536
70
- elasticsearch/_sync/client/indices.py,sha256=GJKLOPGxwXN3oJzL5NvBN0AlWj_rRH97IkGZ-gHQBdw,211857
71
- elasticsearch/_sync/client/inference.py,sha256=3uNfiAwQmf-2fcQI-afN0MI1yYwu_kJ1eU4sG5BbCF0,11173
72
- elasticsearch/_sync/client/ingest.py,sha256=UY-x1MXjnD2LkbX8O2qa5Ag6eD4lzf4LeZO8onlYI8E,15162
73
- elasticsearch/_sync/client/license.py,sha256=tEc366OvzPh9OFbgCMAo8dyw7wjajIcNQyfAX-uin3I,12016
74
- elasticsearch/_sync/client/logstash.py,sha256=2Mpd3y-wNR3H7wsFW2riiB6bbobctNoMW22VOvDbN2s,6091
75
- elasticsearch/_sync/client/migration.py,sha256=dJ27K1SLcJn4XyBvyPFVocjxHtsAyf2vuOQl52uxK64,5295
76
- elasticsearch/_sync/client/ml.py,sha256=7YgW9g5MQ4KUhI05X_mp7zDHwmRhDAXc0UahK_7qmwM,240206
77
- elasticsearch/_sync/client/monitoring.py,sha256=Wh2RTfFOOm5ssbdGv0_gSDS2og1L8ATJamLuUuNrBYU,3810
78
- elasticsearch/_sync/client/nodes.py,sha256=YloTg5V90lyGeoY_XU_2X2aeLHOpPss1g7Kp0hR2EF4,23639
79
- elasticsearch/_sync/client/query_ruleset.py,sha256=dRzaVZVYLtlRi6PJVGQTPXCKCJuuf6fkU6wug-zmmXs,7558
80
- elasticsearch/_sync/client/rollup.py,sha256=ow9wty2HE3doDEMcg-krKWmbgDsAD6brZe6IuenlV94,20732
81
- elasticsearch/_sync/client/search_application.py,sha256=QWZqLxnaNo7XDg1xQPa0dY2j8LiJn03DDxiygJirqEc,14951
82
- elasticsearch/_sync/client/searchable_snapshots.py,sha256=ehDowrZcltn4DJUkswyTOXk16QxVHdnid1fb_SdZ9UY,11646
83
- elasticsearch/_sync/client/security.py,sha256=P8hvujP7dJYA1xsmbcLRQVmR586qRMgIHEn3p-QECs8,128803
84
- elasticsearch/_sync/client/shutdown.py,sha256=YWT70DR1u4wBh1kKAtO-9hkJTm8OrYfTuUiLshwxebM,11328
85
- elasticsearch/_sync/client/slm.py,sha256=WaMu3iQtftjelmfHyZUExLpzfkwJKS-iR218VZzPOiA,16042
86
- elasticsearch/_sync/client/snapshot.py,sha256=pB1Gsv2kmmb-uyLlSRdd0K-g2B7xCFojyk3KgGsu7a0,36953
87
- elasticsearch/_sync/client/sql.py,sha256=nYmSwJ1JzNsTL0WR3UysSyysjYToN9oVuaqQmubH0Wg,17804
88
- elasticsearch/_sync/client/ssl.py,sha256=XNLr7EHo1t15n8eSXqqP3Til9KonPYfUEPYmfA6Cqz8,2249
89
- elasticsearch/_sync/client/synonyms.py,sha256=H71TNHLZcHkfCD5YHxJ5BzcHHa-R-jP1u2LPL4Xeq5Y,13713
90
- elasticsearch/_sync/client/tasks.py,sha256=83-cbfM13V6Q7NQrs_N8DtdayOJcXT2S7PRTvo7K-3s,8947
91
- elasticsearch/_sync/client/text_structure.py,sha256=tCY_BYHqYVp7Ny8WDWtY8TQsZo1h1asnUjU0upy-hgk,12026
92
- elasticsearch/_sync/client/transform.py,sha256=dDZFSRyXLGFHJfcJZgFdJLIDeBvMntyS9FfwOgmwEow,37026
93
- elasticsearch/_sync/client/utils.py,sha256=QKgoK3f87YPa5R5v7_TN8ib8JircbfI_R5RQXeEOKiU,17209
94
- elasticsearch/_sync/client/watcher.py,sha256=8EiLxC0eMOyHvuBFvkfG3SVJ1Mp-PUwJAC3PxwEefw8,25628
95
- elasticsearch/_sync/client/xpack.py,sha256=PzQCp2i4nNzCtV1HGtLYuwqUDGnIe4On7f2Wyrh63fI,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.13.2.dist-info/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
112
- elasticsearch-8.13.2.dist-info/METADATA,sha256=Eex24ZRMP8r810PL3irLjbwO0c_KeWgszymGV2Q6k8M,6464
113
- elasticsearch-8.13.2.dist-info/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
114
- elasticsearch-8.13.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
115
- elasticsearch-8.13.2.dist-info/top_level.txt,sha256=Jp2bLWq49skvCN4YCZsg1Hfn_NDLgleC-x-Bn01_HgM,14
116
- elasticsearch-8.13.2.dist-info/RECORD,,