Skip to content

baijum/flask-esclient

Repository files navigation

Flask-ESClient

Flask-ESClient is a Flask extension for ESClient (elasticsearch client).

Here is an example:

from flask import Flask
from flask_esclient import ESClient

app = Flask(__name__)
app.config['ELASTICSEARCH_URL'] = 'http://localhost:9200/'
esclient = ESClient(app)

@app.route('/add_document')
def add_document():
    # Construct the data dynamically
    data = {
      "title": "Some Title",
      "content": "Some content",
      }
    esclient.connection.index("app1",
                              "something",
                              body=data,
                              docid=1) # docid should be dynamically changed

About

Flas extension for ESClient (elasticsearch client)

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages