elasticsearch 8.13.2__tar.gz → 8.15.0__tar.gz
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-8.15.0/.gitignore +150 -0
- elasticsearch-8.15.0/PKG-INFO +177 -0
- elasticsearch-8.15.0/README.md +109 -0
- elasticsearch-8.15.0/docs/sphinx/api/async-search.rst +10 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/autoscaling.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/cat.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/ccr.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/cluster.rst +1 -1
- elasticsearch-8.15.0/docs/sphinx/api/connector.rst +9 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/dangling-indices.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/elasticsearch.rst +1 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/enrich-policies.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/eql.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/esql.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/fleet.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/graph-explore.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/index-lifecycle-management.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/indices.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/inference.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/ingest-pipelines.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/license.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/logstash.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/migration.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/ml.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/monitoring.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/nodes.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/query-rules.rst +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/rollup-indices.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/search-application.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/searchable-snapshots.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/security.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/shutdown.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/snapshot-lifecycle-management.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/snapshots.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/snapshottable-features.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/sql.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/synonyms.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/tasks.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/text-structure.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/tls-ssl.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/transforms.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/watcher.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api/x-pack.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/api.rst +2 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/conf.py +0 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/exceptions.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/quickstart.rst +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/__init__.py +204 -169
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/async_search.py +35 -20
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/autoscaling.py +4 -4
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/cat.py +785 -180
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/ccr.py +20 -32
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/cluster.py +94 -88
- elasticsearch-8.15.0/elasticsearch/_async/client/connector.py +1470 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/dangling_indices.py +7 -11
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/enrich.py +8 -8
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/eql.py +17 -16
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/esql.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/features.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/fleet.py +18 -17
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/graph.py +4 -4
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/ilm.py +36 -44
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/indices.py +401 -411
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/inference.py +65 -39
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/ingest.py +22 -23
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/license.py +18 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/logstash.py +6 -6
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/migration.py +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/ml.py +383 -176
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/monitoring.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/nodes.py +32 -32
- elasticsearch-8.15.0/elasticsearch/_async/client/query_rules.py +384 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/rollup.py +13 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/search_application.py +15 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/searchable_snapshots.py +9 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/security.py +587 -104
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/shutdown.py +7 -7
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/slm.py +11 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/snapshot.py +39 -52
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/sql.py +12 -14
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/ssl.py +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/synonyms.py +8 -8
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/tasks.py +9 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/text_structure.py +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/transform.py +89 -34
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/watcher.py +30 -15
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/xpack.py +6 -7
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_otel.py +2 -6
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/__init__.py +204 -169
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/async_search.py +35 -20
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/autoscaling.py +4 -4
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/cat.py +785 -180
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/ccr.py +20 -32
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/cluster.py +94 -88
- elasticsearch-8.15.0/elasticsearch/_sync/client/connector.py +1470 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/dangling_indices.py +7 -11
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/enrich.py +8 -8
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/eql.py +17 -16
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/esql.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/features.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/fleet.py +18 -17
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/graph.py +4 -4
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/ilm.py +36 -44
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/indices.py +401 -411
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/inference.py +65 -39
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/ingest.py +22 -23
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/license.py +18 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/logstash.py +6 -6
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/migration.py +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/ml.py +383 -176
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/monitoring.py +2 -2
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/nodes.py +32 -32
- elasticsearch-8.15.0/elasticsearch/_sync/client/query_rules.py +384 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/rollup.py +13 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/search_application.py +15 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/searchable_snapshots.py +9 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/security.py +587 -104
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/shutdown.py +7 -7
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/slm.py +11 -13
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/snapshot.py +39 -52
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/sql.py +12 -14
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/ssl.py +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/synonyms.py +8 -8
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/tasks.py +9 -10
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/text_structure.py +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/transform.py +89 -34
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/watcher.py +30 -15
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/xpack.py +6 -7
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_version.py +1 -1
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/client.py +3 -3
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_async/vectorstore.py +36 -6
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_sync/vectorstore.py +36 -6
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/serializer.py +34 -1
- elasticsearch-8.15.0/pyproject.toml +122 -0
- elasticsearch-8.15.0/setup.cfg +2 -0
- elasticsearch-8.13.2/MANIFEST.in +0 -14
- elasticsearch-8.13.2/PKG-INFO +0 -147
- elasticsearch-8.13.2/README.rst +0 -110
- elasticsearch-8.13.2/elasticsearch/_async/client/query_ruleset.py +0 -205
- elasticsearch-8.13.2/elasticsearch/_sync/client/query_ruleset.py +0 -205
- elasticsearch-8.13.2/elasticsearch.egg-info/PKG-INFO +0 -147
- elasticsearch-8.13.2/elasticsearch.egg-info/SOURCES.txt +0 -171
- elasticsearch-8.13.2/elasticsearch.egg-info/dependency_links.txt +0 -1
- elasticsearch-8.13.2/elasticsearch.egg-info/not-zip-safe +0 -1
- elasticsearch-8.13.2/elasticsearch.egg-info/requires.txt +0 -14
- elasticsearch-8.13.2/elasticsearch.egg-info/top_level.txt +0 -1
- elasticsearch-8.13.2/setup.cfg +0 -22
- elasticsearch-8.13.2/setup.py +0 -98
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/CHANGELOG.md +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/CONTRIBUTING.md +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/LICENSE +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/NOTICE +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/Makefile +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/async.rst +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/helpers.rst +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/index.rst +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/docs/sphinx/interactive.rst +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/_base.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/client/utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_async/helpers.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/_base.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_sync/client/utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/_utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/compat.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/exceptions.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/actions.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/errors.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_async/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_async/_utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_async/embedding_service.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_async/strategies.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_sync/__init__.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_sync/_utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_sync/embedding_service.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_sync/strategies.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/helpers/vectorstore/_utils.py +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/py.typed +0 -0
- {elasticsearch-8.13.2 → elasticsearch-8.15.0}/elasticsearch/transport.py +0 -0
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/sphinx/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
98
|
+
__pypackages__/
|
|
99
|
+
|
|
100
|
+
# Celery stuff
|
|
101
|
+
celerybeat-schedule
|
|
102
|
+
celerybeat.pid
|
|
103
|
+
|
|
104
|
+
# SageMath parsed files
|
|
105
|
+
*.sage.py
|
|
106
|
+
|
|
107
|
+
# Environments
|
|
108
|
+
.env
|
|
109
|
+
.venv
|
|
110
|
+
env/
|
|
111
|
+
venv/
|
|
112
|
+
ENV/
|
|
113
|
+
env.bak/
|
|
114
|
+
venv.bak/
|
|
115
|
+
|
|
116
|
+
# Spyder project settings
|
|
117
|
+
.spyderproject
|
|
118
|
+
.spyproject
|
|
119
|
+
|
|
120
|
+
# Rope project settings
|
|
121
|
+
.ropeproject
|
|
122
|
+
|
|
123
|
+
# mkdocs documentation
|
|
124
|
+
/site
|
|
125
|
+
|
|
126
|
+
# mypy
|
|
127
|
+
.mypy_cache/
|
|
128
|
+
.dmypy.json
|
|
129
|
+
dmypy.json
|
|
130
|
+
|
|
131
|
+
# Pyre type checker
|
|
132
|
+
.pyre/
|
|
133
|
+
|
|
134
|
+
# pytype static type analyzer
|
|
135
|
+
.pytype/
|
|
136
|
+
|
|
137
|
+
# Cython debug symbols
|
|
138
|
+
cython_debug/
|
|
139
|
+
|
|
140
|
+
# Pycharm project settings
|
|
141
|
+
.idea
|
|
142
|
+
|
|
143
|
+
# elasticsearch files
|
|
144
|
+
test_elasticsearch/cover
|
|
145
|
+
test_elasticsearch/local.py
|
|
146
|
+
.buildkite/output
|
|
147
|
+
junit/
|
|
148
|
+
|
|
149
|
+
# sample code for GitHub issues
|
|
150
|
+
issues/
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: elasticsearch
|
|
3
|
+
Version: 8.15.0
|
|
4
|
+
Summary: Python client for Elasticsearch
|
|
5
|
+
Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
|
|
6
|
+
Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
|
|
7
|
+
Project-URL: Issue Tracker, https://github.com/elastic/elasticsearch-py/issues
|
|
8
|
+
Project-URL: Source Code, https://github.com/elastic/elasticsearch-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,elasticsearch,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 :: Implementation :: CPython
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
28
|
+
Requires-Python: >=3.8
|
|
29
|
+
Requires-Dist: elastic-transport<9,>=8.13
|
|
30
|
+
Provides-Extra: async
|
|
31
|
+
Requires-Dist: aiohttp<4,>=3; extra == 'async'
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: aiohttp; extra == 'dev'
|
|
34
|
+
Requires-Dist: black; extra == 'dev'
|
|
35
|
+
Requires-Dist: build; extra == 'dev'
|
|
36
|
+
Requires-Dist: coverage; extra == 'dev'
|
|
37
|
+
Requires-Dist: isort; extra == 'dev'
|
|
38
|
+
Requires-Dist: jinja2; extra == 'dev'
|
|
39
|
+
Requires-Dist: mapbox-vector-tile; extra == 'dev'
|
|
40
|
+
Requires-Dist: nox; extra == 'dev'
|
|
41
|
+
Requires-Dist: numpy; extra == 'dev'
|
|
42
|
+
Requires-Dist: orjson; extra == 'dev'
|
|
43
|
+
Requires-Dist: pandas; extra == 'dev'
|
|
44
|
+
Requires-Dist: pyarrow; extra == 'dev'
|
|
45
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest-asyncio; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
48
|
+
Requires-Dist: python-dateutil; extra == 'dev'
|
|
49
|
+
Requires-Dist: pyyaml>=5.4; extra == 'dev'
|
|
50
|
+
Requires-Dist: requests<3,>=2; extra == 'dev'
|
|
51
|
+
Requires-Dist: simsimd; extra == 'dev'
|
|
52
|
+
Requires-Dist: twine; extra == 'dev'
|
|
53
|
+
Requires-Dist: unasync; extra == 'dev'
|
|
54
|
+
Provides-Extra: docs
|
|
55
|
+
Requires-Dist: sphinx; extra == 'docs'
|
|
56
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
|
|
57
|
+
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
|
|
58
|
+
Provides-Extra: orjson
|
|
59
|
+
Requires-Dist: orjson>=3; extra == 'orjson'
|
|
60
|
+
Provides-Extra: pyarrow
|
|
61
|
+
Requires-Dist: pyarrow>=1; extra == 'pyarrow'
|
|
62
|
+
Provides-Extra: requests
|
|
63
|
+
Requires-Dist: requests!=2.32.2,<3.0.0,>=2.4.0; extra == 'requests'
|
|
64
|
+
Provides-Extra: vectorstore-mmr
|
|
65
|
+
Requires-Dist: numpy>=1; extra == 'vectorstore-mmr'
|
|
66
|
+
Requires-Dist: simsimd>=3; extra == 'vectorstore-mmr'
|
|
67
|
+
Description-Content-Type: text/markdown
|
|
68
|
+
|
|
69
|
+
<p align="center">
|
|
70
|
+
<img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
|
|
71
|
+
</p>
|
|
72
|
+
|
|
73
|
+
# Elasticsearch Python Client
|
|
74
|
+
|
|
75
|
+
<p align="center">
|
|
76
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/elasticsearch" /></a>
|
|
77
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/elasticsearch" /></a>
|
|
78
|
+
<a href="https://anaconda.org/conda-forge/elasticsearch"><img alt="Conda Version" src="https://img.shields.io/conda/vn/conda-forge/elasticsearch" /></a>
|
|
79
|
+
<a href="https://pepy.tech/project/elasticsearch?versions=*"><img alt="Downloads" src="https://static.pepy.tech/badge/elasticsearch" /></a>
|
|
80
|
+
<br/>
|
|
81
|
+
<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>
|
|
82
|
+
<a href="https://buildkite.com/elastic/elasticsearch-py-integration-tests"><img alt="Buildkite Status on Buildkite" src="https://badge.buildkite.com/68e22afcb2ea8f6dcc20834e3a5b5ab4431beee33d3bd751f3.svg" /></a>
|
|
83
|
+
<a href="https://elasticsearch-py.readthedocs.io"><img alt="Documentation Status" src="https://readthedocs.org/projects/elasticsearch-py/badge/?version=latest" /></a><br>
|
|
84
|
+
</p>
|
|
85
|
+
|
|
86
|
+
*The official Python client for Elasticsearch.*
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## Features
|
|
90
|
+
|
|
91
|
+
* Translating basic Python data types to and from JSON
|
|
92
|
+
* Configurable automatic discovery of cluster nodes
|
|
93
|
+
* Persistent connections
|
|
94
|
+
* Load balancing (with pluggable selection strategy) across available nodes
|
|
95
|
+
* Failed connection penalization (time based - failed connections won't be
|
|
96
|
+
retried until a timeout is reached)
|
|
97
|
+
* Support for TLS and HTTP authentication
|
|
98
|
+
* Thread safety across requests
|
|
99
|
+
* Pluggable architecture
|
|
100
|
+
* Helper functions for idiomatically using APIs together
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
## Installation
|
|
104
|
+
|
|
105
|
+
[Download the latest version of Elasticsearch](https://www.elastic.co/downloads/elasticsearch)
|
|
106
|
+
or
|
|
107
|
+
[sign-up](https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page)
|
|
108
|
+
for a free trial of Elastic Cloud.
|
|
109
|
+
|
|
110
|
+
Refer to the [Installation section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation)
|
|
111
|
+
of the getting started documentation.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## Connecting
|
|
115
|
+
|
|
116
|
+
Refer to the [Connecting section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_connecting)
|
|
117
|
+
of the getting started documentation.
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
## Usage
|
|
121
|
+
-----
|
|
122
|
+
|
|
123
|
+
* [Creating an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_creating_an_index)
|
|
124
|
+
* [Indexing a document](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_indexing_documents)
|
|
125
|
+
* [Getting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_getting_documents)
|
|
126
|
+
* [Searching documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_searching_documents)
|
|
127
|
+
* [Updating documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_updating_documents)
|
|
128
|
+
* [Deleting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_documents)
|
|
129
|
+
* [Deleting an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_an_index)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## Compatibility
|
|
133
|
+
|
|
134
|
+
Language clients are forward compatible; meaning that the clients support
|
|
135
|
+
communicating with greater or equal minor versions of Elasticsearch without
|
|
136
|
+
breaking. It does not mean that the clients automatically support new features
|
|
137
|
+
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
138
|
+
client version. For example, a 8.12 client version won't automatically support
|
|
139
|
+
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
140
|
+
is required for that. Elasticsearch language clients are only backwards
|
|
141
|
+
compatible with default distributions and without guarantees made.
|
|
142
|
+
|
|
143
|
+
| Elasticsearch Version | Elasticsearch-Python Branch | Supported |
|
|
144
|
+
| --------------------- | ------------------------ | --------- |
|
|
145
|
+
| main | main | |
|
|
146
|
+
| 8.x | 8.x | 8.x |
|
|
147
|
+
| 7.x | 7.x | 7.17 |
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
If you have a need to have multiple versions installed at the same time older
|
|
151
|
+
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
## Documentation
|
|
155
|
+
|
|
156
|
+
Documentation for the client is [available on elastic.co] and [Read the Docs].
|
|
157
|
+
|
|
158
|
+
[available on elastic.co]: https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html
|
|
159
|
+
[Read the Docs]: https://elasticsearch-py.readthedocs.io
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
## Feedback 🗣️
|
|
163
|
+
|
|
164
|
+
The engineering team here at Elastic is looking for developers to participate in
|
|
165
|
+
research and feedback sessions to learn more about how you use our Python client and
|
|
166
|
+
what improvements we can make to their design and your workflow. If you're interested in
|
|
167
|
+
sharing your insights into developer experience and language client design, please fill
|
|
168
|
+
out this [short form]. Depending on the number of responses we get, we may either
|
|
169
|
+
contact you for a 1:1 conversation or a focus group with other developers who use the
|
|
170
|
+
same client. Thank you in advance - your feedback is crucial to improving the user
|
|
171
|
+
experience for all Elasticsearch developers!
|
|
172
|
+
|
|
173
|
+
[short form]: https://forms.gle/bYZwDQXijfhfwshn9
|
|
174
|
+
|
|
175
|
+
## License
|
|
176
|
+
|
|
177
|
+
This software is licensed under the [Apache License 2.0](./LICENSE). See [NOTICE](./NOTICE).
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://github.com/elastic/elasticsearch-py/raw/main/docs/logo-elastic-glyph-color.svg" width="20%" alt="Elastic logo" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# Elasticsearch Python Client
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/elasticsearch" /></a>
|
|
9
|
+
<a href="https://pypi.org/project/elasticsearch"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/elasticsearch" /></a>
|
|
10
|
+
<a href="https://anaconda.org/conda-forge/elasticsearch"><img alt="Conda Version" src="https://img.shields.io/conda/vn/conda-forge/elasticsearch" /></a>
|
|
11
|
+
<a href="https://pepy.tech/project/elasticsearch?versions=*"><img alt="Downloads" src="https://static.pepy.tech/badge/elasticsearch" /></a>
|
|
12
|
+
<br/>
|
|
13
|
+
<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>
|
|
14
|
+
<a href="https://buildkite.com/elastic/elasticsearch-py-integration-tests"><img alt="Buildkite Status on Buildkite" src="https://badge.buildkite.com/68e22afcb2ea8f6dcc20834e3a5b5ab4431beee33d3bd751f3.svg" /></a>
|
|
15
|
+
<a href="https://elasticsearch-py.readthedocs.io"><img alt="Documentation Status" src="https://readthedocs.org/projects/elasticsearch-py/badge/?version=latest" /></a><br>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
*The official Python client for Elasticsearch.*
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
* Translating basic Python data types to and from JSON
|
|
24
|
+
* Configurable automatic discovery of cluster nodes
|
|
25
|
+
* Persistent connections
|
|
26
|
+
* Load balancing (with pluggable selection strategy) across available nodes
|
|
27
|
+
* Failed connection penalization (time based - failed connections won't be
|
|
28
|
+
retried until a timeout is reached)
|
|
29
|
+
* Support for TLS and HTTP authentication
|
|
30
|
+
* Thread safety across requests
|
|
31
|
+
* Pluggable architecture
|
|
32
|
+
* Helper functions for idiomatically using APIs together
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
[Download the latest version of Elasticsearch](https://www.elastic.co/downloads/elasticsearch)
|
|
38
|
+
or
|
|
39
|
+
[sign-up](https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page)
|
|
40
|
+
for a free trial of Elastic Cloud.
|
|
41
|
+
|
|
42
|
+
Refer to the [Installation section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation)
|
|
43
|
+
of the getting started documentation.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Connecting
|
|
47
|
+
|
|
48
|
+
Refer to the [Connecting section](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_connecting)
|
|
49
|
+
of the getting started documentation.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## Usage
|
|
53
|
+
-----
|
|
54
|
+
|
|
55
|
+
* [Creating an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_creating_an_index)
|
|
56
|
+
* [Indexing a document](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_indexing_documents)
|
|
57
|
+
* [Getting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_getting_documents)
|
|
58
|
+
* [Searching documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_searching_documents)
|
|
59
|
+
* [Updating documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_updating_documents)
|
|
60
|
+
* [Deleting documents](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_documents)
|
|
61
|
+
* [Deleting an index](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_deleting_an_index)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
## Compatibility
|
|
65
|
+
|
|
66
|
+
Language clients are forward compatible; meaning that the clients support
|
|
67
|
+
communicating with greater or equal minor versions of Elasticsearch without
|
|
68
|
+
breaking. It does not mean that the clients automatically support new features
|
|
69
|
+
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
70
|
+
client version. For example, a 8.12 client version won't automatically support
|
|
71
|
+
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
72
|
+
is required for that. Elasticsearch language clients are only backwards
|
|
73
|
+
compatible with default distributions and without guarantees made.
|
|
74
|
+
|
|
75
|
+
| Elasticsearch Version | Elasticsearch-Python Branch | Supported |
|
|
76
|
+
| --------------------- | ------------------------ | --------- |
|
|
77
|
+
| main | main | |
|
|
78
|
+
| 8.x | 8.x | 8.x |
|
|
79
|
+
| 7.x | 7.x | 7.17 |
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
If you have a need to have multiple versions installed at the same time older
|
|
83
|
+
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
## Documentation
|
|
87
|
+
|
|
88
|
+
Documentation for the client is [available on elastic.co] and [Read the Docs].
|
|
89
|
+
|
|
90
|
+
[available on elastic.co]: https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html
|
|
91
|
+
[Read the Docs]: https://elasticsearch-py.readthedocs.io
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
## Feedback 🗣️
|
|
95
|
+
|
|
96
|
+
The engineering team here at Elastic is looking for developers to participate in
|
|
97
|
+
research and feedback sessions to learn more about how you use our Python client and
|
|
98
|
+
what improvements we can make to their design and your workflow. If you're interested in
|
|
99
|
+
sharing your insights into developer experience and language client design, please fill
|
|
100
|
+
out this [short form]. Depending on the number of responses we get, we may either
|
|
101
|
+
contact you for a 1:1 conversation or a focus group with other developers who use the
|
|
102
|
+
same client. Thank you in advance - your feedback is crucial to improving the user
|
|
103
|
+
experience for all Elasticsearch developers!
|
|
104
|
+
|
|
105
|
+
[short form]: https://forms.gle/bYZwDQXijfhfwshn9
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
This software is licensed under the [Apache License 2.0](./LICENSE). See [NOTICE](./NOTICE).
|