Metadata-Version: 1.1
Name: flask-inliner
Version: 1.0.0
Summary: Flask-Inliner converts CSS <style> blocks to inline style attributes
Home-page: https://github.com/Code-ReaQtor/flask-inliner
Author: Ronie Martinez
Author-email: ronmarti18@gmail.com
License: MIT
Download-URL: https://github.com/Code-ReaQtor/flask-inliner/tarball/1.0.0
Description: Flask-Inliner
        =============
        
        Flask-Inliner converts CSS <style> blocks to inline style attributes
        
        Installation
        ------------
        
        Using pip
        ~~~~~~~~~
        
        ::
        
            pip install flask-inliner
        
        Manual installation
        ~~~~~~~~~~~~~~~~~~~
        
        Download from https://github.com/Code-ReaQtor/flask-inliner/releases
        
        ::
        
            python setup.py install
        
        Example
        -------
        
        .. code:: python
        
            from flask import Flask
            from flask_inliner import Inliner
            app = Flask(__name__)
            Inliner(app)
        
        
            @app.route('/')
            def hello_world():
                return '<html><head><style>h1 { color:#ffcc00; }</style></head><body><h1>Hello World!</h1></body></html>'
        
            if __name__ == '__main__':
                app.run()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
