Metadata-Version: 1.1
Name: bottle-cerberus
Version: 0.0.1
Summary: Cerberus plugin for bottle
Home-page: https://github.com/kianxineki/bottle-cerberus
Author: Alberto Galera Jimenez
Author-email: galerajimenez@gmail.com
License: GPL
Description: Currently under development, unstable version!
        ==============================================
        
        Cerberus plugin
        ===============
        
        Cerberus plugin for bottle
        
        installation
        ------------
        
        Via pip: ``pip install bottle-cerberus``
        
        Or clone:
        ``git clone https://github.com/kianxineki/bottle-cerberus.git``
        
        example:
        --------
        
        .. code:: python
        
            from bottle import get, install, run
            from cerberus_plugin import CerberusPlugin
        
        
            @get("/example/<number>", schema={'url': {'number': {'coerce': int}}})
            def example(number):
                return "the best number %s!" % number
        
        
            install(CerberusPlugin())
            run(host="0.0.0.0", port="9988")
        
        
Keywords: bottlejwt
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
