from datetime import datetime
from elasticsearch import Elasticsearch
es = Elasticsearch()
doc = {
'author': 'kimchy',
'text': 'Elasticsearch: cool. bonsai cool.',
'timestamp': datetime.now(),
}
res = es.index(index="test", doc_type='tweet', id=1, body=doc)
print(res['result'])
index = "test"
query = {"aggs":{"all_times":{"terms":{"field":"@timestamp"}}}}
resp = es.search(index, body=query)
total = resp['hits']['total']
相关文章
- python项目练习四:新闻聚合
- python elasticsearch 入门教程(四)分析聚合
- 【转】python模块分析之logging日志(四)
- (四)elasticsearch 源码之索引流程分析
- ArcGIS for Desktop入门教程_第四章_入门案例分析 - ArcGIS知乎-新一代ArcGIS问答社区
- 横向对比分析Python解析XML的四种方式
- 小白学 Python 数据分析(5):Pandas (四)基础操作(1)查看数据
- python爬虫入门教程--HTML文本的解析库BeautifulSoup(四)
- Python入门教程1. 基本运算【四则运算、变量、math模块等】
- python基础教程项目四之新闻聚合