Metadata-Version: 1.1
Name: Flask-ESClient
Version: 0.1.1
Summary: Flask extension for ESClient (elasticsearch client)
Home-page: https://github.com/baijum/flask-esclient
Author: Baiju Muthukadan
Author-email: baiju.m.mail@gmail.com
License: UNKNOWN
Description: Flask-ESClient
        ==============
        
        Flask-ESClient is a Flask extension for ESClient_ (elasticsearch client).
        
        .. _ESClient: https://github.com/eriky/ESClient
        
        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
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
