Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Authlib / jose / rfc7519 / __init__.py
Size: Mime:
# -*- coding: utf-8 -*-
"""
    authlib.jose.rfc7519
    ~~~~~~~~~~~~~~~~~~~~

    This module represents a direct implementation of
    JSON Web Token (JWT).

    https://tools.ietf.org/html/rfc7519
"""

from .jwt import JsonWebToken
from .claims import BaseClaims, JWTClaims

JWT = JsonWebToken

__all__ = ['JWT', 'JsonWebToken', 'BaseClaims', 'JWTClaims']