PyPI project
oauthlib
64 indexed releases ยท newest sdist 3.3.1 with 153 indexed members
Files in 3.3.1 oauthlib-3.3.1.tar.gz
- oauthlib/__init__.py
- oauthlib/common.py
- oauthlib/oauth1/__init__.py
- oauthlib/oauth1/rfc5849/__init__.py
- oauthlib/oauth1/rfc5849/endpoints/__init__.py
- oauthlib/oauth1/rfc5849/endpoints/access_token.py
- oauthlib/oauth1/rfc5849/endpoints/authorization.py
- oauthlib/oauth1/rfc5849/endpoints/base.py
- oauthlib/oauth1/rfc5849/endpoints/pre_configured.py
- oauthlib/oauth1/rfc5849/endpoints/request_token.py
- oauthlib/oauth1/rfc5849/endpoints/resource.py
- oauthlib/oauth1/rfc5849/endpoints/signature_only.py
- oauthlib/oauth1/rfc5849/errors.py
- oauthlib/oauth1/rfc5849/parameters.py
- oauthlib/oauth1/rfc5849/request_validator.py
- oauthlib/oauth1/rfc5849/signature.py
- oauthlib/oauth1/rfc5849/utils.py
- oauthlib/oauth2/__init__.py
- oauthlib/oauth2/rfc6749/__init__.py
- oauthlib/oauth2/rfc6749/clients/__init__.py
- oauthlib/oauth2/rfc6749/clients/backend_application.py
- oauthlib/oauth2/rfc6749/clients/base.py
- oauthlib/oauth2/rfc6749/clients/legacy_application.py
- oauthlib/oauth2/rfc6749/clients/mobile_application.py
- oauthlib/oauth2/rfc6749/clients/service_application.py
- oauthlib/oauth2/rfc6749/clients/web_application.py
- oauthlib/oauth2/rfc6749/endpoints/__init__.py
- oauthlib/oauth2/rfc6749/endpoints/authorization.py
- oauthlib/oauth2/rfc6749/endpoints/base.py
- oauthlib/oauth2/rfc6749/endpoints/introspect.py
- oauthlib/oauth2/rfc6749/endpoints/metadata.py
- oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
- oauthlib/oauth2/rfc6749/endpoints/resource.py
- oauthlib/oauth2/rfc6749/endpoints/revocation.py
- oauthlib/oauth2/rfc6749/endpoints/token.py
- oauthlib/oauth2/rfc6749/errors.py
- oauthlib/oauth2/rfc6749/grant_types/__init__.py
- oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
- oauthlib/oauth2/rfc6749/grant_types/base.py
- oauthlib/oauth2/rfc6749/grant_types/client_credentials.py
- oauthlib/oauth2/rfc6749/grant_types/implicit.py
- oauthlib/oauth2/rfc6749/grant_types/refresh_token.py
- oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.py
- oauthlib/oauth2/rfc6749/parameters.py
- oauthlib/oauth2/rfc6749/request_validator.py
- oauthlib/oauth2/rfc6749/tokens.py
- oauthlib/oauth2/rfc6749/utils.py
- oauthlib/oauth2/rfc8628/__init__.py
- oauthlib/oauth2/rfc8628/clients/__init__.py
- oauthlib/oauth2/rfc8628/clients/device.py
- oauthlib/oauth2/rfc8628/endpoints/__init__.py
- oauthlib/oauth2/rfc8628/endpoints/device_authorization.py
- oauthlib/oauth2/rfc8628/endpoints/pre_configured.py
- oauthlib/oauth2/rfc8628/errors.py
- oauthlib/oauth2/rfc8628/grant_types/__init__.py
- oauthlib/oauth2/rfc8628/grant_types/device_code.py
- oauthlib/oauth2/rfc8628/request_validator.py
- oauthlib/openid/__init__.py
- oauthlib/openid/connect/__init__.py
- oauthlib/openid/connect/core/__init__.py
- oauthlib/openid/connect/core/endpoints/__init__.py
- oauthlib/openid/connect/core/endpoints/pre_configured.py
- oauthlib/openid/connect/core/endpoints/userinfo.py
- oauthlib/openid/connect/core/exceptions.py
- oauthlib/openid/connect/core/grant_types/__init__.py
- oauthlib/openid/connect/core/grant_types/authorization_code.py
- oauthlib/openid/connect/core/grant_types/base.py
- oauthlib/openid/connect/core/grant_types/dispatchers.py
- oauthlib/openid/connect/core/grant_types/hybrid.py
- oauthlib/openid/connect/core/grant_types/implicit.py
- oauthlib/openid/connect/core/grant_types/refresh_token.py
- oauthlib/openid/connect/core/request_validator.py
- oauthlib/openid/connect/core/tokens.py
- oauthlib/signals.py
- oauthlib/uri_validate.py
- setup.py
- tests/__init__.py
- tests/oauth1/__init__.py
- tests/oauth1/rfc5849/__init__.py
- tests/oauth1/rfc5849/endpoints/__init__.py
- tests/oauth1/rfc5849/endpoints/test_access_token.py
- tests/oauth1/rfc5849/endpoints/test_authorization.py
- tests/oauth1/rfc5849/endpoints/test_base.py
- tests/oauth1/rfc5849/endpoints/test_request_token.py
- tests/oauth1/rfc5849/endpoints/test_resource.py
- tests/oauth1/rfc5849/endpoints/test_signature_only.py
- tests/oauth1/rfc5849/test_client.py
- tests/oauth1/rfc5849/test_parameters.py
- tests/oauth1/rfc5849/test_request_validator.py
- tests/oauth1/rfc5849/test_signatures.py
- tests/oauth1/rfc5849/test_utils.py
- tests/oauth2/__init__.py
- tests/oauth2/rfc6749/__init__.py
- tests/oauth2/rfc6749/clients/__init__.py
- tests/oauth2/rfc6749/clients/test_backend_application.py
- tests/oauth2/rfc6749/clients/test_base.py
- tests/oauth2/rfc6749/clients/test_legacy_application.py
- tests/oauth2/rfc6749/clients/test_mobile_application.py
- tests/oauth2/rfc6749/clients/test_service_application.py
- tests/oauth2/rfc6749/clients/test_web_application.py
- tests/oauth2/rfc6749/endpoints/__init__.py
- tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
- tests/oauth2/rfc6749/endpoints/test_client_authentication.py
- tests/oauth2/rfc6749/endpoints/test_credentials_preservation.py
- tests/oauth2/rfc6749/endpoints/test_error_responses.py
- tests/oauth2/rfc6749/endpoints/test_extra_credentials.py
- tests/oauth2/rfc6749/endpoints/test_introspect_endpoint.py
- tests/oauth2/rfc6749/endpoints/test_metadata.py
- tests/oauth2/rfc6749/endpoints/test_resource_owner_association.py
- tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py
- tests/oauth2/rfc6749/endpoints/test_scope_handling.py
- tests/oauth2/rfc6749/endpoints/test_utils.py
- tests/oauth2/rfc6749/grant_types/__init__.py
- tests/oauth2/rfc6749/grant_types/test_authorization_code.py
- tests/oauth2/rfc6749/grant_types/test_client_credentials.py
- tests/oauth2/rfc6749/grant_types/test_implicit.py
- tests/oauth2/rfc6749/grant_types/test_refresh_token.py
- tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
- tests/oauth2/rfc6749/test_parameters.py
- tests/oauth2/rfc6749/test_request_validator.py
- tests/oauth2/rfc6749/test_server.py
- tests/oauth2/rfc6749/test_tokens.py
- tests/oauth2/rfc6749/test_utils.py
- tests/oauth2/rfc8628/__init__.py
- tests/oauth2/rfc8628/clients/__init__.py
- tests/oauth2/rfc8628/clients/test_device.py
- tests/oauth2/rfc8628/endpoints/__init__.py
- tests/oauth2/rfc8628/endpoints/test_device_application_server.py
- tests/oauth2/rfc8628/endpoints/test_error_responses.py
- tests/oauth2/rfc8628/grant_types/__init__.py
- tests/oauth2/rfc8628/grant_types/test_device_code.py
- tests/oauth2/rfc8628/test_server.py
- tests/openid/__init__.py
- tests/openid/connect/__init__.py
- tests/openid/connect/core/__init__.py
- tests/openid/connect/core/endpoints/__init__.py
- tests/openid/connect/core/endpoints/test_claims_handling.py
- tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
- tests/openid/connect/core/endpoints/test_refresh_token.py
- tests/openid/connect/core/endpoints/test_userinfo_endpoint.py
- tests/openid/connect/core/grant_types/__init__.py
- tests/openid/connect/core/grant_types/test_authorization_code.py
- tests/openid/connect/core/grant_types/test_base.py
- tests/openid/connect/core/grant_types/test_dispatchers.py
- tests/openid/connect/core/grant_types/test_hybrid.py
- tests/openid/connect/core/grant_types/test_implicit.py
- tests/openid/connect/core/grant_types/test_refresh_token.py
- tests/openid/connect/core/test_request_validator.py
- tests/openid/connect/core/test_server.py
- tests/openid/connect/core/test_tokens.py
- tests/test_common.py
- tests/test_uri_validate.py
- tests/unittest/__init__.py
Indexed releases
- 3.3.1
oauthlib-3.3.1.tar.gz153 members - 3.3.0
oauthlib-3.3.0.tar.gz156 members - 3.2.2
oauthlib-3.2.2.tar.gz139 members - 3.2.1
oauthlib-3.2.1.tar.gz139 members - 3.2.0
oauthlib-3.2.0.tar.gz139 members - 3.1.1
oauthlib-3.1.1.tar.gz131 members - 3.1.0
oauthlib-3.1.0.tar.gz131 members - 3.0.2
oauthlib-3.0.2.tar.gz128 members - 3.0.1
oauthlib-3.0.1.tar.gz128 members - 3.0.0
oauthlib-3.0.0.tar.gz128 members - 2.1.0
oauthlib-2.1.0.tar.gz99 members - 2.0.7
oauthlib-2.0.7.tar.gz99 members - 2.0.6
oauthlib-2.0.6.tar.gz99 members - 2.0.4
oauthlib-2.0.4.tar.gz99 members - 2.0.2
oauthlib-2.0.2.tar.gz99 members - 2.0.0
oauthlib-2.0.0.tar.gz98 members - 1.1.1
oauthlib-1.1.1.tar.gz95 members - 1.0.3
oauthlib-1.0.3.tar.gz95 members - 1.0.1
oauthlib-1.0.1.tar.gz95 members - 0.7.2
oauthlib-0.7.2.tar.gz95 members - 0.7.0
oauthlib-0.7.0.tar.gz95 members - 0.6.2
oauthlib-0.6.2.tar.gz90 members - 0.6.0
oauthlib-0.6.0.tar.gz83 members - 0.5.0
oauthlib-0.5.0.tar.gz69 members - 0.4.1
oauthlib-0.4.1.tar.gz39 members - 0.3.8
oauthlib-0.3.8.tar.gz38 members - 0.3.6
oauthlib-0.3.6.tar.gz37 members - 0.3.4
oauthlib-0.3.4.tar.gz35 members - 0.3.2
oauthlib-0.3.2.tar.gz30 members - 0.1.3
oauthlib-0.1.3.tar.gz23 members - 0.1.1
oauthlib-0.1.1.tar.gz23 members - 0.0.2
oauthlib-0.0.2.tar.gz21 members - 3.3.1
oauthlib-3.3.1-py3-none-any.whl75 members - 3.3.0
oauthlib-3.3.0-py3-none-any.whl78 members - 3.2.2
oauthlib-3.2.2-py3-none-any.whl68 members - 3.2.1
oauthlib-3.2.1-py3-none-any.whl68 members - 3.2.0
oauthlib-3.2.0-py3-none-any.whl68 members - 3.1.1
oauthlib-3.1.1-py2.py3-none-any.whl64 members - 3.1.0
oauthlib-3.1.0-py2.py3-none-any.whl65 members - 3.0.2
oauthlib-3.0.2-py2.py3-none-any.whl64 members - 3.0.1
oauthlib-3.0.1-py2.py3-none-any.whl64 members - 3.0.0
oauthlib-3.0.0-py2.py3-none-any.whl64 members - 2.1.0
oauthlib-2.1.0-py2.py3-none-any.whl48 members - 2.0.7
oauthlib-2.0.7-py2.py3-none-any.whl48 members - 2.0.5
oauthlib-2.0.5.tar.gz99 members - 2.0.3
oauthlib-2.0.3.tar.gz99 members - 2.0.1
oauthlib-2.0.1.tar.gz98 members - 1.1.2
oauthlib-1.1.2.tar.gz95 members - 1.1.0-1
oauthlib-1.1.0-1.tar.gz95 members - 1.0.2
oauthlib-1.0.2.tar.gz95 members - 1.0.0
oauthlib-1.0.0.tar.gz95 members - 0.7.1
oauthlib-0.7.1.tar.gz96 members - 0.6.3
oauthlib-0.6.3.tar.gz90 members - 0.6.1
oauthlib-0.6.1.tar.gz90 members - 0.5.1
oauthlib-0.5.1.tar.gz69 members - 0.4.2
oauthlib-0.4.2.tar.gz55 members - 0.4.0
oauthlib-0.4.0.tar.gz39 members - 0.3.7
oauthlib-0.3.7.tar.gz37 members - 0.3.5
oauthlib-0.3.5.tar.gz37 members - 0.3.3
oauthlib-0.3.3.tar.gz30 members - 0.3.0
oauthlib-0.3.0.tar.gz26 members - 0.1.2
oauthlib-0.1.2.tar.gz23 members - 0.1.0
oauthlib-0.1.0.tar.gz23 members - 0.0.1
oauthlib-0.0.1.tar.gz21 members