Metadata-Version: 1.1
Name: Flask-Plugins
Version: 1.6.0
Summary: Create plugins for your Flask application
Home-page: https://github.com/sh4nks/flask-plugins
Author: Peter Justin
Author-email: peter.justin@outlook.com
License: BSD
Description: 
        Flask-Plugins
        -------------
        
        Flask-Plugins makes it possible, to create plugins for your
        application. In addition to the plugin system, it also provides a simple
        event system which can be used by plugins to extend your application without
        the need to modify your core code.
        
        
        And Easy to Setup
        `````````````````
        
        First of all, you have to install it:
        
        .. code:: bash
        
            $ pip install flask-plugins
        
        and then you need to initialize it somewhere in your code.
        
        .. code:: python
        
            from flask_plugins import PluginManager
        
            plugin_manager = PluginManager(app)
        
        Want to use the factory pattern? No problem!
        
        .. code:: python
        
            from flask_plugins import PluginManager
        
            plugin_manager = PluginManager()
            plugin_manager.init_app(app)
        
        Resources
        `````````
        
        * `source <https://github.com/sh4nks/flask-plugins>`_
        * `docs <https://flask-plugins.readthedocs.org/en/latest>`_
        * `issues <https://github.com/sh4nks/flask-plugins/issues>`_
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Flask
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
