Metadata-Version: 1.0
Name: Flask-Genshi
Version: 0.5.1
Summary: An extension to Flask for easy Genshi templating.
Home-page: http://packages.python.org/Flask-Genshi
Author: Dag Odenhall
Author-email: dag.odenhall@gmail.com
License: BSD
Description: Flask-Genshi
        ------------
        
        `Flask-Genshi`_ is an extension to `Flask`_ that allows you to easily
        use `Genshi`_ for templating. Easily switch between HTML5 and XHTML
        and have the mimetype set automatically for you.
        
        ::
        
            from flask import Flask
            from flaskext.genshi import Genshi, render_response
        
            app = Flask(__name__)
            genshi = Genshi(app)
        
            @app.route('/')
            def index():
                title = 'Genshi + Flask, a match made in heaven!'
                return render_response('index.html', dict(title=title))
        
        You can install the `development version`_ from `GitHub`_
        with ``easy_install Flask-Genshi==dev`` but you probably want the
        latest stable release::
        
            sudo easy_install Flask-Genshi
        
        .. _Flask-Genshi: http://packages.python.org/Flask-Genshi/
        .. _Flask: http://flask.pocoo.org/
        .. _Genshi: http://genshi.edgewall.org/
        .. _development version: http://github.com/dag/flask-genshi/zipball/master#egg=Flask-Genshi-dev
        .. _GitHub: http://github.com/dag/flask-genshi
        
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 :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Text Processing :: Markup :: XML
