mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-21 10:22:58 -08:00
0d1d2a3e6b
* Bump requests-oauthlib from 1.3.1 to 2.0.0 Bumps [requests-oauthlib](https://github.com/requests/requests-oauthlib) from 1.3.1 to 2.0.0. - [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.1...v2.0.0) --- updated-dependencies: - dependency-name: requests-oauthlib dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update requests-oauthlib==2.0.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
24 lines
822 B
Python
24 lines
822 B
Python
"""
|
|
oauthlib.oauth1
|
|
~~~~~~~~~~~~~~
|
|
|
|
This module is a wrapper for the most recent implementation of OAuth 1.0 Client
|
|
and Server classes.
|
|
"""
|
|
from .rfc5849 import (
|
|
SIGNATURE_HMAC, SIGNATURE_HMAC_SHA1, SIGNATURE_HMAC_SHA256,
|
|
SIGNATURE_HMAC_SHA512, SIGNATURE_PLAINTEXT, SIGNATURE_RSA,
|
|
SIGNATURE_RSA_SHA1, SIGNATURE_RSA_SHA256, SIGNATURE_RSA_SHA512,
|
|
SIGNATURE_TYPE_AUTH_HEADER, SIGNATURE_TYPE_BODY, SIGNATURE_TYPE_QUERY,
|
|
Client,
|
|
)
|
|
from .rfc5849.endpoints import (
|
|
AccessTokenEndpoint, AuthorizationEndpoint, RequestTokenEndpoint,
|
|
ResourceEndpoint, SignatureOnlyEndpoint, WebApplicationServer,
|
|
)
|
|
from .rfc5849.errors import (
|
|
InsecureTransportError, InvalidClientError, InvalidRequestError,
|
|
InvalidSignatureMethodError, OAuth1Error,
|
|
)
|
|
from .rfc5849.request_validator import RequestValidator
|