Metadata-Version: 2.1
Name: bottle-pyjwt
Version: 1.3.7
Summary: El plugin de bottle-pyjwt permite usar autentificacion mediante token usando el estandar java jwt
Home-page: UNKNOWN
Author: Lorenzo A. Garcia Calzadilla
Author-email: lorenzogarciacalzadilla@gmail.com
Maintainer: 
Maintainer-email: 
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: bottle
Requires-Dist: pyjwt

Bottle PyJWT
============

This is a **bottle** plugin to use the *JWT* library

Quick Start
-----------

The **bottle-pyjwt** plugin allows to use token authentication using the java *jwt* standard

    from bottle import route, install
    from bottle.ext.jwt import JwtPlugin

    validate = lambda auth, auth_role: auth == auth_role

    app.install(JwtPlugin(validate, "my secret", fail_redirect="/login"))

    @route("/", auth="any values and types")
    def example():
        return "OK"

Changelog
---------

See [Changelog](CHANGELOG.md)

License
-------

See [Licencia](LICENSE.txt)

