Skip to main content

Flask extension for ESClient (elasticsearch client)

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-ESClient-0.1.1.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file Flask-ESClient-0.1.1.tar.gz.

File metadata

File hashes

Hashes for Flask-ESClient-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b3651a4f2d77cff6a472c3f1058c174b346949b61456946d86a419c49be66d8d
MD5 298ae09b0ef526f3cf1e937e5ec5e769
BLAKE2b-256 eae9a21213f8aea7db2807cecaceb4c45c78c65adf2ab4b1b6babdb6779301b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page