.. _readme:
es_client
=========
https://es-client.readthedocs.io/
You may wonder why this even exists, as at first glance it doesn't seem to make
anything any easier than just using the elasticsearch8 Python module to
build a client connection. I needed to be able to reuse the more complex
schema validation bits I was employing, namely:
* ``master_only`` detection
* Elasticsearch version checking and validation, and the option to skip this.
* Configuration value validation, including file paths for SSL certificates,
meaning:
* No unknown keys or unacceptable parameter values are accepted
* Acceptable values and ranges are established (where known)--and easy to
amend, if necessary.
So, if you don't need these, then this library probably isn't what you're
looking for. If you want these features, then you've come to the right place.
Example Usage
-------------
::
from es_client import Builder
config = {
'elasticsearch': {
'client': {
'hosts': 'https://10.0.0.123:9200',
'ca_certs': '/etc/elasticsearch/certs/ca.crt',
'request_timeout': 60,
},
'other_settings': {
'master_only': false,
'username': 'joe_user',
'password': 'password',
}
},
'logging': {
'loglevel': 'INFO',
'logfile': '/path/to/file.log',
'logformat': 'default',
}
}
builder = Builder(configdict=config)
try:
builder.connect()
except:
# Do exception handling here...
client = builder.client
Additionally, you can read from a YAML configuration file:
::
---
elasticsearch:
client:
hosts: https://10.0.0.123:9200
ca_certs: /etc/elasticsearch/certs/ca.crt
request_timeout: 60
other_settings:
master_only: false
username: joe_user
password: password
logging:
loglevel: INFO
logfile: /path/to/file.log
logformat: default
::
from es_client import Builder
builder = Builder(configfile='/path/to/es_client.yml')
try:
builder.connect()
except:
# Do exception handling here...
client = builder.client
The same schema validations apply here as well.
Raw data
{
"_id": null,
"home_page": null,
"name": "es-client",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "client, command-line, connect, elasticsearch",
"author": null,
"author_email": "Aaron Mildenstein <aaron@mildensteins.com>",
"download_url": "https://files.pythonhosted.org/packages/88/a7/b86350848fca8c5f5893f429b64b6fee3cca554a1ae0000ab81651baf1a5/es_client-8.15.1.tar.gz",
"platform": null,
"description": ".. _readme:\n\nes_client\n=========\n\nhttps://es-client.readthedocs.io/\n\nYou may wonder why this even exists, as at first glance it doesn't seem to make\nanything any easier than just using the elasticsearch8 Python module to\nbuild a client connection. I needed to be able to reuse the more complex\nschema validation bits I was employing, namely:\n\n* ``master_only`` detection\n* Elasticsearch version checking and validation, and the option to skip this.\n* Configuration value validation, including file paths for SSL certificates,\n meaning:\n\n * No unknown keys or unacceptable parameter values are accepted\n * Acceptable values and ranges are established (where known)--and easy to\n amend, if necessary.\n\nSo, if you don't need these, then this library probably isn't what you're\nlooking for. If you want these features, then you've come to the right place.\n\nExample Usage\n-------------\n\n::\n\n from es_client import Builder\n\n config = {\n 'elasticsearch': {\n 'client': {\n 'hosts': 'https://10.0.0.123:9200',\n 'ca_certs': '/etc/elasticsearch/certs/ca.crt',\n 'request_timeout': 60,\n },\n 'other_settings': {\n 'master_only': false,\n 'username': 'joe_user',\n 'password': 'password',\n }\n },\n 'logging': {\n 'loglevel': 'INFO',\n 'logfile': '/path/to/file.log',\n 'logformat': 'default',\n }\n }\n\n builder = Builder(configdict=config)\n\n try:\n builder.connect()\n except:\n # Do exception handling here...\n\n client = builder.client\n\nAdditionally, you can read from a YAML configuration file:\n\n::\n\n ---\n elasticsearch:\n client:\n hosts: https://10.0.0.123:9200\n ca_certs: /etc/elasticsearch/certs/ca.crt\n request_timeout: 60\n other_settings:\n master_only: false\n username: joe_user\n password: password\n logging:\n loglevel: INFO\n logfile: /path/to/file.log\n logformat: default\n\n::\n\n from es_client import Builder\n\n builder = Builder(configfile='/path/to/es_client.yml')\n\n try:\n builder.connect()\n except:\n # Do exception handling here...\n\n client = builder.client\n\nThe same schema validations apply here as well.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Elasticsearch Client builder, complete with schema validation",
"version": "8.15.1",
"project_urls": {
"Bug Tracker": "https://github.com/untergeek/es_client/issues",
"Documentation": "https://es-client.readthedocs.io/",
"Homepage": "https://github.com/untergeek/es_client",
"Release Notes": "https://github.com/untergeek/es_client/releases",
"Source Code": "http://github.com/untergeek/es_client"
},
"split_keywords": [
"client",
" command-line",
" connect",
" elasticsearch"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "11825113657ea43d07a4d89887cfdc325b69b0db9d138d11089770e07d8d1ec4",
"md5": "6e5e1ee916467274277dd4f743348b74",
"sha256": "bdb7e3c3a9c13cd7d1239572813c0de1dd6ee591f49ea830286931d9cd73705b"
},
"downloads": -1,
"filename": "es_client-8.15.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6e5e1ee916467274277dd4f743348b74",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 34541,
"upload_time": "2024-08-23T22:31:13",
"upload_time_iso_8601": "2024-08-23T22:31:13.483174Z",
"url": "https://files.pythonhosted.org/packages/11/82/5113657ea43d07a4d89887cfdc325b69b0db9d138d11089770e07d8d1ec4/es_client-8.15.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88a7b86350848fca8c5f5893f429b64b6fee3cca554a1ae0000ab81651baf1a5",
"md5": "c56d1d2dd84cc8b42463327aa54d8fb0",
"sha256": "d901eb135072411d2779985859ec0b198d3ca02bf50eb60acb5cfa34fa127767"
},
"downloads": -1,
"filename": "es_client-8.15.1.tar.gz",
"has_sig": false,
"md5_digest": "c56d1d2dd84cc8b42463327aa54d8fb0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 37251,
"upload_time": "2024-08-23T22:31:14",
"upload_time_iso_8601": "2024-08-23T22:31:14.903445Z",
"url": "https://files.pythonhosted.org/packages/88/a7/b86350848fca8c5f5893f429b64b6fee3cca554a1ae0000ab81651baf1a5/es_client-8.15.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-23 22:31:14",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "untergeek",
"github_project": "es_client",
"travis_ci": false,
"coveralls": true,
"github_actions": false,
"lcname": "es-client"
}