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
Here is one way to do it with the get_alias() method:
>>> indices=es.indices.get_alias().keys() >>> sorted(indices) [u'avails', u'hey', u'kibana-int']