1 Star 0 Fork 11

solomonren/ElasticSearch_API

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
api_2_add_doc.py 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
现任明教教主-乾颐堂 提交于 2019-06-11 22:18 . 最终版本!
import requests
import pprint
headers = {'Host': '192.168.1.100:9200',
'Content-Type': 'application/json'}
# 创建索引
def add_doc(index_name, data_type, doc_json):
r = requests.post('http://192.168.1.100:9200/' + index_name + '/' + data_type + '/', headers=headers, json=doc_json)
pprint.pprint(r.json())
def get_doc(index_name, data_type, doc_id, source=None):
if not source:
# 根据文档唯一ID获取文档
r = requests.get('http://192.168.1.100:9200/' + index_name + '/' + data_type + '/' + str(doc_id), headers=headers)
else:
# 根据文档唯一ID获取文档, 并且使用_source过滤返回内容
r = requests.get('http://192.168.1.100:9200/' + index_name + '/' + data_type + '/' + str(doc_id) + '?_source=' + source, headers=headers)
pprint.pprint(r.json())
if __name__ == "__main__":
# add_doc('pyshark_new', 'pkts', {'test': 'OK!', 'testdoc': False})
get_doc('pyshark_new', 'pkts', '_-ezRmsBw2zyUio2roUN')
get_doc('pyshark_new', 'pkts', '_-ezRmsBw2zyUio2roUN', 'test')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/solomonren/ElasticSearch_API.git
git@gitee.com:solomonren/ElasticSearch_API.git
solomonren
ElasticSearch_API
ElasticSearch_API
master

搜索帮助