elasticsearch 7.17.9__py2.py3-none-any.whl → 7.17.13__py2.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/_version.py +1 -1
- elasticsearch/helpers/test.py +3 -1
- elasticsearch/serializer.py +0 -1
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info}/METADATA +39 -18
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info}/RECORD +9 -9
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info}/WHEEL +1 -1
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info/licenses}/LICENSE +0 -0
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info/licenses}/NOTICE +0 -0
- {elasticsearch-7.17.9.dist-info → elasticsearch-7.17.13.dist-info}/top_level.txt +0 -0
elasticsearch/_version.py
CHANGED
elasticsearch/helpers/test.py
CHANGED
|
@@ -30,7 +30,9 @@ if "ELASTICSEARCH_URL" in os.environ:
|
|
|
30
30
|
else:
|
|
31
31
|
ELASTICSEARCH_URL = "https://elastic:changeme@localhost:9200"
|
|
32
32
|
|
|
33
|
-
CA_CERTS =
|
|
33
|
+
CA_CERTS = None
|
|
34
|
+
if ELASTICSEARCH_URL.startswith("https://"):
|
|
35
|
+
CA_CERTS = join(dirname(dirname(dirname(abspath(__file__)))), ".ci/certs/ca.pem")
|
|
34
36
|
|
|
35
37
|
|
|
36
38
|
def get_test_client(nowait=False, **kwargs):
|
elasticsearch/serializer.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: elasticsearch
|
|
3
|
-
Version: 7.17.
|
|
3
|
+
Version: 7.17.13
|
|
4
4
|
Summary: Python client for Elasticsearch
|
|
5
5
|
Home-page: https://github.com/elastic/elasticsearch-py
|
|
6
6
|
Author: Honza Král, Nick Lang
|
|
@@ -25,32 +25,53 @@ Classifier: Programming Language :: Python :: 3.6
|
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.7
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.8
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.9
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
32
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
28
33
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
34
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
30
35
|
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
|
|
31
36
|
Description-Content-Type: text/x-rst
|
|
32
37
|
License-File: LICENSE
|
|
33
38
|
License-File: NOTICE
|
|
34
|
-
Requires-Dist: urllib3
|
|
39
|
+
Requires-Dist: urllib3<2,>=1.21.1; python_version < "3.10"
|
|
40
|
+
Requires-Dist: urllib3<3,>=1.21.1; python_version >= "3.10"
|
|
35
41
|
Requires-Dist: certifi
|
|
36
|
-
Provides-Extra: async
|
|
37
|
-
Requires-Dist: aiohttp (<4,>=3) ; extra == 'async'
|
|
38
42
|
Provides-Extra: develop
|
|
39
|
-
Requires-Dist: requests
|
|
40
|
-
Requires-Dist: coverage
|
|
41
|
-
Requires-Dist: mock
|
|
42
|
-
Requires-Dist: pyyaml
|
|
43
|
-
Requires-Dist: pytest
|
|
44
|
-
Requires-Dist: pytest-cov
|
|
45
|
-
Requires-Dist: sphinx
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist: black
|
|
48
|
-
Requires-Dist: jinja2
|
|
43
|
+
Requires-Dist: requests<3.0.0,>=2.0.0; extra == "develop"
|
|
44
|
+
Requires-Dist: coverage; extra == "develop"
|
|
45
|
+
Requires-Dist: mock; extra == "develop"
|
|
46
|
+
Requires-Dist: pyyaml; extra == "develop"
|
|
47
|
+
Requires-Dist: pytest; extra == "develop"
|
|
48
|
+
Requires-Dist: pytest-cov; extra == "develop"
|
|
49
|
+
Requires-Dist: sphinx<1.7; extra == "develop"
|
|
50
|
+
Requires-Dist: sphinx_rtd_theme; extra == "develop"
|
|
51
|
+
Requires-Dist: black; extra == "develop"
|
|
52
|
+
Requires-Dist: jinja2; extra == "develop"
|
|
49
53
|
Provides-Extra: docs
|
|
50
|
-
Requires-Dist: sphinx
|
|
51
|
-
Requires-Dist:
|
|
54
|
+
Requires-Dist: sphinx<1.7; extra == "docs"
|
|
55
|
+
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
52
56
|
Provides-Extra: requests
|
|
53
|
-
Requires-Dist: requests
|
|
57
|
+
Requires-Dist: requests<3.0.0,>=2.4.0; extra == "requests"
|
|
58
|
+
Provides-Extra: async
|
|
59
|
+
Requires-Dist: aiohttp<4,>=3; extra == "async"
|
|
60
|
+
Dynamic: author
|
|
61
|
+
Dynamic: author-email
|
|
62
|
+
Dynamic: classifier
|
|
63
|
+
Dynamic: description
|
|
64
|
+
Dynamic: description-content-type
|
|
65
|
+
Dynamic: home-page
|
|
66
|
+
Dynamic: license
|
|
67
|
+
Dynamic: license-file
|
|
68
|
+
Dynamic: maintainer
|
|
69
|
+
Dynamic: maintainer-email
|
|
70
|
+
Dynamic: project-url
|
|
71
|
+
Dynamic: provides-extra
|
|
72
|
+
Dynamic: requires-dist
|
|
73
|
+
Dynamic: requires-python
|
|
74
|
+
Dynamic: summary
|
|
54
75
|
|
|
55
76
|
|
|
56
77
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
elasticsearch/__init__.py,sha256=xugicKzbGRAiBIFEGkXlBwERxtk29uw0phlhX7FEpVU,3559
|
|
2
2
|
elasticsearch/__init__.pyi,sha256=beYuxOMnPK20DX3qku13R4Q0qs4_n79yPKOnGBuwq1o,2702
|
|
3
|
-
elasticsearch/_version.py,sha256
|
|
3
|
+
elasticsearch/_version.py,sha256=-FZZnVy7ofE_ZHmUaxttoD7_EU13GIYYRDzc6ctnyNo,815
|
|
4
4
|
elasticsearch/compat.py,sha256=nRLIDlLRtvlXrKN2WGkggmUKDcYHAG8GeZy2fCwDyrw,2350
|
|
5
5
|
elasticsearch/compat.pyi,sha256=AFFckLO9m4lU2CeC5gdJSydttvHxrFf09CyuqP_b_QQ,1660
|
|
6
6
|
elasticsearch/connection_pool.py,sha256=S-I9VlEvmKIiZzbT0BILpQDSVfsIB7V9VZVdL4gS2tY,11505
|
|
@@ -8,7 +8,7 @@ elasticsearch/connection_pool.pyi,sha256=a3sNCiSGCnkH2LmnIvgyT9af4DjNTbMrlzCVwn5
|
|
|
8
8
|
elasticsearch/exceptions.py,sha256=W4Tj2uYhSpqZCkMKFX0FCZ6SIQGnDnPIfq_6-zo_J_4,5267
|
|
9
9
|
elasticsearch/exceptions.pyi,sha256=iiSWdraQ5NQ-X_dwJPKfZjw4JZw4TxOO2lCTNj07haY,1858
|
|
10
10
|
elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
elasticsearch/serializer.py,sha256=
|
|
11
|
+
elasticsearch/serializer.py,sha256=nR-_xHiNgC2qx86hJhXH5n8xAi-fIALKiWnzm06eEUQ,7524
|
|
12
12
|
elasticsearch/serializer.pyi,sha256=drA5Yto11fZJ9EDr85_OMmyQNkednM-Jo7eTK5y9IlM,1736
|
|
13
13
|
elasticsearch/transport.py,sha256=7pSLzP6ySQLsJZUC57zTI4yQei59fCfFpY5IyjOQJiI,28068
|
|
14
14
|
elasticsearch/transport.pyi,sha256=tZxXKY8FbjjeKLkA37u4YFa-E2oljzQ08Xb5SwBoKlQ,3259
|
|
@@ -192,11 +192,11 @@ elasticsearch/helpers/actions.py,sha256=3N6z5DrundKKk_-HyqtRhg7XxE1SZ8ob5HbuyW9J
|
|
|
192
192
|
elasticsearch/helpers/actions.pyi,sha256=X1FQ_2S8lsH8ORVrJyXeA4wQDA0IgG6gIu53he3KPpM,3582
|
|
193
193
|
elasticsearch/helpers/errors.py,sha256=5tUBxn0wKQdq5hXGkxJ7o7Z1PfMvhP02Vro_FWsUCj0,1214
|
|
194
194
|
elasticsearch/helpers/errors.pyi,sha256=Sys5SYKmyF_iKBu72f7bWUDcU9qiH6rg0r0uwJlmUMo,1106
|
|
195
|
-
elasticsearch/helpers/test.py,sha256=
|
|
195
|
+
elasticsearch/helpers/test.py,sha256=kT9qwypoJVXaT3v3iBFMmhioLLpJ0pNMh3yUjGOY9mg,3233
|
|
196
196
|
elasticsearch/helpers/test.pyi,sha256=ywlcwfTBgXVymR8rq4WMmq9w5_imxDU44NWU_o84tV0,1319
|
|
197
|
-
elasticsearch-7.17.
|
|
198
|
-
elasticsearch-7.17.
|
|
199
|
-
elasticsearch-7.17.
|
|
200
|
-
elasticsearch-7.17.
|
|
201
|
-
elasticsearch-7.17.
|
|
202
|
-
elasticsearch-7.17.
|
|
197
|
+
elasticsearch-7.17.13.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
|
|
198
|
+
elasticsearch-7.17.13.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
|
|
199
|
+
elasticsearch-7.17.13.dist-info/METADATA,sha256=Sgbh8wGOHvm_jHKBO52zrHAHG0Yh1ENuwFs-QLhRmaI,6320
|
|
200
|
+
elasticsearch-7.17.13.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
201
|
+
elasticsearch-7.17.13.dist-info/top_level.txt,sha256=Jp2bLWq49skvCN4YCZsg1Hfn_NDLgleC-x-Bn01_HgM,14
|
|
202
|
+
elasticsearch-7.17.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|