Metadata-Version: 1.1
Name: bottle-flash2
Version: 0.0.1
Summary: flash plugin for bottle
Home-page: https://github.com/shinshin86/bottle-flash2
Author: shinshin86
Author-email: beagles1986@gmail.com
License: MIT
Description: # Bottle-Flash2
        ----
        
        flash plugin for bottle.<br>
        (Bottle-Flash2 is a fork of [Bottle-Flash](https://pypi.python.org/pypi/bottle-flash/)).
        
        # Example
        
        ####app.py
        
        ~~~~
        from bottle import Bottle, post, jinja2_template as template
        from bottle_flash2 import FlashPlugin
        
        # Flash Setup
        app = Bottle()
        COOKIE_SECRET = 'super_secret_string'
        app.install(FlashPlugin(secret=COOKIE_SECRET))
        
        @post('/flash_sample_done')
        def flash_sample():
            app.flash("flash message is here")
            
            # flash mesage is stored in list
            # Therefore, it is possible to store a multiple messages.
            app.flash("flash message 1")
            app.flash("flash message 2")
                
            return template('index.html', app = app)
        
        ~~~~
        
        #### index.html
        
        ~~~~
         {% set messages = app.get_flashed_messages() %}
         {% if messages %}
         <div id="flash_messages">
         <ul>
         {% for m in messages %}
         <li>{{ m[0] }}</li>
         {% endfor %}
         </ul>
         </div>
         {% endif %}
        ~~~~
        
        # Bottle version (Test environment)
        
        
        
        	version 0.12.9 or above later.
        
        	Latest Version -> '0.13-dev'
        
        
        # Licence
        
        MIT
Platform: UNKNOWN
Classifier: Framework :: Bottle
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
