Metadata-Version: 1.1
Name: Flask-Pretty
Version: 0.1.0
Summary: Flask extension to output prettified HTML pages
Home-page: https://github.com/rclement/flask-pretty
Author: Romain Clement
Author-email: r.clement88@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: Flask-Pretty
        ============
        
        |Build Status| |Coverage Status| |Documentation Status|
        
        Flask-Pretty is a Flask extension to output prettified HTML pages to
        ease the development process of HTML templates. However, HTML
        prettifying should only be used for development purposes only. For
        production purposes, HTML minifying should be used instead (for instance
        by using `Flask-HTMLmin <https://github.com/hamidfzm/Flask-HTMLmin>`__).
        
        The underlying HTML prettifying process is provided by
        `BeautifulSoup <https://www.crummy.com/software/BeautifulSoup>`__.
        
        Installation
        ------------
        
        Install the extension with with `pipenv <https://docs.pipenv.org>`__
        (recommended):
        
        ::
        
            $ pipenv install flask-pretty
        
        Or with `pip <https://pip.pypa.io>`__:
        
        ::
        
            $ pip install flask-pretty
        
        Usage
        -----
        
        Using Flask-Pretty is really simple:
        
        ::
        
                import Flask
                from flask_pretty import Prettify
        
                app = Flask(__name__)
                prettify = Prettify(app)
        
        Documentation
        -------------
        
        The Sphinx-compiled documentation is available on
        `ReadTheDocs <http://flask-pretty.readthedocs.io/en/latest/>`__.
        
        License
        -------
        
        The MIT License (MIT)
        
        Copyright (c) 2018 Romain Clement
        
        .. |Build Status| image:: https://travis-ci.org/rclement/flask-pretty.svg?branch=develop
           :target: https://travis-ci.org/rclement/flask-pretty
        .. |Coverage Status| image:: https://coveralls.io/repos/github/rclement/flask-pretty/badge.svg?branch=develop
           :target: https://coveralls.io/github/rclement/flask-pretty?branch=develop
        .. |Documentation Status| image:: https://readthedocs.org/projects/flask-pretty/badge/?version=latest
           :target: http://flask-pretty.readthedocs.io/en/latest/?badge=latest
        
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
