Metadata-Version: 1.1
Name: Flask-Espresso
Version: 0.2.0
Summary: Adds Coffescript support to Flask applications
Home-page: https://github.com/morgan-del/flask-espresso
Author: Morgan Delahaye-Prat
Author-email: mdp@m-del.net
License: BSD
Description: 
        Flask-Espresso
        ==============
        
        Adds Coffeescript [0] support to Flask [1] applications.
        
        Flask-Espresso will compile on the fly your coffee-scripts in the template
        directory of your application. To avoid performance issues, a cache mechanism
        retrieves the scripts already compiled.
        
        
        Install it
        ----------
        
            $ pip install Flask-Espresso
        
        Note : Flask-Espresso requires you to have a javascript runtime installed on
               your system.
        
        How-to use it
        -------------
        
        A simple example to show you how to use it. Create a new Flask application and
        put a coffeescript file ``script.coffee`` in its template directory.
        
            from flask import Flask
            from flask.ext.espresso import Espresso, espresso
        
            app = Flask(__name__)
            esp = Espresso(app)
        
            @app.route("/")
            def hello():
                return espresso('script.coffee')
        
            if __name__ == "__main__":
                app.run(debug=True)
        
        Links
        -----
        
        [0] http://www.coffeescript.org
        [1] http://flask.pocoo.org/
        
Platform: any
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: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
