Metadata-Version: 1.1
Name: Flask-ElasticUtils
Version: 0.1.6
Summary: ElasticUtils for Flask
Home-page: https://github.com/neilalbrock/flask-elasticutils/
Author: Neil Albrock - Atomised
Author-email: neil@atomised.coop
License: BSD
Description: ==================
        Flask-ElasticUtils
        ==================
        
        Integrates ``elasticutils`` with Flask (a very thin wrapper).
        
        Installation
        ------------
        
        Flask-ElasticUtils is pip installable::
        
        	$ pip install Flask-ElasticUtils
        
        You can install the latest development version like so::
        
        	$ pip install http://github.com/neilalbrock/flask-elasticutils/tarball/master#egg=Flask-ElasticUtils-dev
        
        Configure
        ---------
        
        The only configuration is ``ELASTICSEARCH_URL``, defaults to ``http://localhost:9200/``
        
        Usage
        -----
        
        Import the extension into your Flask project and initialise::
        
        	from flask.ext.elasticutils import ElasticUtils
        
        	es = ElasticUtils(app)
        
        Development
        -----------
        
        Source code is hosted on `GitHub <https://github.com/neilalbrock/flask-elasticutils>`_ (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
