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 / oauth2 / rfc7662 / __init__.py
Size: Mime:
# -*- coding: utf-8 -*-
"""
    authlib.oauth2.rfc7662
    ~~~~~~~~~~~~~~~~~~~~~~

    This module represents a direct implementation of
    OAuth 2.0 Token Introspection.

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

# flake8: noqa

from .introspection import IntrospectionEndpoint
from .models import IntrospectionToken

__all__ = ['IntrospectionEndpoint', 'IntrospectionToken']