Metadata-Version: 1.1
Name: Flask-Plugins
Version: 1.0.3
Summary: A Extension that makes it possible to create plugins in Flask.
Home-page: http://github.com/sh4nks/flask-plugins/
Author: sh4nks
Author-email: sh4nks7@gmail.com
License: BSD
Description: 
        Flask-Plugins
        -------------
        
        Flask-Plugins provides an easy way to create plugins and add hooks for your
        application. It is also possible to create Hooks which can than be used to
        extend your application without the need to modify your core code.
        
        
        And Easy to Setup
        `````````````````
        
        First you need to install it via:
        
        .. code:: bash
        
            $ pip install flask-plugins
        
        and then you need to initialize it somewhere in your code.
        
        .. code:: python
        
            from flask.ext.plugins import PluginManager
        
            plugin_manager = PluginManager(app)
        
        It also supports the factory pattern for creating your app.
        
        .. code:: python
        
            from flask.ext.plugins import PluginManager
        
            plugin_manager = PluginManager()
            plugin_manager.init_app(app)
        
        Resources
        `````````
        
        * `source <https://github.com/sh4nks/flask-plugins>`_
        * `docs <https://http://flask-plugins.readthedocs.org/en/latest>`_
        * `issues <https://github.com/sh4nks/flask-plugins/issues>`_
        
        
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
