内容纲要
Pyhon中遍历elasticsearch索引表
<h1>使用通配符。适用于elasticsearch。</h1>
from elasticsearch import Elasticsearch
es = Elasticsearch('127.0.0.1:9200')
for index in es.indices.get('*'):
print(index)
pets, internet, deep learning