mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-22 10:53:03 -08:00
61960aa744
* Bump requests-oauthlib from 1.3.0 to 1.3.1 Bumps [requests-oauthlib](https://github.com/requests/requests-oauthlib) from 1.3.0 to 1.3.1. - [Release notes](https://github.com/requests/requests-oauthlib/releases) - [Changelog](https://github.com/requests/requests-oauthlib/blob/master/HISTORY.rst) - [Commits](https://github.com/requests/requests-oauthlib/compare/v1.3.0...v1.3.1) --- updated-dependencies: - dependency-name: requests-oauthlib dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update requests-oauthlib==1.3.1 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
"""
|
|
oauthlib.oauth2
|
|
~~~~~~~~~~~~~~
|
|
|
|
This module is a wrapper for the most recent implementation of OAuth 2.0 Client
|
|
and Server classes.
|
|
"""
|
|
from .rfc6749.clients import (
|
|
BackendApplicationClient, Client, LegacyApplicationClient,
|
|
MobileApplicationClient, ServiceApplicationClient, WebApplicationClient,
|
|
)
|
|
from .rfc6749.endpoints import (
|
|
AuthorizationEndpoint, BackendApplicationServer, IntrospectEndpoint,
|
|
LegacyApplicationServer, MetadataEndpoint, MobileApplicationServer,
|
|
ResourceEndpoint, RevocationEndpoint, Server, TokenEndpoint,
|
|
WebApplicationServer,
|
|
)
|
|
from .rfc6749.errors import (
|
|
AccessDeniedError, FatalClientError, InsecureTransportError,
|
|
InvalidClientError, InvalidClientIdError, InvalidGrantError,
|
|
InvalidRedirectURIError, InvalidRequestError, InvalidRequestFatalError,
|
|
InvalidScopeError, MismatchingRedirectURIError, MismatchingStateError,
|
|
MissingClientIdError, MissingCodeError, MissingRedirectURIError,
|
|
MissingResponseTypeError, MissingTokenError, MissingTokenTypeError,
|
|
OAuth2Error, ServerError, TemporarilyUnavailableError, TokenExpiredError,
|
|
UnauthorizedClientError, UnsupportedGrantTypeError,
|
|
UnsupportedResponseTypeError, UnsupportedTokenTypeError,
|
|
)
|
|
from .rfc6749.grant_types import (
|
|
AuthorizationCodeGrant, ClientCredentialsGrant, ImplicitGrant,
|
|
RefreshTokenGrant, ResourceOwnerPasswordCredentialsGrant,
|
|
)
|
|
from .rfc6749.request_validator import RequestValidator
|
|
from .rfc6749.tokens import BearerToken, OAuth2Token
|
|
from .rfc6749.utils import is_secure_transport
|
|
from .rfc8628.clients import DeviceClient
|