Format the output of elasticsearch-py

荒凉一梦 提交于 2019-12-01 18:06:40

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!