summaryrefslogtreecommitdiff
path: root/game/python-extra/oauthlib/oauth1/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'game/python-extra/oauthlib/oauth1/__init__.py')
-rw-r--r--game/python-extra/oauthlib/oauth1/__init__.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/game/python-extra/oauthlib/oauth1/__init__.py b/game/python-extra/oauthlib/oauth1/__init__.py
new file mode 100644
index 0000000..9caf12a
--- /dev/null
+++ b/game/python-extra/oauthlib/oauth1/__init__.py
@@ -0,0 +1,23 @@
+"""
+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