how to implement ElasticSearch in Flask app?

elasticsearch, flask, python

Solution

Here's a module which extends `flask` to use `ElasticSearch`. It's actually just a very thin wrapper around pyelasticsearch, which does all the heavy lifting.

Problem

I wrote a Python Flask app and want to integrate ElasticSearch in this for effective search. But there is not tuts/docs available regarding integrating ElasticSearch in flask app.. Please refer any tuts/docs if available? Or any instructions. Regards

Original source