summaryrefslogtreecommitdiff
path: root/python/elasticsearch5/README
diff options
context:
space:
mode:
authorBarry J. Grundy <bgrundyat>2019-01-24 20:42:11 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-01-25 12:11:00 +0700
commit28c825b2f23a7853a8e07d740fd3f50c3fba0ee1 (patch)
tree378e073c638a449b597df30367692a3595eaa154 /python/elasticsearch5/README
parentc1bc1a4e1b9d7bd5341001ce1ccb755cb79fcd0f (diff)
downloadslackbuilds-28c825b2f23a7853a8e07d740fd3f50c3fba0ee1.tar.gz
python/elasticsearch5: Added (python client for Elasticsearch).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/elasticsearch5/README')
-rw-r--r--python/elasticsearch5/README14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/elasticsearch5/README b/python/elasticsearch5/README
new file mode 100644
index 0000000000..764ed59f2d
--- /dev/null
+++ b/python/elasticsearch5/README
@@ -0,0 +1,14 @@
+elasticsearch5 (Official low level python client for Elasticsearch)
+
+Official low-level client for Elasticsearch.
+Its goal is to provide common ground for all Elasticsearch-related
+code in Python; because of this it tries to be opinion-free and very extendable.
+
+It provides a more convenient and idiomatic way to write and manipulate
+queries. It stays close to the Elasticsearch JSON DSL, mirroring its
+terminology and structure while exposing the whole range of the DSL from Python
+either directly using defined classes or a queryset-like expressions.
+
+It also provides an optional persistence layer for working with documents as
+Python objects in an ORM-like fashion: defining mappings, retrieving and saving
+documents, wrapping the document data in user-defined classes.