I\'m trying to use the python
client for elasticsearch
. Here is a minimal example:
impor
elasticsearch.py convert json response to dictionary for python, so that it is easy to extract information.
I.e
{u'count': 836780, u'_shards': {u'successful': 5, u'failed': 0, u'total': 5}}
is python dictionary.
If you wan to have it in json structure then you can do,
json.dumps()
look more python