elasticsearch 8.17.2__py3-none-any.whl → 8.18.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.
Files changed (137) hide show
  1. elasticsearch/_async/client/__init__.py +174 -79
  2. elasticsearch/_async/client/_base.py +0 -1
  3. elasticsearch/_async/client/async_search.py +12 -8
  4. elasticsearch/_async/client/autoscaling.py +4 -4
  5. elasticsearch/_async/client/cat.py +26 -26
  6. elasticsearch/_async/client/ccr.py +186 -72
  7. elasticsearch/_async/client/cluster.py +38 -19
  8. elasticsearch/_async/client/connector.py +30 -30
  9. elasticsearch/_async/client/dangling_indices.py +3 -3
  10. elasticsearch/_async/client/enrich.py +26 -5
  11. elasticsearch/_async/client/eql.py +32 -4
  12. elasticsearch/_async/client/esql.py +62 -6
  13. elasticsearch/_async/client/features.py +12 -2
  14. elasticsearch/_async/client/fleet.py +8 -2
  15. elasticsearch/_async/client/graph.py +1 -1
  16. elasticsearch/_async/client/ilm.py +23 -22
  17. elasticsearch/_async/client/indices.py +424 -132
  18. elasticsearch/_async/client/inference.py +1906 -61
  19. elasticsearch/_async/client/ingest.py +32 -38
  20. elasticsearch/_async/client/license.py +51 -16
  21. elasticsearch/_async/client/logstash.py +3 -3
  22. elasticsearch/_async/client/migration.py +3 -3
  23. elasticsearch/_async/client/ml.py +144 -115
  24. elasticsearch/_async/client/monitoring.py +1 -1
  25. elasticsearch/_async/client/nodes.py +9 -27
  26. elasticsearch/_async/client/query_rules.py +8 -8
  27. elasticsearch/_async/client/rollup.py +8 -8
  28. elasticsearch/_async/client/search_application.py +13 -13
  29. elasticsearch/_async/client/searchable_snapshots.py +4 -4
  30. elasticsearch/_async/client/security.py +71 -71
  31. elasticsearch/_async/client/shutdown.py +3 -10
  32. elasticsearch/_async/client/simulate.py +6 -6
  33. elasticsearch/_async/client/slm.py +9 -9
  34. elasticsearch/_async/client/snapshot.py +13 -17
  35. elasticsearch/_async/client/sql.py +6 -6
  36. elasticsearch/_async/client/ssl.py +1 -1
  37. elasticsearch/_async/client/synonyms.py +7 -7
  38. elasticsearch/_async/client/tasks.py +3 -9
  39. elasticsearch/_async/client/text_structure.py +4 -4
  40. elasticsearch/_async/client/transform.py +30 -28
  41. elasticsearch/_async/client/watcher.py +22 -14
  42. elasticsearch/_async/client/xpack.py +2 -2
  43. elasticsearch/_async/helpers.py +0 -1
  44. elasticsearch/_sync/client/__init__.py +174 -79
  45. elasticsearch/_sync/client/_base.py +0 -1
  46. elasticsearch/_sync/client/async_search.py +12 -8
  47. elasticsearch/_sync/client/autoscaling.py +4 -4
  48. elasticsearch/_sync/client/cat.py +26 -26
  49. elasticsearch/_sync/client/ccr.py +186 -72
  50. elasticsearch/_sync/client/cluster.py +38 -19
  51. elasticsearch/_sync/client/connector.py +30 -30
  52. elasticsearch/_sync/client/dangling_indices.py +3 -3
  53. elasticsearch/_sync/client/enrich.py +26 -5
  54. elasticsearch/_sync/client/eql.py +32 -4
  55. elasticsearch/_sync/client/esql.py +62 -6
  56. elasticsearch/_sync/client/features.py +12 -2
  57. elasticsearch/_sync/client/fleet.py +8 -2
  58. elasticsearch/_sync/client/graph.py +1 -1
  59. elasticsearch/_sync/client/ilm.py +23 -22
  60. elasticsearch/_sync/client/indices.py +424 -132
  61. elasticsearch/_sync/client/inference.py +1906 -61
  62. elasticsearch/_sync/client/ingest.py +32 -38
  63. elasticsearch/_sync/client/license.py +51 -16
  64. elasticsearch/_sync/client/logstash.py +3 -3
  65. elasticsearch/_sync/client/migration.py +3 -3
  66. elasticsearch/_sync/client/ml.py +144 -115
  67. elasticsearch/_sync/client/monitoring.py +1 -1
  68. elasticsearch/_sync/client/nodes.py +9 -27
  69. elasticsearch/_sync/client/query_rules.py +8 -8
  70. elasticsearch/_sync/client/rollup.py +8 -8
  71. elasticsearch/_sync/client/search_application.py +13 -13
  72. elasticsearch/_sync/client/searchable_snapshots.py +4 -4
  73. elasticsearch/_sync/client/security.py +71 -71
  74. elasticsearch/_sync/client/shutdown.py +3 -10
  75. elasticsearch/_sync/client/simulate.py +6 -6
  76. elasticsearch/_sync/client/slm.py +9 -9
  77. elasticsearch/_sync/client/snapshot.py +13 -17
  78. elasticsearch/_sync/client/sql.py +6 -6
  79. elasticsearch/_sync/client/ssl.py +1 -1
  80. elasticsearch/_sync/client/synonyms.py +7 -7
  81. elasticsearch/_sync/client/tasks.py +3 -9
  82. elasticsearch/_sync/client/text_structure.py +4 -4
  83. elasticsearch/_sync/client/transform.py +30 -28
  84. elasticsearch/_sync/client/utils.py +0 -3
  85. elasticsearch/_sync/client/watcher.py +22 -14
  86. elasticsearch/_sync/client/xpack.py +2 -2
  87. elasticsearch/_version.py +1 -1
  88. elasticsearch/dsl/__init__.py +203 -0
  89. elasticsearch/dsl/_async/__init__.py +16 -0
  90. elasticsearch/dsl/_async/document.py +522 -0
  91. elasticsearch/dsl/_async/faceted_search.py +50 -0
  92. elasticsearch/dsl/_async/index.py +639 -0
  93. elasticsearch/dsl/_async/mapping.py +49 -0
  94. elasticsearch/dsl/_async/search.py +233 -0
  95. elasticsearch/dsl/_async/update_by_query.py +47 -0
  96. elasticsearch/dsl/_sync/__init__.py +16 -0
  97. elasticsearch/dsl/_sync/document.py +514 -0
  98. elasticsearch/dsl/_sync/faceted_search.py +50 -0
  99. elasticsearch/dsl/_sync/index.py +597 -0
  100. elasticsearch/dsl/_sync/mapping.py +49 -0
  101. elasticsearch/dsl/_sync/search.py +226 -0
  102. elasticsearch/dsl/_sync/update_by_query.py +45 -0
  103. elasticsearch/dsl/aggs.py +3730 -0
  104. elasticsearch/dsl/analysis.py +341 -0
  105. elasticsearch/dsl/async_connections.py +37 -0
  106. elasticsearch/dsl/connections.py +142 -0
  107. elasticsearch/dsl/document.py +20 -0
  108. elasticsearch/dsl/document_base.py +444 -0
  109. elasticsearch/dsl/exceptions.py +32 -0
  110. elasticsearch/dsl/faceted_search.py +28 -0
  111. elasticsearch/dsl/faceted_search_base.py +489 -0
  112. elasticsearch/dsl/field.py +4392 -0
  113. elasticsearch/dsl/function.py +180 -0
  114. elasticsearch/dsl/index.py +23 -0
  115. elasticsearch/dsl/index_base.py +178 -0
  116. elasticsearch/dsl/mapping.py +19 -0
  117. elasticsearch/dsl/mapping_base.py +219 -0
  118. elasticsearch/dsl/query.py +2822 -0
  119. elasticsearch/dsl/response/__init__.py +388 -0
  120. elasticsearch/dsl/response/aggs.py +100 -0
  121. elasticsearch/dsl/response/hit.py +53 -0
  122. elasticsearch/dsl/search.py +20 -0
  123. elasticsearch/dsl/search_base.py +1040 -0
  124. elasticsearch/dsl/serializer.py +34 -0
  125. elasticsearch/dsl/types.py +6509 -0
  126. elasticsearch/dsl/update_by_query.py +19 -0
  127. elasticsearch/dsl/update_by_query_base.py +149 -0
  128. elasticsearch/dsl/utils.py +687 -0
  129. elasticsearch/dsl/wrappers.py +119 -0
  130. {elasticsearch-8.17.2.dist-info → elasticsearch-8.18.1.dist-info}/METADATA +14 -2
  131. elasticsearch-8.18.1.dist-info/RECORD +163 -0
  132. elasticsearch-8.18.1.dist-info/licenses/LICENSE.txt +175 -0
  133. elasticsearch-8.18.1.dist-info/licenses/NOTICE.txt +559 -0
  134. elasticsearch-8.17.2.dist-info/RECORD +0 -119
  135. {elasticsearch-8.17.2.dist-info → elasticsearch-8.18.1.dist-info}/WHEEL +0 -0
  136. {elasticsearch-8.17.2.dist-info → elasticsearch-8.18.1.dist-info}/licenses/LICENSE +0 -0
  137. {elasticsearch-8.17.2.dist-info → elasticsearch-8.18.1.dist-info}/licenses/NOTICE +0 -0
@@ -0,0 +1,119 @@
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 operator
19
+ from typing import (
20
+ TYPE_CHECKING,
21
+ Callable,
22
+ ClassVar,
23
+ Dict,
24
+ Literal,
25
+ Mapping,
26
+ Optional,
27
+ Tuple,
28
+ TypeVar,
29
+ Union,
30
+ cast,
31
+ )
32
+
33
+ if TYPE_CHECKING:
34
+ from _operator import _SupportsComparison
35
+
36
+ from typing_extensions import TypeAlias
37
+
38
+ from .utils import AttrDict
39
+
40
+ ComparisonOperators: TypeAlias = Literal["lt", "lte", "gt", "gte"]
41
+ RangeValT = TypeVar("RangeValT", bound="_SupportsComparison")
42
+
43
+ __all__ = ["Range"]
44
+
45
+
46
+ class Range(AttrDict[RangeValT]):
47
+ OPS: ClassVar[
48
+ Mapping[
49
+ ComparisonOperators,
50
+ Callable[["_SupportsComparison", "_SupportsComparison"], bool],
51
+ ]
52
+ ] = {
53
+ "lt": operator.lt,
54
+ "lte": operator.le,
55
+ "gt": operator.gt,
56
+ "gte": operator.ge,
57
+ }
58
+
59
+ def __init__(
60
+ self,
61
+ d: Optional[Dict[str, RangeValT]] = None,
62
+ /,
63
+ **kwargs: RangeValT,
64
+ ):
65
+ if d is not None and (kwargs or not isinstance(d, dict)):
66
+ raise ValueError(
67
+ "Range accepts a single dictionary or a set of keyword arguments."
68
+ )
69
+
70
+ if d is None:
71
+ data = kwargs
72
+ else:
73
+ data = d
74
+
75
+ for k in data:
76
+ if k not in self.OPS:
77
+ raise ValueError(f"Range received an unknown operator {k!r}")
78
+
79
+ if "gt" in data and "gte" in data:
80
+ raise ValueError("You cannot specify both gt and gte for Range.")
81
+
82
+ if "lt" in data and "lte" in data:
83
+ raise ValueError("You cannot specify both lt and lte for Range.")
84
+
85
+ super().__init__(data)
86
+
87
+ def __repr__(self) -> str:
88
+ return "Range(%s)" % ", ".join("%s=%r" % op for op in self._d_.items())
89
+
90
+ def __contains__(self, item: object) -> bool:
91
+ if isinstance(item, str):
92
+ return super().__contains__(item)
93
+
94
+ item_supports_comp = any(hasattr(item, f"__{op}__") for op in self.OPS)
95
+ if not item_supports_comp:
96
+ return False
97
+
98
+ for op in self.OPS:
99
+ if op in self._d_ and not self.OPS[op](
100
+ cast("_SupportsComparison", item), self._d_[op]
101
+ ):
102
+ return False
103
+ return True
104
+
105
+ @property
106
+ def upper(self) -> Union[Tuple[RangeValT, bool], Tuple[None, Literal[False]]]:
107
+ if "lt" in self._d_:
108
+ return self._d_["lt"], False
109
+ if "lte" in self._d_:
110
+ return self._d_["lte"], True
111
+ return None, False
112
+
113
+ @property
114
+ def lower(self) -> Union[Tuple[RangeValT, bool], Tuple[None, Literal[False]]]:
115
+ if "gt" in self._d_:
116
+ return self._d_["gt"], False
117
+ if "gte" in self._d_:
118
+ return self._d_["gte"], True
119
+ return None, False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elasticsearch
3
- Version: 8.17.2
3
+ Version: 8.18.1
4
4
  Summary: Python client for Elasticsearch
5
5
  Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
6
6
  Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
@@ -10,7 +10,9 @@ Author-email: Elastic Client Library Maintainers <client-libs@elastic.co>
10
10
  Maintainer-email: Elastic Client Library Maintainers <client-libs@elastic.co>
11
11
  License-Expression: Apache-2.0
12
12
  License-File: LICENSE
13
+ License-File: LICENSE.txt
13
14
  License-File: NOTICE
15
+ License-File: NOTICE.txt
14
16
  Keywords: REST,client,elastic,elasticsearch,index,kibana,mapping,search
15
17
  Classifier: Development Status :: 5 - Production/Stable
16
18
  Classifier: Intended Audience :: Developers
@@ -28,6 +30,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
28
30
  Classifier: Programming Language :: Python :: Implementation :: PyPy
29
31
  Requires-Python: >=3.8
30
32
  Requires-Dist: elastic-transport<9,>=8.15.1
33
+ Requires-Dist: python-dateutil
34
+ Requires-Dist: typing-extensions
31
35
  Provides-Extra: async
32
36
  Requires-Dist: aiohttp<4,>=3; extra == 'async'
33
37
  Provides-Extra: dev
@@ -38,19 +42,27 @@ Requires-Dist: coverage; extra == 'dev'
38
42
  Requires-Dist: isort; extra == 'dev'
39
43
  Requires-Dist: jinja2; extra == 'dev'
40
44
  Requires-Dist: mapbox-vector-tile; extra == 'dev'
45
+ Requires-Dist: mypy; extra == 'dev'
46
+ Requires-Dist: nltk; extra == 'dev'
41
47
  Requires-Dist: nox; extra == 'dev'
42
48
  Requires-Dist: numpy; extra == 'dev'
43
49
  Requires-Dist: orjson; extra == 'dev'
44
50
  Requires-Dist: pandas; extra == 'dev'
45
51
  Requires-Dist: pyarrow; extra == 'dev'
52
+ Requires-Dist: pyright; extra == 'dev'
46
53
  Requires-Dist: pytest; extra == 'dev'
47
54
  Requires-Dist: pytest-asyncio; extra == 'dev'
48
55
  Requires-Dist: pytest-cov; extra == 'dev'
56
+ Requires-Dist: pytest-mock; extra == 'dev'
49
57
  Requires-Dist: python-dateutil; extra == 'dev'
50
58
  Requires-Dist: pyyaml>=5.4; extra == 'dev'
51
59
  Requires-Dist: requests<3,>=2; extra == 'dev'
60
+ Requires-Dist: sentence-transformers; extra == 'dev'
52
61
  Requires-Dist: simsimd; extra == 'dev'
62
+ Requires-Dist: tqdm; extra == 'dev'
53
63
  Requires-Dist: twine; extra == 'dev'
64
+ Requires-Dist: types-python-dateutil; extra == 'dev'
65
+ Requires-Dist: types-tqdm; extra == 'dev'
54
66
  Requires-Dist: unasync; extra == 'dev'
55
67
  Provides-Extra: docs
56
68
  Requires-Dist: sphinx; extra == 'docs'
@@ -68,7 +80,7 @@ Requires-Dist: simsimd>=3; extra == 'vectorstore-mmr'
68
80
  Description-Content-Type: text/markdown
69
81
 
70
82
  <p align="center">
71
- <img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
83
+ <img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/images/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
72
84
  </p>
73
85
 
74
86
  # Elasticsearch Python Client
@@ -0,0 +1,163 @@
1
+ elasticsearch/__init__.py,sha256=KicjUPfCZzRi4nTg2vJa1CklY168gVI6WwQsF2qsoXM,3325
2
+ elasticsearch/_otel.py,sha256=Oidt86g9XzeVrwMsJeV7dGLsyquVMJWfhcRlz43RlGo,4188
3
+ elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
4
+ elasticsearch/_version.py,sha256=tQbRxkJ-078N54UqqK1BsRJX3JLV9jx5rys98jlq18E,814
5
+ elasticsearch/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
6
+ elasticsearch/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
7
+ elasticsearch/exceptions.py,sha256=ynpP0TLJxur7x7JQJD-CFtXov0bPImGt234gdlAyv6g,4142
8
+ elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ elasticsearch/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
10
+ elasticsearch/transport.py,sha256=CxKo2USPQ-6q4x8Ckfq_dUFWhA1s98p75ghXc3breJI,2248
11
+ elasticsearch/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
12
+ elasticsearch/_async/helpers.py,sha256=Q5LIXoyjoHeShBUltwLIkGc3WqmqAYHW2ddLjzNpYQU,22801
13
+ elasticsearch/_async/client/__init__.py,sha256=MNQYOkL0OuppOHMMMIFBSht6JQ_ImtsQbVAQcPgy2mg,362050
14
+ elasticsearch/_async/client/_base.py,sha256=LUDXds7dAnrP5e9Ealg-4mwx4BUntNaeWeIeUKoJWHc,15494
15
+ elasticsearch/_async/client/async_search.py,sha256=E_CL2j-zpQEVXbfG6ZAqbN8ahM5wbIa5-4aWqO8le5M,30745
16
+ elasticsearch/_async/client/autoscaling.py,sha256=agGl_shrA9WC77XLCuEn6lOcBdEshUw6_sLUdcqs1NM,11247
17
+ elasticsearch/_async/client/cat.py,sha256=CmbgDcVBOsCDH7goPRzEb6K0kgHnt9NwJONq86DIz_Q,132337
18
+ elasticsearch/_async/client/ccr.py,sha256=2m2cInOGUtcRyCTFiqNrPjyi2cU5gvwBxZRc3fATyQs,49873
19
+ elasticsearch/_async/client/cluster.py,sha256=-k8cwRhNLz0vcZaHBIqeidP3FLlGGmEFbbt9IkYP3FI,61007
20
+ elasticsearch/_async/client/connector.py,sha256=MTyZDqaCQhQt-mBAGnUxTc4CiU6ZF_Xbu6EPigaUxfo,78345
21
+ elasticsearch/_async/client/dangling_indices.py,sha256=MDmdhhGVZ1oJ63ZmnoEtS_G9XEiniI_sSvhs9cs_IHU,8464
22
+ elasticsearch/_async/client/enrich.py,sha256=RFor5NEFYG3uVtXWcB2tLCugIDsie0FntHIpZRhq0Vo,11294
23
+ elasticsearch/_async/client/eql.py,sha256=6MJOZH9ZwtVJAV51ClM_TTQJVR0Rcgbe4ElSmUW41J8,15334
24
+ elasticsearch/_async/client/esql.py,sha256=L_fLTa6wM58czEHlrHXwZWLLQyNkTbWBU4zZVJ3ezvw,22786
25
+ elasticsearch/_async/client/features.py,sha256=crRFqMds2RWTVtz4qWK3FW74-TOo2O45G0faBrUlAE4,6178
26
+ elasticsearch/_async/client/fleet.py,sha256=MuIYatf9sFYoq0haLMepJOXQZ8eUgJyfnFfXNMCmBKY,31644
27
+ elasticsearch/_async/client/graph.py,sha256=wDIFvXb-_bHcjeoRn5cV3b_NoPQMYdGijMWRfcXuhfQ,5149
28
+ elasticsearch/_async/client/ilm.py,sha256=cmmu7FxgVVHRkjUQf2BNG43_JUA00kYKCDrkE6COjc0,28101
29
+ elasticsearch/_async/client/indices.py,sha256=LLT9HTR54TY43NIsjdi4TqzRafyOLwEwTSiVoliT450,282043
30
+ elasticsearch/_async/client/inference.py,sha256=D1gR_egR0yB6f__jQ5lHJ2PQOCETUowfmIR0TembSoU,109005
31
+ elasticsearch/_async/client/ingest.py,sha256=uTIIVeJIfnZNBJHGNWKXC9jyYp9qAYu0X5o_-rCdzhw,32447
32
+ elasticsearch/_async/client/license.py,sha256=iNypUCSEa3CzaU146vkAgL66J2BRSXlfFJQMq0-rAWc,16663
33
+ elasticsearch/_async/client/logstash.py,sha256=O0fiNFNWruFQD3Pz__ypgvsisvCzKy_uBEmz0vpzmDs,6534
34
+ elasticsearch/_async/client/migration.py,sha256=BmXqmuPJWxROKBRUSPoShZnnyrmYY0_KXXp6NllgVPY,6371
35
+ elasticsearch/_async/client/ml.py,sha256=0maigQ-x4cqKoeUaw3M0YFFxi01VHx9HtpBGLjiIcIE,268090
36
+ elasticsearch/_async/client/monitoring.py,sha256=QpkiCnV3e4pYtb5KOvo1SLuLy2E9_kJYOqH6-rjBSeM,3852
37
+ elasticsearch/_async/client/nodes.py,sha256=hgilu5QjZ2FytjIL6753eEHg3FTYkX4e--wGJ6OnhXs,24179
38
+ elasticsearch/_async/client/query_rules.py,sha256=Q31lCisB46xWGxMeTlIh_oscQoxlUHYASMVRhrLaJxg,19359
39
+ elasticsearch/_async/client/rollup.py,sha256=_Gslz67jdLbljCJO_xlO0UqZmHwwSQfbjWyqcbw0m8o,29084
40
+ elasticsearch/_async/client/search_application.py,sha256=g4JYjgGwMEaQKk2OWrPPQJ_z0rUVyBIz2Nx1hqzvd7M,22014
41
+ elasticsearch/_async/client/searchable_snapshots.py,sha256=k2c177fTPeOsyeWQDnsESGV2mS7d7S5uJVgUgckNzOU,12715
42
+ elasticsearch/_async/client/security.py,sha256=jAwJy94J8eBVJ7kjD6OSbyn2Ex78zj9ldFaKv_xvbxE,222105
43
+ elasticsearch/_async/client/shutdown.py,sha256=KJ3sZsHvuhRUQl0GHW2sEbaldGkrQn7QBDEGLX7Bg70,13225
44
+ elasticsearch/_async/client/simulate.py,sha256=wuEoQ9mx-hM6nH12RKdLgCaSixL0yIKSjEz9K2c6a_A,7348
45
+ elasticsearch/_async/client/slm.py,sha256=PUupG2g0O4Xn2q4iIR9l4qErxIkC4A4o66VAhdBU3Fo,24350
46
+ elasticsearch/_async/client/snapshot.py,sha256=ZfGzPqMQIsjhFHnE2Um1RimwnOK-9FfCkYpbNT3rC3c,62919
47
+ elasticsearch/_async/client/sql.py,sha256=EsMIypICarsQDYRmR7v54IhobgAPQFWhCIE-Hf7VwUQ,20134
48
+ elasticsearch/_async/client/ssl.py,sha256=PMs8dO8XtFGPteRbSE54VGKi1ynG-6WVWaSukTpVD_s,3772
49
+ elasticsearch/_async/client/synonyms.py,sha256=GSuQ6gByRuJe54dmPBjrT7-_g_2P2LOWfu-15aF58x0,16238
50
+ elasticsearch/_async/client/tasks.py,sha256=uhb4Ru25yw_dHx74zNAQpk9sibhq1uM2GoAT_nYPiC4,13688
51
+ elasticsearch/_async/client/text_structure.py,sha256=Vrnq1O27XrisLNpLSzRxWLSapmWrUgbfou9H0uqQ3L8,40615
52
+ elasticsearch/_async/client/transform.py,sha256=B0C9rugZZ81OnPT556auZqtSluWUyzoUK42pxyMWc1g,44277
53
+ elasticsearch/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
54
+ elasticsearch/_async/client/watcher.py,sha256=9YVUhhOaWgM6ZZrHNUW_XTuB74iAr9UqXw6hCN_5QhE,38063
55
+ elasticsearch/_async/client/xpack.py,sha256=ZQiVgLDyE6DM50cZIbUGavRcUPgaXq-DhcQgkCCPNMY,5137
56
+ elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
57
+ elasticsearch/_sync/client/__init__.py,sha256=vzTM3U3Y-dmZOT2fOUyBuVcbSgo1YawZ0oGUlFRUe74,361419
58
+ elasticsearch/_sync/client/_base.py,sha256=sz3kVP_-27pJQ7w6fpAjjYRdKQWY7JUQfQCDOIuxN4c,15424
59
+ elasticsearch/_sync/client/async_search.py,sha256=0-67-QdVwhgPR_ODeaGLn9YMcRab7SqX3OrAaHTdHaw,30697
60
+ elasticsearch/_sync/client/autoscaling.py,sha256=mZFBVDvSLjHld6DLQH4_l6LvMrnUwgTeEbgSBA1EKVU,11199
61
+ elasticsearch/_sync/client/cat.py,sha256=6kCNbJVPih_niyjsc4TMBZb7zfh2eS-SDMrlKnikqv0,132025
62
+ elasticsearch/_sync/client/ccr.py,sha256=NYS07gcWcyx4R0BhU98mdfp9DCJQM1h4lP6-Z7A9IJs,49717
63
+ elasticsearch/_sync/client/cluster.py,sha256=MV3txQ8gntuqq7ys-eo9qYPS-z2v_KcQWnbC2ZRZr-U,60815
64
+ elasticsearch/_sync/client/connector.py,sha256=yypNN6_GuYV9giVMwQU_nkp9vWGuyp6dOKfZEkBwzXQ,77985
65
+ elasticsearch/_sync/client/dangling_indices.py,sha256=cl8hfOV8reQ_i-8cFILKNtaTVyNTmecinKsdBMFgSBI,8428
66
+ elasticsearch/_sync/client/enrich.py,sha256=wU6AA2eDA8bHkhrLRl7EhGpuSWGKnCtL5WqMpc69TCk,11234
67
+ elasticsearch/_sync/client/eql.py,sha256=Ug76pTqin-b1kMoNGei8nlXKes_QPWwUck7raa9tSO0,15286
68
+ elasticsearch/_sync/client/esql.py,sha256=QcDfDfLy-JXs9GeLMwHQa4QgBbLqV9bH1oZeL_5w_D4,22726
69
+ elasticsearch/_sync/client/features.py,sha256=YDSeeAeqNDegxGScVVZUtJ2IAj-Xja-w75L7ggm6q0M,6154
70
+ elasticsearch/_sync/client/fleet.py,sha256=oWFXdQeksI29DCheSLg69z6BmZ5eb2w1TnG5Eub2lhg,31608
71
+ elasticsearch/_sync/client/graph.py,sha256=a-FJLv9Qktt-9TDCglmFkbWYSrCuE6dF_S1iD2KeTqY,5137
72
+ elasticsearch/_sync/client/ilm.py,sha256=D1wEjjWwqjaVVBgiv69YkPfW3HAxOOnJTtegsSJ628Y,27969
73
+ elasticsearch/_sync/client/indices.py,sha256=mwwwOz6Mludi2tE3WQqirq_k3QNO00msNuRUQ7J_ht4,281275
74
+ elasticsearch/_sync/client/inference.py,sha256=j0cpuv7ut7Ge7OBXuZ00FPDBg5rGMSjbNFkMkuvF9f8,108705
75
+ elasticsearch/_sync/client/ingest.py,sha256=SUceINTZWb0hWBXO7tfVaIOb8PUYBKaNnhCGWErW_b0,32303
76
+ elasticsearch/_sync/client/license.py,sha256=lTKAksSsNfTIykWJEUoEbPULwYI-2CJ3tHvfFNpPLJ8,16579
77
+ elasticsearch/_sync/client/logstash.py,sha256=z2KJ6XFabPnNDNkTT1FsJX_idI5UklgSMEkvWiQD61s,6498
78
+ elasticsearch/_sync/client/migration.py,sha256=AatMrjs9PlqCZAt36xAo8aHMa0P5sMoNt9Jjk_yuVY8,6335
79
+ elasticsearch/_sync/client/ml.py,sha256=22H41bp7lqwXgMSQCvWqOPPNY4RHb9c1o_525occDxg,267214
80
+ elasticsearch/_sync/client/monitoring.py,sha256=8mbTAvXUELL9uRaWcwatxrYtuqI7X-HO5H4k6zgMmcA,3840
81
+ elasticsearch/_sync/client/nodes.py,sha256=DeyRHotWLs4RDt29ih5PDzkfUTttZPg2OBiEp7sUiy4,24095
82
+ elasticsearch/_sync/client/query_rules.py,sha256=lyP4Q-HtrQ8RLVK6Yx4CyrcUSPJkPKbnm5-7ITvcjfk,19263
83
+ elasticsearch/_sync/client/rollup.py,sha256=6Ghja9U9FgKE0q2vE2i9c7r3VViYyFitF5TX31PLtWY,28988
84
+ elasticsearch/_sync/client/search_application.py,sha256=qc_g_ZbZCFrhB0YvqiHSTL0TB8XAHlGPAO39vLq2dXI,21894
85
+ elasticsearch/_sync/client/searchable_snapshots.py,sha256=vcwc-STQfuBibCaFH_FofYFCW6-LmyNn-8IWQU2wFgQ,12667
86
+ elasticsearch/_sync/client/security.py,sha256=7RPXpiiWdKLCLsiqYgzvE5bw5T4rnklWsu8oDOKW59k,221337
87
+ elasticsearch/_sync/client/shutdown.py,sha256=Hkhb5iriwP_8ZiLbVlVt5qdyUDGmgFbRwMrjoSIvqv0,13189
88
+ elasticsearch/_sync/client/simulate.py,sha256=Bd7koVLSrBRiil3d3z0NR0zKKyXhGeL1Po9whRtYDHA,7336
89
+ elasticsearch/_sync/client/slm.py,sha256=0sdnXEXl4Lm94O5Pqaazj8yLRrH4v2akIO6zYMn5N_A,24242
90
+ elasticsearch/_sync/client/snapshot.py,sha256=Y9CcbvaBodp2HkGqkE89RonXp6FwYWkIGeUEcWROoNY,62763
91
+ elasticsearch/_sync/client/sql.py,sha256=_ZP7m66tPoQYV-f3kJazZng7RsVXFT7sp7Rk0XLartU,20062
92
+ elasticsearch/_sync/client/ssl.py,sha256=C54ELSCNRpBe9RsPoBFp9ZxTX9J-1Lsd4zUBXycVoA4,3760
93
+ elasticsearch/_sync/client/synonyms.py,sha256=N8TIs2WVzZhZH6teos7PN0gOMpxEdyDfBQWX0uR8fbE,16154
94
+ elasticsearch/_sync/client/tasks.py,sha256=a6S_6R1btpcKgdVG9L1KoPAuiqo2FJTaXXBiai91iM4,13652
95
+ elasticsearch/_sync/client/text_structure.py,sha256=tNfAgHJQuWv_hD1tx-DM8sgavlMYwAb3bwI9YslaHjI,40567
96
+ elasticsearch/_sync/client/transform.py,sha256=ffDnIXAAC41Ypl2wJJZyGVmuAnUqgITsSL8o7ieqoLc,44145
97
+ elasticsearch/_sync/client/utils.py,sha256=NcO9I0O0vnRrFXdpYF5BlK8QpaPLHi0bhCVagrXAf_U,18644
98
+ elasticsearch/_sync/client/watcher.py,sha256=PECJ__iIKgzkWYbMkXkBtbt5FVVs1g18LlsMmufF_s0,37907
99
+ elasticsearch/_sync/client/xpack.py,sha256=3O-nzKXJhKCqHZGqYh7jK-h0h-z8_fyM3-h9aQVwYvc,5113
100
+ elasticsearch/dsl/__init__.py,sha256=IKzYnYwF2Xb4_xTRN_upDOHpYJgIP3iWXXmd7O_2lDc,4296
101
+ elasticsearch/dsl/aggs.py,sha256=YEKG9mF67Z9njq39VkpHANmTSg-AP9r4f4unFf-UuOU,131401
102
+ elasticsearch/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
103
+ elasticsearch/dsl/async_connections.py,sha256=K57MB_Gbu6s4Bn_1pzy5iA32ur8imfKP7yC4XlSI11s,1451
104
+ elasticsearch/dsl/connections.py,sha256=WxgUdq6PsQ6-ESG1pW6fab--VMm_IwlhH-J50XqeBZw,5176
105
+ elasticsearch/dsl/document.py,sha256=VzUvFqntLx_uWxIhOlK9WwXXa63Bwrp0a_Ja4rCKOF8,957
106
+ elasticsearch/dsl/document_base.py,sha256=r045luNNySLO-Jrv6wec43yKlQM_pEXcjvde4_7cMLk,15999
107
+ elasticsearch/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
108
+ elasticsearch/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
109
+ elasticsearch/dsl/faceted_search_base.py,sha256=7fpQPSlGpPoKggzm_S1l938Zfe-WiTOy6EADeLjykYk,15401
110
+ elasticsearch/dsl/field.py,sha256=uAgaJKpgaQMKHB7grSCYoFHE4GwpG4YamqQcBFEKUts,157423
111
+ elasticsearch/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
112
+ elasticsearch/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
113
+ elasticsearch/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
114
+ elasticsearch/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
115
+ elasticsearch/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
116
+ elasticsearch/dsl/query.py,sha256=swPlnds5sVuVqfxbedimy6mqhVaA6hUfg1wIJ91xogY,103750
117
+ elasticsearch/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
118
+ elasticsearch/dsl/search_base.py,sha256=BWcLYOpiqUQvlWNeRH-sf342IvDlqPF4TwCOX2wMcK8,34683
119
+ elasticsearch/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
120
+ elasticsearch/dsl/types.py,sha256=Xur-vb5nfo6Vza-LrtnG7Vg4QCG59_K_tKgO96z0vRA,203912
121
+ elasticsearch/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
122
+ elasticsearch/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
123
+ elasticsearch/dsl/utils.py,sha256=WRupAUt432wZuyS49IpF2f6m0Ux79P9RthkG2FM4pFw,22977
124
+ elasticsearch/dsl/wrappers.py,sha256=UQjXS8cZP9R7Rw4Y5rJTRyHuTU0tzT7PqbdXLgxY5ww,3516
125
+ elasticsearch/dsl/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
126
+ elasticsearch/dsl/_async/document.py,sha256=knCXN_hRKFldUF6dC8kGr-AcTwZCXhcvgSqbkpeMCVE,19347
127
+ elasticsearch/dsl/_async/faceted_search.py,sha256=6I6ZNCfYHKSWwqfXv7b1Mb9gYark76XtWcpukTign9Q,1743
128
+ elasticsearch/dsl/_async/index.py,sha256=ci8i3NxqOb_irt0GYHhvb2POEu-maKQgL6ox3GLOZlw,22765
129
+ elasticsearch/dsl/_async/mapping.py,sha256=5MmAuBXh17EvTKpyLi24B1aFiJwvspYMfJim8Omx1ks,1759
130
+ elasticsearch/dsl/_async/search.py,sha256=wTpmWzc7Lp-uAV6Dx0Swks6AhSNZHIwpMbDsbWGWJQI,7942
131
+ elasticsearch/dsl/_async/update_by_query.py,sha256=YsqNb03V8Zyq52_wdJOFC5At5ujvlTcwtU85m3PlbhA,1641
132
+ elasticsearch/dsl/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
133
+ elasticsearch/dsl/_sync/document.py,sha256=vHRIU1lEyY13SRnsVjg9DKWRXllC4m_Ee2tZpKrp-20,18940
134
+ elasticsearch/dsl/_sync/faceted_search.py,sha256=HVBXlwZQ3ld150RkGCXyxeZ3dHAwZDQTCCJQqJpGxog,1694
135
+ elasticsearch/dsl/_sync/index.py,sha256=DpUmWTUXDRqRlVHN9eeCMLvb0Xvx0-bGa4XHtb12RLQ,21635
136
+ elasticsearch/dsl/_sync/mapping.py,sha256=yRRE3lMj5DNkDson2fA2ZHVuotjNwZws7qcUoakKhlQ,1682
137
+ elasticsearch/dsl/_sync/search.py,sha256=vgBpYO-dIcUoUIdny6sa30poJfjwcHLjLh4h3bV8PZ4,7596
138
+ elasticsearch/dsl/_sync/update_by_query.py,sha256=pUnHuLne_r2u3hh0OtZvM-TnP-Jf_UOuAmGwWopGPZU,1570
139
+ elasticsearch/dsl/response/__init__.py,sha256=WOmfs3vb_KzM9kRfxsw0z4lZvf4OFP-vpY-4hSiiPYk,13786
140
+ elasticsearch/dsl/response/aggs.py,sha256=Unqp-acPQjqGbCTs1j0UhXQJjWuzjikySz__5BCIx_E,3394
141
+ elasticsearch/dsl/response/hit.py,sha256=SCMeVQz4gsID4xgp3iGcpBw_XY5nbSDQ8B_RyDwgUnU,2111
142
+ elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
143
+ elasticsearch/helpers/actions.py,sha256=A4IVl8TrCdqk2mnZ_KQggeMolDEHBaesk2qDygE8skE,32378
144
+ elasticsearch/helpers/errors.py,sha256=5khkK4zbXsk4ry8HDmGfyzlmZI9KSKP-MivCgcPoO5U,1506
145
+ elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
146
+ elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
147
+ elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
148
+ elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
149
+ elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
150
+ elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=YpmCiz-skq2uvJhUY_nFpX_L6eRlAawZdA2jvGj30Hs,16210
151
+ elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
152
+ elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
153
+ elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
154
+ elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
155
+ elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=LfB2_uQMnPkWpe67hnPxeS1h5rLodnYOgk64hp9bs-s,16108
156
+ elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
157
+ elasticsearch-8.18.1.dist-info/METADATA,sha256=tcoffaGchUekut_v2Wy4rbU-qg1hNQ_ZG-fEzIBNTog,9241
158
+ elasticsearch-8.18.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
159
+ elasticsearch-8.18.1.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
160
+ elasticsearch-8.18.1.dist-info/licenses/LICENSE.txt,sha256=4JFueU7Hi11OhqseKJyD5W5ufZ6ZkGDsMWH7CLOHg6Y,10142
161
+ elasticsearch-8.18.1.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
162
+ elasticsearch-8.18.1.dist-info/licenses/NOTICE.txt,sha256=2dshATdruN4hzPj9pypOzZ8uLqIPnQDK5LynrVu-d4Y,28246
163
+ elasticsearch-8.18.1.dist-info/RECORD,,
@@ -0,0 +1,175 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use thes
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.