__init__.py 404 B

12345678910111213141516
  1. """
  2. oauthlib.oauth2.rfc6749
  3. ~~~~~~~~~~~~~~~~~~~~~~~
  4. This module is an implementation of various logic needed
  5. for consuming and providing OAuth 2.0 RFC6749.
  6. """
  7. import functools
  8. import logging
  9. from .endpoints.base import BaseEndpoint, catch_errors_and_unavailability
  10. from .errors import (
  11. FatalClientError, OAuth2Error, ServerError, TemporarilyUnavailableError,
  12. )
  13. log = logging.getLogger(__name__)