Metadata-Version: 1.1
Name: Flask-Elastic
Version: 0.1
Summary: Integrates official client for Elasticsearch into Flask
Home-page: UNKNOWN
Author: Marcel Tschopp
Author-email: mt@corova.net
License: BSD
Download-URL: https://github.com/bbmogool/flask-elastic/
Description: Flask-Elastic
        =============
        
        Integrates the official [Python low-level client for Elasticsearch](https://github.com/elasticsearch/elasticsearch-py) into Flask.
        
        Installation
        ------------
        
        Flask-Elastic is pip installable:
        
        	$ pip install Flask-Elastic
        
        Configure
        ---------
        
        The only configuration is ``ELASTICSEARCH_URL``, defaults to ``localhost:9200``
        
        Usage
        -----
        
        Import the extension into your Flask project and initialise::
        
        	from flask.ext.elastic import Elastic
        
        	elastic = Elastic(app)
        
        Development
        -----------
        
        Source code is hosted on [GitHub](https://github.com/bbmogool/flask-elastic) (contributions are welcome).
        
Platform: any
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
