Integrates the official Python low-level client for Elasticsearch into Flask.
Flask-Elastic is pip installable:
$ pip install Flask-Elastic
The only configuration is ELASTICSEARCH_URL
, defaults to localhost:9200
. You can pass any kwargs to Elastic()
for further configuration. The kwargs will be passed to Elasticsearch()
.
Import the extension into your Flask project and initialize:
from flask.ext.elastic import Elastic
elastic = Elastic(app)
Source code is hosted on GitHub (contributions are welcome).