How would I get a list of the names of an index in Python? Here is what I have so far:
>>> es=e.es >>> es
how to get a list of all indexes in this cluster?
Use the wildcard. Works with elasticsearch-py.
for index in es.indices.get('*'): print index