├── .circleci ├── authReactDjango.sh ├── authReactFastApi.sh ├── authReactFlask.sh ├── config.yml ├── config_continue.yml ├── doBackendSDKTests.sh ├── doUnitTests.sh ├── generateConfig.sh ├── installJava.sh ├── installNode.sh ├── markAsSuccess.sh ├── markDevTagAsTestNotPassed.sh ├── setupAndTestBackendSDKWithFreeCore.sh ├── setupAndTestWithAuthReact.sh ├── setupAndTestWithAuthReactWithDjango.sh ├── setupAndTestWithAuthReactWithFlask.sh ├── setupAndTestWithFreeCore.sh ├── setupAndTestWithFrontend.sh ├── setupAndTestWithFrontendWithDjango.sh ├── setupAndTestWithFrontendWithDjango2x.sh ├── setupAndTestWithFrontendWithDrfAsync.sh ├── setupAndTestWithFrontendWithDrfSync.sh ├── setupAndTestWithFrontendWithFlask.sh ├── updateDocsInWebsite.sh ├── websiteDjango.sh ├── websiteDjango2x.sh ├── websiteDrfAsync.sh ├── websiteDrfSync.sh ├── websiteFastApi.sh └── websiteFlask.sh ├── .cursorrules ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auth-react-test-1-django.yml │ ├── auth-react-test-1-fastapi.yml │ ├── auth-react-test-1-flask.yml │ ├── auth-react-test-2.yml │ ├── auth-react-test-3.yml │ ├── backend-sdk-testing.yml │ ├── lint-code.yml │ ├── lint-pr.yml │ ├── pipeline-dev-tag.yml │ ├── pipeline-release-tag.yml │ ├── unit-test.yml │ └── website-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .vscode └── launch.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── addDevTag ├── addReleaseTag ├── compose.yml ├── coreDriverInterfaceSupported.json ├── dev-requirements.txt ├── docs-templates ├── _lunr_search.inc.mako ├── config.mako ├── credits.mako ├── css.mako ├── head.mako ├── html.mako ├── logo.mako ├── pdf.mako ├── search.mako └── text.mako ├── examples ├── with-django │ └── with-thirdpartyemailpassword │ │ ├── .env │ │ ├── README.md │ │ ├── create_env.sh │ │ ├── manage.py │ │ ├── project │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── sampleapp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py ├── with-fastapi │ └── with-thirdpartyemailpassword │ │ ├── .env │ │ ├── README.md │ │ ├── create_env.sh │ │ ├── main.py │ │ └── requirements.txt └── with-flask │ └── with-thirdpartyemailpassword │ ├── .env │ ├── README.md │ ├── app.py │ ├── create_env.sh │ └── requirements.txt ├── frontendDriverInterfaceSupported.json ├── hooks ├── check-branch.sh ├── check-version.sh ├── populate-hook-constants.sh └── pre-commit.sh ├── html └── supertokens_python │ ├── async_to_sync_wrapper.html │ ├── asyncio │ └── index.html │ ├── auth_utils.html │ ├── constants.html │ ├── env │ ├── base.html │ ├── index.html │ └── utils.html │ ├── exceptions.html │ ├── framework │ ├── django │ │ ├── django_middleware.html │ │ ├── django_request.html │ │ ├── django_response.html │ │ ├── framework.html │ │ └── index.html │ ├── fastapi │ │ ├── fastapi_middleware.html │ │ ├── fastapi_request.html │ │ ├── fastapi_response.html │ │ ├── framework.html │ │ └── index.html │ ├── flask │ │ ├── flask_middleware.html │ │ ├── flask_request.html │ │ ├── flask_response.html │ │ ├── framework.html │ │ └── index.html │ ├── index.html │ ├── request.html │ ├── response.html │ └── types.html │ ├── index.html │ ├── ingredients │ ├── emaildelivery │ │ ├── index.html │ │ ├── services │ │ │ ├── index.html │ │ │ └── smtp.html │ │ └── types.html │ ├── index.html │ └── smsdelivery │ │ ├── index.html │ │ ├── services │ │ ├── index.html │ │ ├── supertokens.html │ │ └── twilio.html │ │ └── types.html │ ├── interfaces.html │ ├── logger.html │ ├── normalised_url_domain.html │ ├── normalised_url_path.html │ ├── post_init_callbacks.html │ ├── process_state.html │ ├── querier.html │ ├── recipe │ ├── accountlinking │ │ ├── asyncio │ │ │ └── index.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── dashboard │ │ ├── api │ │ │ ├── analytics.html │ │ │ ├── dashboard.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── multitenancy │ │ │ │ ├── create_or_update_third_party_config.html │ │ │ │ ├── create_tenant.html │ │ │ │ ├── delete_tenant.html │ │ │ │ ├── delete_third_party_config.html │ │ │ │ ├── get_tenant_info.html │ │ │ │ ├── get_third_party_config.html │ │ │ │ ├── index.html │ │ │ │ ├── list_all_tenants_with_login_methods.html │ │ │ │ ├── update_tenant_core_config.html │ │ │ │ ├── update_tenant_first_factor.html │ │ │ │ ├── update_tenant_secondary_factor.html │ │ │ │ └── utils.html │ │ │ ├── search │ │ │ │ ├── getTags.html │ │ │ │ └── index.html │ │ │ ├── signin.html │ │ │ ├── signout.html │ │ │ ├── user │ │ │ │ ├── create │ │ │ │ │ ├── emailpassword_user.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── passwordless_user.html │ │ │ │ └── index.html │ │ │ ├── userdetails │ │ │ │ ├── index.html │ │ │ │ ├── user_delete.html │ │ │ │ ├── user_email_verify_get.html │ │ │ │ ├── user_email_verify_put.html │ │ │ │ ├── user_email_verify_token_post.html │ │ │ │ ├── user_get.html │ │ │ │ ├── user_metadata_get.html │ │ │ │ ├── user_metadata_put.html │ │ │ │ ├── user_password_put.html │ │ │ │ ├── user_put.html │ │ │ │ ├── user_sessions_get.html │ │ │ │ ├── user_sessions_post.html │ │ │ │ └── user_unlink_get.html │ │ │ ├── userroles │ │ │ │ ├── add_role_to_user.html │ │ │ │ ├── get_role_to_user.html │ │ │ │ ├── index.html │ │ │ │ ├── permissions │ │ │ │ │ ├── get_permissions_for_role.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── remove_permissions_from_role.html │ │ │ │ ├── remove_user_role.html │ │ │ │ └── roles │ │ │ │ │ ├── create_role_or_add_permissions.html │ │ │ │ │ ├── delete_role.html │ │ │ │ │ ├── get_all_roles.html │ │ │ │ │ └── index.html │ │ │ ├── users_count_get.html │ │ │ ├── users_get.html │ │ │ └── validate_key.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ └── utils.html │ ├── emailpassword │ │ ├── api │ │ │ ├── email_exists.html │ │ │ ├── generate_password_reset_token.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── password_reset.html │ │ │ ├── signin.html │ │ │ ├── signup.html │ │ │ └── utils.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── emaildelivery │ │ │ ├── index.html │ │ │ └── services │ │ │ │ ├── backward_compatibility │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── smtp │ │ │ │ ├── index.html │ │ │ │ ├── password_reset.html │ │ │ │ ├── password_reset_email.html │ │ │ │ └── service_implementation │ │ │ │ └── index.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── emailverification │ │ ├── api │ │ │ ├── email_verify.html │ │ │ ├── generate_email_verify_token.html │ │ │ └── index.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── emaildelivery │ │ │ ├── index.html │ │ │ └── services │ │ │ │ ├── backward_compatibility │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── smtp │ │ │ │ ├── email_verify.html │ │ │ │ ├── email_verify_email.html │ │ │ │ ├── index.html │ │ │ │ └── service_implementation.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── index.html │ ├── jwt │ │ ├── api │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ └── jwks_get.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── multifactorauth │ │ ├── api │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ └── resync_session_and_fetch_mfa_info.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── multi_factor_auth_claim.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── multitenancy │ │ ├── api │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ └── login_methods.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── oauth2provider │ │ ├── api │ │ │ ├── auth.html │ │ │ ├── end_session.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── introspect_token.html │ │ │ ├── login.html │ │ │ ├── login_info.html │ │ │ ├── logout.html │ │ │ ├── revoke_token.html │ │ │ ├── token.html │ │ │ ├── user_info.html │ │ │ └── utils.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── oauth2_client.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── openid │ │ ├── api │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ └── open_id_discovery_configuration_get.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── passwordless │ │ ├── api │ │ │ ├── consume_code.html │ │ │ ├── create_code.html │ │ │ ├── email_exists.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── phone_number_exists.html │ │ │ └── resend_code.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── emaildelivery │ │ │ ├── index.html │ │ │ └── services │ │ │ │ ├── backward_compatibility │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── smtp │ │ │ │ ├── index.html │ │ │ │ ├── pless_login.html │ │ │ │ ├── pless_login_email.html │ │ │ │ └── service_implementation.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── smsdelivery │ │ │ ├── index.html │ │ │ └── services │ │ │ │ ├── backward_compatibility │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── supertokens │ │ │ │ └── index.html │ │ │ │ └── twilio │ │ │ │ ├── index.html │ │ │ │ ├── passwordless_login.html │ │ │ │ └── service_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── session │ │ ├── access_token.html │ │ ├── api │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── refresh.html │ │ │ └── signout.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── claim_base_classes │ │ │ ├── boolean_claim.html │ │ │ ├── index.html │ │ │ ├── primitive_array_claim.html │ │ │ └── primitive_claim.html │ │ ├── claims.html │ │ ├── constants.html │ │ ├── cookie_and_header.html │ │ ├── exceptions.html │ │ ├── framework │ │ │ ├── django │ │ │ │ ├── asyncio │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── syncio │ │ │ │ │ └── index.html │ │ │ ├── fastapi │ │ │ │ └── index.html │ │ │ ├── flask │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── jwks.html │ │ ├── jwt.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── session_class.html │ │ ├── session_functions.html │ │ ├── session_request_functions.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── thirdparty │ │ ├── api │ │ │ ├── apple_redirect.html │ │ │ ├── authorisation_url.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ └── signinup.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── provider.html │ │ ├── providers │ │ │ ├── active_directory.html │ │ │ ├── apple.html │ │ │ ├── bitbucket.html │ │ │ ├── boxy_saml.html │ │ │ ├── config_utils.html │ │ │ ├── custom.html │ │ │ ├── discord.html │ │ │ ├── facebook.html │ │ │ ├── github.html │ │ │ ├── gitlab.html │ │ │ ├── google.html │ │ │ ├── google_workspaces.html │ │ │ ├── index.html │ │ │ ├── linkedin.html │ │ │ ├── okta.html │ │ │ ├── twitter.html │ │ │ └── utils.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── totp │ │ ├── api │ │ │ ├── create_device.html │ │ │ ├── implementation.html │ │ │ ├── index.html │ │ │ ├── list_devices.html │ │ │ ├── remove_device.html │ │ │ ├── verify_device.html │ │ │ └── verify_totp.html │ │ ├── asyncio │ │ │ └── index.html │ │ ├── constants.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ ├── types.html │ │ └── utils.html │ ├── usermetadata │ │ ├── asyncio │ │ │ └── index.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ ├── userroles │ │ ├── asyncio │ │ │ └── index.html │ │ ├── exceptions.html │ │ ├── index.html │ │ ├── interfaces.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── syncio │ │ │ └── index.html │ │ └── utils.html │ └── webauthn │ │ ├── api │ │ ├── email_exists.html │ │ ├── generate_recover_account_token.html │ │ ├── implementation.html │ │ ├── index.html │ │ ├── recover_account.html │ │ ├── register_credentials.html │ │ ├── register_options.html │ │ ├── sign_in.html │ │ ├── sign_in_options.html │ │ └── sign_up.html │ │ ├── constants.html │ │ ├── emaildelivery │ │ ├── index.html │ │ └── services │ │ │ ├── backward_compatibility │ │ │ ├── base.html │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── smtp │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ ├── recover_account.html │ │ │ └── service_implementation │ │ │ ├── base.html │ │ │ └── index.html │ │ ├── exceptions.html │ │ ├── functions.html │ │ ├── index.html │ │ ├── interfaces │ │ ├── api.html │ │ ├── index.html │ │ └── recipe.html │ │ ├── recipe.html │ │ ├── recipe_implementation.html │ │ ├── types │ │ ├── base.html │ │ ├── config.html │ │ └── index.html │ │ └── utils.html │ ├── recipe_module.html │ ├── supertokens.html │ ├── syncio │ └── index.html │ ├── types │ ├── auth_utils.html │ ├── base.html │ ├── index.html │ └── response.html │ └── utils.html ├── pyproject.toml ├── setup.cfg ├── setup.py ├── supertokens_python ├── __init__.py ├── async_to_sync_wrapper.py ├── asyncio │ └── __init__.py ├── auth_utils.py ├── constants.py ├── env │ ├── __init__.py │ ├── base.py │ └── utils.py ├── exceptions.py ├── framework │ ├── __init__.py │ ├── django │ │ ├── __init__.py │ │ ├── django_middleware.py │ │ ├── django_request.py │ │ ├── django_response.py │ │ └── framework.py │ ├── fastapi │ │ ├── __init__.py │ │ ├── fastapi_middleware.py │ │ ├── fastapi_request.py │ │ ├── fastapi_response.py │ │ └── framework.py │ ├── flask │ │ ├── __init__.py │ │ ├── flask_middleware.py │ │ ├── flask_request.py │ │ ├── flask_response.py │ │ └── framework.py │ ├── request.py │ ├── response.py │ └── types.py ├── ingredients │ ├── __init__.py │ ├── emaildelivery │ │ ├── __init__.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── smtp.py │ │ └── types.py │ └── smsdelivery │ │ ├── __init__.py │ │ ├── services │ │ ├── __init__.py │ │ ├── supertokens.py │ │ └── twilio.py │ │ └── types.py ├── interfaces.py ├── logger.py ├── normalised_url_domain.py ├── normalised_url_path.py ├── post_init_callbacks.py ├── process_state.py ├── py.typed ├── querier.py ├── recipe │ ├── __init__.py │ ├── accountlinking │ │ ├── __init__.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── analytics.py │ │ │ ├── api_key_protector.py │ │ │ ├── dashboard.py │ │ │ ├── implementation.py │ │ │ ├── multitenancy │ │ │ │ ├── __init__.py │ │ │ │ ├── create_or_update_third_party_config.py │ │ │ │ ├── create_tenant.py │ │ │ │ ├── delete_tenant.py │ │ │ │ ├── delete_third_party_config.py │ │ │ │ ├── get_tenant_info.py │ │ │ │ ├── get_third_party_config.py │ │ │ │ ├── list_all_tenants_with_login_methods.py │ │ │ │ ├── update_tenant_core_config.py │ │ │ │ ├── update_tenant_first_factor.py │ │ │ │ ├── update_tenant_secondary_factor.py │ │ │ │ └── utils.py │ │ │ ├── search │ │ │ │ ├── __init__.py │ │ │ │ └── getTags.py │ │ │ ├── signin.py │ │ │ ├── signout.py │ │ │ ├── user │ │ │ │ ├── __init__.py │ │ │ │ └── create │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── emailpassword_user.py │ │ │ │ │ └── passwordless_user.py │ │ │ ├── userdetails │ │ │ │ ├── __init__.py │ │ │ │ ├── user_delete.py │ │ │ │ ├── user_email_verify_get.py │ │ │ │ ├── user_email_verify_put.py │ │ │ │ ├── user_email_verify_token_post.py │ │ │ │ ├── user_get.py │ │ │ │ ├── user_metadata_get.py │ │ │ │ ├── user_metadata_put.py │ │ │ │ ├── user_password_put.py │ │ │ │ ├── user_put.py │ │ │ │ ├── user_sessions_get.py │ │ │ │ ├── user_sessions_post.py │ │ │ │ └── user_unlink_get.py │ │ │ ├── userroles │ │ │ │ ├── __init__.py │ │ │ │ ├── add_role_to_user.py │ │ │ │ ├── get_role_to_user.py │ │ │ │ ├── permissions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get_permissions_for_role.py │ │ │ │ │ └── remove_permissions_from_role.py │ │ │ │ ├── remove_user_role.py │ │ │ │ └── roles │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── create_role_or_add_permissions.py │ │ │ │ │ ├── delete_role.py │ │ │ │ │ └── get_all_roles.py │ │ │ ├── users_count_get.py │ │ │ ├── users_get.py │ │ │ └── validate_key.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ └── utils.py │ ├── emailpassword │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── email_exists.py │ │ │ ├── generate_password_reset_token.py │ │ │ ├── implementation.py │ │ │ ├── password_reset.py │ │ │ ├── signin.py │ │ │ ├── signup.py │ │ │ └── utils.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── emaildelivery │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── backward_compatibility │ │ │ │ └── __init__.py │ │ │ │ └── smtp │ │ │ │ ├── __init__.py │ │ │ │ ├── password_reset.py │ │ │ │ ├── password_reset_email.py │ │ │ │ └── service_implementation │ │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── emailverification │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── email_verify.py │ │ │ └── generate_email_verify_token.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── emaildelivery │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── backward_compatibility │ │ │ │ └── __init__.py │ │ │ │ └── smtp │ │ │ │ ├── __init__.py │ │ │ │ ├── email_verify.py │ │ │ │ ├── email_verify_email.py │ │ │ │ └── service_implementation.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── jwt │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── implementation.py │ │ │ └── jwks_get.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── multifactorauth │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── implementation.py │ │ │ └── resync_session_and_fetch_mfa_info.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── interfaces.py │ │ ├── multi_factor_auth_claim.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── multitenancy │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── implementation.py │ │ │ └── login_methods.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── oauth2provider │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── end_session.py │ │ │ ├── implementation.py │ │ │ ├── introspect_token.py │ │ │ ├── login.py │ │ │ ├── login_info.py │ │ │ ├── logout.py │ │ │ ├── revoke_token.py │ │ │ ├── token.py │ │ │ ├── user_info.py │ │ │ └── utils.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── oauth2_client.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── openid │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── implementation.py │ │ │ └── open_id_discovery_configuration_get.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── passwordless │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── consume_code.py │ │ │ ├── create_code.py │ │ │ ├── email_exists.py │ │ │ ├── implementation.py │ │ │ ├── phone_number_exists.py │ │ │ └── resend_code.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── emaildelivery │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── backward_compatibility │ │ │ │ └── __init__.py │ │ │ │ └── smtp │ │ │ │ ├── __init__.py │ │ │ │ ├── pless_login.py │ │ │ │ ├── pless_login_email.py │ │ │ │ └── service_implementation.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── smsdelivery │ │ │ ├── __init__.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── backward_compatibility │ │ │ │ └── __init__.py │ │ │ │ ├── supertokens │ │ │ │ └── __init__.py │ │ │ │ └── twilio │ │ │ │ ├── __init__.py │ │ │ │ ├── passwordless_login.py │ │ │ │ └── service_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── session │ │ ├── __init__.py │ │ ├── access_token.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── implementation.py │ │ │ ├── refresh.py │ │ │ └── signout.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── claim_base_classes │ │ │ ├── __init__.py │ │ │ ├── boolean_claim.py │ │ │ ├── primitive_array_claim.py │ │ │ └── primitive_claim.py │ │ ├── claims.py │ │ ├── constants.py │ │ ├── cookie_and_header.py │ │ ├── exceptions.py │ │ ├── framework │ │ │ ├── __init__.py │ │ │ ├── django │ │ │ │ ├── __init__.py │ │ │ │ ├── asyncio │ │ │ │ │ └── __init__.py │ │ │ │ └── syncio │ │ │ │ │ └── __init__.py │ │ │ ├── fastapi │ │ │ │ └── __init__.py │ │ │ └── flask │ │ │ │ └── __init__.py │ │ ├── interfaces.py │ │ ├── jwks.py │ │ ├── jwt.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── session_class.py │ │ ├── session_functions.py │ │ ├── session_request_functions.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── thirdparty │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── apple_redirect.py │ │ │ ├── authorisation_url.py │ │ │ ├── implementation.py │ │ │ └── signinup.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── provider.py │ │ ├── providers │ │ │ ├── __init__.py │ │ │ ├── active_directory.py │ │ │ ├── apple.py │ │ │ ├── bitbucket.py │ │ │ ├── boxy_saml.py │ │ │ ├── config_utils.py │ │ │ ├── custom.py │ │ │ ├── discord.py │ │ │ ├── facebook.py │ │ │ ├── github.py │ │ │ ├── gitlab.py │ │ │ ├── google.py │ │ │ ├── google_workspaces.py │ │ │ ├── linkedin.py │ │ │ ├── okta.py │ │ │ ├── twitter.py │ │ │ └── utils.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── totp │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── create_device.py │ │ │ ├── implementation.py │ │ │ ├── list_devices.py │ │ │ ├── remove_device.py │ │ │ ├── verify_device.py │ │ │ └── verify_totp.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── constants.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ ├── types.py │ │ └── utils.py │ ├── usermetadata │ │ ├── __init__.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ ├── userroles │ │ ├── __init__.py │ │ ├── asyncio │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── interfaces.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── syncio │ │ │ └── __init__.py │ │ └── utils.py │ └── webauthn │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ ├── email_exists.py │ │ ├── generate_recover_account_token.py │ │ ├── implementation.py │ │ ├── recover_account.py │ │ ├── register_credentials.py │ │ ├── register_options.py │ │ ├── sign_in.py │ │ ├── sign_in_options.py │ │ └── sign_up.py │ │ ├── constants.py │ │ ├── emaildelivery │ │ ├── __init__.py │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── backward_compatibility │ │ │ ├── __init__.py │ │ │ └── base.py │ │ │ └── smtp │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── recover_account.py │ │ │ └── service_implementation │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── exceptions.py │ │ ├── functions.py │ │ ├── interfaces │ │ ├── __init__.py │ │ ├── api.py │ │ └── recipe.py │ │ ├── recipe.py │ │ ├── recipe_implementation.py │ │ ├── types │ │ ├── __init__.py │ │ ├── base.py │ │ └── config.py │ │ └── utils.py ├── recipe_module.py ├── supertokens.py ├── syncio │ └── __init__.py ├── types │ ├── __init__.py │ ├── auth_utils.py │ ├── base.py │ └── response.py └── utils.py └── tests ├── Django ├── __init__.py ├── settings.py ├── sqlite.db └── test_django.py ├── Docker └── Dockerfile ├── Fastapi ├── __init__.py └── test_fastapi.py ├── Flask ├── __init__.py ├── test_flask.py └── utils.py ├── __init__.py ├── auth-react ├── auth-react.env ├── django3x │ ├── __init__.py │ ├── db.sqlite3 │ ├── main.py │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── middleware.py │ │ ├── server.py │ │ ├── settings.py │ │ ├── store.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── wsgi.py │ └── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── fastapi-server │ ├── __init__.py │ └── app.py └── flask-server │ ├── __init__.py │ └── app.py ├── conftest.py ├── dashboard ├── __init__.py └── test_dashboard.py ├── emailpassword ├── __init__.py ├── test_emaildelivery.py ├── test_emailexists.py ├── test_emailverify.py ├── test_multitenancy.py ├── test_passwordreset.py ├── test_signin.py ├── test_signup.py └── test_updateemailorpassword.py ├── emailverification └── test_emailverification_claim.py ├── frontendIntegration ├── __init__.py ├── django2x │ ├── README.md │ ├── create_env.sh │ ├── db.sqlite3 │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── polls │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ └── templates │ │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ │ └── index.html ├── django3x │ ├── README.md │ ├── create_env.sh │ ├── db.sqlite3 │ ├── main.py │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── server.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ └── templates │ │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ │ └── index.html ├── drf_async │ ├── README.md │ ├── create_env.sh │ ├── db.sqlite3 │ ├── main.py │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── server.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ └── templates │ │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ │ └── index.html ├── drf_sync │ ├── README.md │ ├── create_env.sh │ ├── db.sqlite3 │ ├── main.py │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── server.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ └── templates │ │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ │ └── index.html ├── fastapi-server │ ├── __init__.py │ ├── app.py │ └── templates │ │ ├── angular │ │ ├── main.js │ │ ├── polyfills.js │ │ ├── runtime.js │ │ └── vendor.js │ │ └── index.html └── flask-server │ ├── __init__.py │ ├── app.py │ └── templates │ ├── angular │ ├── main.js │ ├── polyfills.js │ ├── runtime.js │ └── vendor.js │ └── index.html ├── input_validation ├── __init__.py └── test_input_validation.py ├── jwt ├── __init__.py ├── test_config.py ├── test_create_jwt_feature.py ├── test_get_JWKS.py └── test_override.py ├── multitenancy ├── __init__.py ├── test_router.py └── test_tenants_crud.py ├── passwordless ├── __init__.py ├── test_emaildelivery.py ├── test_mutlitenancy.py └── test_smsdelivery.py ├── playground ├── __init__.py └── app.py ├── schema.py ├── sessions ├── __init__.py ├── claims │ ├── __init__.py │ ├── conftest.py │ ├── test_assert_claims.py │ ├── test_create_new_session.py │ ├── test_fetch_and_set_claim.py │ ├── test_get_claim_value.py │ ├── test_primitive_array_claim.py │ ├── test_primitive_claim.py │ ├── test_remove_claim.py │ ├── test_set_claim_value.py │ ├── test_validate_claims_for_session_handle.py │ ├── test_verify_session.py │ └── utils.py ├── test_access_token_version.py ├── test_auth_mode.py ├── test_jwks.py ├── test_session_error_handlers.py ├── test_session_utils.py └── test_use_dynamic_signing_key_switching.py ├── supertokens_python ├── __init__.py └── test_supertokens_functions.py ├── telemetry ├── __init__.py └── test_telemetry.py ├── test-server ├── __init__.py ├── accountlinking.py ├── app.py ├── emailpassword.py ├── emailverification.py ├── multifactorauth.py ├── multitenancy.py ├── oauth2provider.py ├── override_logging.py ├── passwordless.py ├── session.py ├── supertokens.py ├── test_functions_mapper.py ├── thirdparty.py ├── totp.py ├── usermetadata.py ├── utils.py └── webauthn.py ├── test_config.py ├── test_config_without_core.py ├── test_logger.py ├── test_middleware.py ├── test_misc.py ├── test_network_interceptor.py ├── test_pagination.py ├── test_passwordless.py ├── test_querier.py ├── test_session.py ├── test_user_context.py ├── test_utils.py ├── testclient.py ├── thirdparty ├── __init__.py ├── test_authorisation_url_feature.py ├── test_emaildelivery.py ├── test_multitenancy.py └── test_thirdparty.py ├── useridmapping ├── __init__.py ├── create_user_id_mapping.py ├── delete_user_id_mapping.py ├── get_user_id_mapping.py ├── recipe_tests.py └── utils.py ├── usermetadata └── test_metadata.py ├── userroles ├── __init__.py ├── test_add_role_to_user.py ├── test_claims.py ├── test_config.py ├── test_create_new_role_or_add_permissions.py ├── test_delete_role.py ├── test_get_permissions_for_role.py ├── test_get_roles_for_user.py ├── test_get_roles_that_have_permissions.py ├── test_get_users_that_have_role.py ├── test_multitenancy.py ├── test_remove_permissions_from_role.py └── test_remove_user_role.py ├── users.json ├── utils.py └── webauthn └── test_config.py /.circleci/authReactDjango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/authReactDjango.sh -------------------------------------------------------------------------------- /.circleci/authReactFastApi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/authReactFastApi.sh -------------------------------------------------------------------------------- /.circleci/authReactFlask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/authReactFlask.sh -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config_continue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/config_continue.yml -------------------------------------------------------------------------------- /.circleci/doBackendSDKTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/doBackendSDKTests.sh -------------------------------------------------------------------------------- /.circleci/doUnitTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/doUnitTests.sh -------------------------------------------------------------------------------- /.circleci/generateConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/generateConfig.sh -------------------------------------------------------------------------------- /.circleci/installJava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/installJava.sh -------------------------------------------------------------------------------- /.circleci/installNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/installNode.sh -------------------------------------------------------------------------------- /.circleci/markAsSuccess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/markAsSuccess.sh -------------------------------------------------------------------------------- /.circleci/markDevTagAsTestNotPassed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/markDevTagAsTestNotPassed.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestBackendSDKWithFreeCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestBackendSDKWithFreeCore.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithAuthReact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithAuthReact.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithAuthReactWithDjango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithAuthReactWithDjango.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithAuthReactWithFlask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithAuthReactWithFlask.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFreeCore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFreeCore.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontend.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontendWithDjango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontendWithDjango.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontendWithDjango2x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontendWithDjango2x.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontendWithDrfAsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontendWithDrfAsync.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontendWithDrfSync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontendWithDrfSync.sh -------------------------------------------------------------------------------- /.circleci/setupAndTestWithFrontendWithFlask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/setupAndTestWithFrontendWithFlask.sh -------------------------------------------------------------------------------- /.circleci/updateDocsInWebsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/updateDocsInWebsite.sh -------------------------------------------------------------------------------- /.circleci/websiteDjango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteDjango.sh -------------------------------------------------------------------------------- /.circleci/websiteDjango2x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteDjango2x.sh -------------------------------------------------------------------------------- /.circleci/websiteDrfAsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteDrfAsync.sh -------------------------------------------------------------------------------- /.circleci/websiteDrfSync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteDrfSync.sh -------------------------------------------------------------------------------- /.circleci/websiteFastApi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteFastApi.sh -------------------------------------------------------------------------------- /.circleci/websiteFlask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.circleci/websiteFlask.sh -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.cursorrules -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-1-django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/auth-react-test-1-django.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-1-fastapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/auth-react-test-1-fastapi.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-1-flask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/auth-react-test-1-flask.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/auth-react-test-2.yml -------------------------------------------------------------------------------- /.github/workflows/auth-react-test-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/auth-react-test-3.yml -------------------------------------------------------------------------------- /.github/workflows/backend-sdk-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/backend-sdk-testing.yml -------------------------------------------------------------------------------- /.github/workflows/lint-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/lint-code.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/lint-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/pipeline-dev-tag.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/pipeline-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.github/workflows/website-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.github/workflows/website-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/README.md -------------------------------------------------------------------------------- /addDevTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/addDevTag -------------------------------------------------------------------------------- /addReleaseTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/addReleaseTag -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/compose.yml -------------------------------------------------------------------------------- /coreDriverInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/coreDriverInterfaceSupported.json -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs-templates/_lunr_search.inc.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/_lunr_search.inc.mako -------------------------------------------------------------------------------- /docs-templates/config.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/config.mako -------------------------------------------------------------------------------- /docs-templates/credits.mako: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-templates/css.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/css.mako -------------------------------------------------------------------------------- /docs-templates/head.mako: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-templates/html.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/html.mako -------------------------------------------------------------------------------- /docs-templates/logo.mako: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs-templates/pdf.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/pdf.mako -------------------------------------------------------------------------------- /docs-templates/search.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/search.mako -------------------------------------------------------------------------------- /docs-templates/text.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/docs-templates/text.mako -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-django/with-thirdpartyemailpassword/.env -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-django/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-django/with-thirdpartyemailpassword/manage.py -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/sampleapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/sampleapp/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/sampleapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/with-django/with-thirdpartyemailpassword/sampleapp/models.py: -------------------------------------------------------------------------------- 1 | # Create your models here. 2 | -------------------------------------------------------------------------------- /examples/with-fastapi/with-thirdpartyemailpassword/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-fastapi/with-thirdpartyemailpassword/.env -------------------------------------------------------------------------------- /examples/with-fastapi/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-fastapi/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/with-fastapi/with-thirdpartyemailpassword/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-fastapi/with-thirdpartyemailpassword/main.py -------------------------------------------------------------------------------- /examples/with-flask/with-thirdpartyemailpassword/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-flask/with-thirdpartyemailpassword/.env -------------------------------------------------------------------------------- /examples/with-flask/with-thirdpartyemailpassword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-flask/with-thirdpartyemailpassword/README.md -------------------------------------------------------------------------------- /examples/with-flask/with-thirdpartyemailpassword/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/examples/with-flask/with-thirdpartyemailpassword/app.py -------------------------------------------------------------------------------- /frontendDriverInterfaceSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/frontendDriverInterfaceSupported.json -------------------------------------------------------------------------------- /hooks/check-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/hooks/check-branch.sh -------------------------------------------------------------------------------- /hooks/check-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/hooks/check-version.sh -------------------------------------------------------------------------------- /hooks/populate-hook-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/hooks/populate-hook-constants.sh -------------------------------------------------------------------------------- /hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/hooks/pre-commit.sh -------------------------------------------------------------------------------- /html/supertokens_python/async_to_sync_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/async_to_sync_wrapper.html -------------------------------------------------------------------------------- /html/supertokens_python/asyncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/asyncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/auth_utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/auth_utils.html -------------------------------------------------------------------------------- /html/supertokens_python/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/env/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/env/base.html -------------------------------------------------------------------------------- /html/supertokens_python/env/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/env/index.html -------------------------------------------------------------------------------- /html/supertokens_python/env/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/env/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/django/django_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/django/django_request.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/django/django_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/django/django_response.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/django/framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/django/framework.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/django/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/django/index.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/fastapi/framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/fastapi/framework.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/fastapi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/fastapi/index.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/flask/flask_middleware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/flask/flask_middleware.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/flask/flask_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/flask/flask_request.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/flask/flask_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/flask/flask_response.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/flask/framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/flask/framework.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/flask/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/flask/index.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/index.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/request.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/response.html -------------------------------------------------------------------------------- /html/supertokens_python/framework/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/framework/types.html -------------------------------------------------------------------------------- /html/supertokens_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/index.html -------------------------------------------------------------------------------- /html/supertokens_python/ingredients/emaildelivery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/ingredients/emaildelivery/index.html -------------------------------------------------------------------------------- /html/supertokens_python/ingredients/emaildelivery/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/ingredients/emaildelivery/types.html -------------------------------------------------------------------------------- /html/supertokens_python/ingredients/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/ingredients/index.html -------------------------------------------------------------------------------- /html/supertokens_python/ingredients/smsdelivery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/ingredients/smsdelivery/index.html -------------------------------------------------------------------------------- /html/supertokens_python/ingredients/smsdelivery/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/ingredients/smsdelivery/types.html -------------------------------------------------------------------------------- /html/supertokens_python/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/logger.html -------------------------------------------------------------------------------- /html/supertokens_python/normalised_url_domain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/normalised_url_domain.html -------------------------------------------------------------------------------- /html/supertokens_python/normalised_url_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/normalised_url_path.html -------------------------------------------------------------------------------- /html/supertokens_python/post_init_callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/post_init_callbacks.html -------------------------------------------------------------------------------- /html/supertokens_python/process_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/process_state.html -------------------------------------------------------------------------------- /html/supertokens_python/querier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/querier.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/accountlinking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/accountlinking/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/accountlinking/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/accountlinking/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/accountlinking/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/accountlinking/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/accountlinking/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/accountlinking/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/accountlinking/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/accountlinking/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/analytics.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/dashboard.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/signin.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/signout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/signout.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/user/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/api/users_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/api/users_get.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/dashboard/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/dashboard/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/api/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/api/signin.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/api/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/api/signup.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/api/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/api/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailpassword/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailpassword/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailverification/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailverification/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailverification/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailverification/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailverification/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailverification/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/emailverification/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/emailverification/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/api/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/api/implementation.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/api/jwks_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/api/jwks_get.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/asyncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/asyncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/recipe_implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/recipe_implementation.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/jwt/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/jwt/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multifactorauth/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multifactorauth/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/multitenancy/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/multitenancy/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/auth.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/login.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/logout.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/token.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/api/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/api/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/oauth2provider/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/oauth2provider/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/asyncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/asyncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/openid/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/openid/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/passwordless/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/passwordless/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/access_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/access_token.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/api/refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/api/refresh.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/api/signout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/api/signout.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/asyncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/asyncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/claims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/claims.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/jwks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/jwks.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/jwt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/jwt.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/session_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/session_class.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/session/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/session/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/provider.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/thirdparty/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/thirdparty/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/create_device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/create_device.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/list_devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/list_devices.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/remove_device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/remove_device.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/verify_device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/verify_device.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/api/verify_totp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/api/verify_totp.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/asyncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/asyncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/types.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/totp/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/totp/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/usermetadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/usermetadata/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/usermetadata/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/usermetadata/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/usermetadata/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/usermetadata/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/interfaces.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/userroles/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/userroles/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/api/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/api/sign_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/api/sign_in.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/api/sign_up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/api/sign_up.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/constants.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/exceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/exceptions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/functions.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/recipe.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/types/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/types/base.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/types/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/types/config.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/types/index.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe/webauthn/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe/webauthn/utils.html -------------------------------------------------------------------------------- /html/supertokens_python/recipe_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/recipe_module.html -------------------------------------------------------------------------------- /html/supertokens_python/supertokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/supertokens.html -------------------------------------------------------------------------------- /html/supertokens_python/syncio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/syncio/index.html -------------------------------------------------------------------------------- /html/supertokens_python/types/auth_utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/types/auth_utils.html -------------------------------------------------------------------------------- /html/supertokens_python/types/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/types/base.html -------------------------------------------------------------------------------- /html/supertokens_python/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/types/index.html -------------------------------------------------------------------------------- /html/supertokens_python/types/response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/types/response.html -------------------------------------------------------------------------------- /html/supertokens_python/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/html/supertokens_python/utils.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_file = LICENSE.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/setup.py -------------------------------------------------------------------------------- /supertokens_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/__init__.py -------------------------------------------------------------------------------- /supertokens_python/async_to_sync_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/async_to_sync_wrapper.py -------------------------------------------------------------------------------- /supertokens_python/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/auth_utils.py -------------------------------------------------------------------------------- /supertokens_python/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/constants.py -------------------------------------------------------------------------------- /supertokens_python/env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/env/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/env/base.py -------------------------------------------------------------------------------- /supertokens_python/env/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/env/utils.py -------------------------------------------------------------------------------- /supertokens_python/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/__init__.py -------------------------------------------------------------------------------- /supertokens_python/framework/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/django/__init__.py -------------------------------------------------------------------------------- /supertokens_python/framework/django/django_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/django/django_middleware.py -------------------------------------------------------------------------------- /supertokens_python/framework/django/django_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/django/django_request.py -------------------------------------------------------------------------------- /supertokens_python/framework/django/django_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/django/django_response.py -------------------------------------------------------------------------------- /supertokens_python/framework/django/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/django/framework.py -------------------------------------------------------------------------------- /supertokens_python/framework/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/fastapi/__init__.py -------------------------------------------------------------------------------- /supertokens_python/framework/fastapi/fastapi_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/fastapi/fastapi_middleware.py -------------------------------------------------------------------------------- /supertokens_python/framework/fastapi/fastapi_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/fastapi/fastapi_request.py -------------------------------------------------------------------------------- /supertokens_python/framework/fastapi/fastapi_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/fastapi/fastapi_response.py -------------------------------------------------------------------------------- /supertokens_python/framework/fastapi/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/fastapi/framework.py -------------------------------------------------------------------------------- /supertokens_python/framework/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/flask/__init__.py -------------------------------------------------------------------------------- /supertokens_python/framework/flask/flask_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/flask/flask_middleware.py -------------------------------------------------------------------------------- /supertokens_python/framework/flask/flask_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/flask/flask_request.py -------------------------------------------------------------------------------- /supertokens_python/framework/flask/flask_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/flask/flask_response.py -------------------------------------------------------------------------------- /supertokens_python/framework/flask/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/flask/framework.py -------------------------------------------------------------------------------- /supertokens_python/framework/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/request.py -------------------------------------------------------------------------------- /supertokens_python/framework/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/response.py -------------------------------------------------------------------------------- /supertokens_python/framework/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/framework/types.py -------------------------------------------------------------------------------- /supertokens_python/ingredients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/ingredients/__init__.py -------------------------------------------------------------------------------- /supertokens_python/ingredients/emaildelivery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/ingredients/emaildelivery/__init__.py -------------------------------------------------------------------------------- /supertokens_python/ingredients/emaildelivery/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/ingredients/emaildelivery/types.py -------------------------------------------------------------------------------- /supertokens_python/ingredients/smsdelivery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/ingredients/smsdelivery/__init__.py -------------------------------------------------------------------------------- /supertokens_python/ingredients/smsdelivery/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/ingredients/smsdelivery/types.py -------------------------------------------------------------------------------- /supertokens_python/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/logger.py -------------------------------------------------------------------------------- /supertokens_python/normalised_url_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/normalised_url_domain.py -------------------------------------------------------------------------------- /supertokens_python/normalised_url_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/normalised_url_path.py -------------------------------------------------------------------------------- /supertokens_python/post_init_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/post_init_callbacks.py -------------------------------------------------------------------------------- /supertokens_python/process_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/process_state.py -------------------------------------------------------------------------------- /supertokens_python/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/querier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/querier.py -------------------------------------------------------------------------------- /supertokens_python/recipe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/accountlinking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/accountlinking/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/accountlinking/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/accountlinking/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/accountlinking/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/accountlinking/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/accountlinking/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/accountlinking/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/accountlinking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/accountlinking/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/analytics.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/dashboard.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/multitenancy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/search/getTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/search/getTags.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/signin.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/signout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/signout.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/user/create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/userdetails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/userroles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/userroles/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/userroles/roles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/users_count_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/users_count_get.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/users_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/users_get.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/api/validate_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/api/validate_key.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/dashboard/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/dashboard/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/api/signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/api/signin.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/api/signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/api/signup.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/api/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailpassword/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailpassword/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/emailverification/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/emailverification/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/api/jwks_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/api/jwks_get.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/recipe_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/recipe_implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/jwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/jwt/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multifactorauth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multifactorauth/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/multitenancy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/multitenancy/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/auth.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/login.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/login_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/login_info.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/logout.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/token.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/user_info.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/api/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/oauth2_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/oauth2_client.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/oauth2provider/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/oauth2provider/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/recipe_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/recipe_implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/openid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/openid/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/api/consume_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/api/consume_code.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/api/create_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/api/create_code.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/api/email_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/api/email_exists.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/api/resend_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/api/resend_code.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/passwordless/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/passwordless/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/access_token.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/api/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/api/refresh.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/api/signout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/api/signout.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/claims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/claims.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/cookie_and_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/cookie_and_header.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/framework/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/jwks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/jwks.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/jwt.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/recipe_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/recipe_implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/session_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/session_class.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/session_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/session_functions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/session/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/session/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/api/apple_redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/api/apple_redirect.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/api/signinup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/api/signinup.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/provider.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/apple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/apple.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/custom.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/discord.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/facebook.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/github.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/gitlab.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/google.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/linkedin.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/okta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/okta.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/twitter.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/providers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/providers/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/thirdparty/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/thirdparty/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/create_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/create_device.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/list_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/list_devices.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/remove_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/remove_device.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/verify_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/verify_device.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/api/verify_totp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/api/verify_totp.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/recipe_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/recipe_implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/types.py -------------------------------------------------------------------------------- /supertokens_python/recipe/totp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/totp/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/usermetadata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/usermetadata/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/asyncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/interfaces.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/userroles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/userroles/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/email_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/email_exists.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/implementation.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/recover_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/recover_account.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/register_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/register_options.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/sign_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/sign_in.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/sign_in_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/sign_in_options.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/api/sign_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/api/sign_up.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/constants.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/exceptions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/functions.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/interfaces/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/interfaces/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/interfaces/api.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/interfaces/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/interfaces/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/recipe.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/types/__init__.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/types/base.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/types/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/types/config.py -------------------------------------------------------------------------------- /supertokens_python/recipe/webauthn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe/webauthn/utils.py -------------------------------------------------------------------------------- /supertokens_python/recipe_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/recipe_module.py -------------------------------------------------------------------------------- /supertokens_python/supertokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/supertokens.py -------------------------------------------------------------------------------- /supertokens_python/syncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/syncio/__init__.py -------------------------------------------------------------------------------- /supertokens_python/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/types/__init__.py -------------------------------------------------------------------------------- /supertokens_python/types/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/types/auth_utils.py -------------------------------------------------------------------------------- /supertokens_python/types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/types/base.py -------------------------------------------------------------------------------- /supertokens_python/types/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/types/response.py -------------------------------------------------------------------------------- /supertokens_python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/supertokens_python/utils.py -------------------------------------------------------------------------------- /tests/Django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Django/settings.py -------------------------------------------------------------------------------- /tests/Django/sqlite.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Django/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Django/test_django.py -------------------------------------------------------------------------------- /tests/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Docker/Dockerfile -------------------------------------------------------------------------------- /tests/Fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Fastapi/__init__.py -------------------------------------------------------------------------------- /tests/Fastapi/test_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Fastapi/test_fastapi.py -------------------------------------------------------------------------------- /tests/Flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Flask/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Flask/test_flask.py -------------------------------------------------------------------------------- /tests/Flask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/Flask/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/auth-react/auth-react.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/auth-react.env -------------------------------------------------------------------------------- /tests/auth-react/django3x/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/main.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/manage.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/asgi.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/middleware.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/server.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/settings.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/store.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/urls.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/utils.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/mysite/wsgi.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/polls/apps.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/polls/urls.py -------------------------------------------------------------------------------- /tests/auth-react/django3x/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/django3x/polls/views.py -------------------------------------------------------------------------------- /tests/auth-react/fastapi-server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/fastapi-server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/fastapi-server/app.py -------------------------------------------------------------------------------- /tests/auth-react/flask-server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auth-react/flask-server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/auth-react/flask-server/app.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dashboard/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/dashboard/test_dashboard.py -------------------------------------------------------------------------------- /tests/emailpassword/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/__init__.py -------------------------------------------------------------------------------- /tests/emailpassword/test_emaildelivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_emaildelivery.py -------------------------------------------------------------------------------- /tests/emailpassword/test_emailexists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_emailexists.py -------------------------------------------------------------------------------- /tests/emailpassword/test_emailverify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_emailverify.py -------------------------------------------------------------------------------- /tests/emailpassword/test_multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_multitenancy.py -------------------------------------------------------------------------------- /tests/emailpassword/test_passwordreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_passwordreset.py -------------------------------------------------------------------------------- /tests/emailpassword/test_signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_signin.py -------------------------------------------------------------------------------- /tests/emailpassword/test_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_signup.py -------------------------------------------------------------------------------- /tests/emailpassword/test_updateemailorpassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailpassword/test_updateemailorpassword.py -------------------------------------------------------------------------------- /tests/emailverification/test_emailverification_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/emailverification/test_emailverification_claim.py -------------------------------------------------------------------------------- /tests/frontendIntegration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/README.md -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/create_env.sh -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/manage.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/mysite/settings.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/mysite/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/mysite/wsgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/polls/apps.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/polls/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/polls/views.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/requirements.txt -------------------------------------------------------------------------------- /tests/frontendIntegration/django2x/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django2x/templates/index.html -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/README.md -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/create_env.sh -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/main.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/manage.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/mysite/asgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/mysite/server.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/mysite/settings.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/mysite/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/mysite/wsgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/polls/apps.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/polls/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/polls/views.py -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/requirements.txt -------------------------------------------------------------------------------- /tests/frontendIntegration/django3x/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/django3x/templates/index.html -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/README.md -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/create_env.sh -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/main.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/manage.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/mysite/asgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/mysite/server.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/mysite/settings.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/mysite/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/mysite/wsgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/polls/apps.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/polls/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/polls/views.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/requirements.txt -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_async/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_async/templates/index.html -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/README.md -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/create_env.sh -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/main.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/manage.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/mysite/asgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/mysite/server.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/mysite/settings.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/mysite/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/mysite/wsgi.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/polls/apps.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/polls/urls.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/polls/views.py -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/requirements.txt -------------------------------------------------------------------------------- /tests/frontendIntegration/drf_sync/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/drf_sync/templates/index.html -------------------------------------------------------------------------------- /tests/frontendIntegration/fastapi-server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/fastapi-server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/fastapi-server/app.py -------------------------------------------------------------------------------- /tests/frontendIntegration/flask-server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/frontendIntegration/flask-server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/frontendIntegration/flask-server/app.py -------------------------------------------------------------------------------- /tests/input_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/input_validation/test_input_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/input_validation/test_input_validation.py -------------------------------------------------------------------------------- /tests/jwt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/jwt/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/jwt/test_config.py -------------------------------------------------------------------------------- /tests/jwt/test_create_jwt_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/jwt/test_create_jwt_feature.py -------------------------------------------------------------------------------- /tests/jwt/test_get_JWKS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/jwt/test_get_JWKS.py -------------------------------------------------------------------------------- /tests/jwt/test_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/jwt/test_override.py -------------------------------------------------------------------------------- /tests/multitenancy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multitenancy/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/multitenancy/test_router.py -------------------------------------------------------------------------------- /tests/multitenancy/test_tenants_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/multitenancy/test_tenants_crud.py -------------------------------------------------------------------------------- /tests/passwordless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/passwordless/__init__.py -------------------------------------------------------------------------------- /tests/passwordless/test_emaildelivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/passwordless/test_emaildelivery.py -------------------------------------------------------------------------------- /tests/passwordless/test_mutlitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/passwordless/test_mutlitenancy.py -------------------------------------------------------------------------------- /tests/passwordless/test_smsdelivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/passwordless/test_smsdelivery.py -------------------------------------------------------------------------------- /tests/playground/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/playground/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/playground/app.py -------------------------------------------------------------------------------- /tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/schema.py -------------------------------------------------------------------------------- /tests/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sessions/claims/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/__init__.py -------------------------------------------------------------------------------- /tests/sessions/claims/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/conftest.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_assert_claims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_assert_claims.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_create_new_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_create_new_session.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_fetch_and_set_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_fetch_and_set_claim.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_get_claim_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_get_claim_value.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_primitive_array_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_primitive_array_claim.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_primitive_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_primitive_claim.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_remove_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_remove_claim.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_set_claim_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_set_claim_value.py -------------------------------------------------------------------------------- /tests/sessions/claims/test_verify_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/test_verify_session.py -------------------------------------------------------------------------------- /tests/sessions/claims/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/claims/utils.py -------------------------------------------------------------------------------- /tests/sessions/test_access_token_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_access_token_version.py -------------------------------------------------------------------------------- /tests/sessions/test_auth_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_auth_mode.py -------------------------------------------------------------------------------- /tests/sessions/test_jwks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_jwks.py -------------------------------------------------------------------------------- /tests/sessions/test_session_error_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_session_error_handlers.py -------------------------------------------------------------------------------- /tests/sessions/test_session_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_session_utils.py -------------------------------------------------------------------------------- /tests/sessions/test_use_dynamic_signing_key_switching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/sessions/test_use_dynamic_signing_key_switching.py -------------------------------------------------------------------------------- /tests/supertokens_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/supertokens_python/__init__.py -------------------------------------------------------------------------------- /tests/supertokens_python/test_supertokens_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/supertokens_python/test_supertokens_functions.py -------------------------------------------------------------------------------- /tests/telemetry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/telemetry/test_telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/telemetry/test_telemetry.py -------------------------------------------------------------------------------- /tests/test-server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-server/accountlinking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/accountlinking.py -------------------------------------------------------------------------------- /tests/test-server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/app.py -------------------------------------------------------------------------------- /tests/test-server/emailpassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/emailpassword.py -------------------------------------------------------------------------------- /tests/test-server/emailverification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/emailverification.py -------------------------------------------------------------------------------- /tests/test-server/multifactorauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/multifactorauth.py -------------------------------------------------------------------------------- /tests/test-server/multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/multitenancy.py -------------------------------------------------------------------------------- /tests/test-server/oauth2provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/oauth2provider.py -------------------------------------------------------------------------------- /tests/test-server/override_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/override_logging.py -------------------------------------------------------------------------------- /tests/test-server/passwordless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/passwordless.py -------------------------------------------------------------------------------- /tests/test-server/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/session.py -------------------------------------------------------------------------------- /tests/test-server/supertokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/supertokens.py -------------------------------------------------------------------------------- /tests/test-server/test_functions_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/test_functions_mapper.py -------------------------------------------------------------------------------- /tests/test-server/thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/thirdparty.py -------------------------------------------------------------------------------- /tests/test-server/totp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/totp.py -------------------------------------------------------------------------------- /tests/test-server/usermetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/usermetadata.py -------------------------------------------------------------------------------- /tests/test-server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/utils.py -------------------------------------------------------------------------------- /tests/test-server/webauthn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test-server/webauthn.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_config_without_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_config_without_core.py -------------------------------------------------------------------------------- /tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_logger.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_network_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_network_interceptor.py -------------------------------------------------------------------------------- /tests/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_pagination.py -------------------------------------------------------------------------------- /tests/test_passwordless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_passwordless.py -------------------------------------------------------------------------------- /tests/test_querier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_querier.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_user_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_user_context.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/testclient.py -------------------------------------------------------------------------------- /tests/thirdparty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/thirdparty/__init__.py -------------------------------------------------------------------------------- /tests/thirdparty/test_authorisation_url_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/thirdparty/test_authorisation_url_feature.py -------------------------------------------------------------------------------- /tests/thirdparty/test_emaildelivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/thirdparty/test_emaildelivery.py -------------------------------------------------------------------------------- /tests/thirdparty/test_multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/thirdparty/test_multitenancy.py -------------------------------------------------------------------------------- /tests/thirdparty/test_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/thirdparty/test_thirdparty.py -------------------------------------------------------------------------------- /tests/useridmapping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/useridmapping/create_user_id_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/useridmapping/create_user_id_mapping.py -------------------------------------------------------------------------------- /tests/useridmapping/delete_user_id_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/useridmapping/delete_user_id_mapping.py -------------------------------------------------------------------------------- /tests/useridmapping/get_user_id_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/useridmapping/get_user_id_mapping.py -------------------------------------------------------------------------------- /tests/useridmapping/recipe_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/useridmapping/recipe_tests.py -------------------------------------------------------------------------------- /tests/useridmapping/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/useridmapping/utils.py -------------------------------------------------------------------------------- /tests/usermetadata/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/usermetadata/test_metadata.py -------------------------------------------------------------------------------- /tests/userroles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/__init__.py -------------------------------------------------------------------------------- /tests/userroles/test_add_role_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_add_role_to_user.py -------------------------------------------------------------------------------- /tests/userroles/test_claims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_claims.py -------------------------------------------------------------------------------- /tests/userroles/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_config.py -------------------------------------------------------------------------------- /tests/userroles/test_create_new_role_or_add_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_create_new_role_or_add_permissions.py -------------------------------------------------------------------------------- /tests/userroles/test_delete_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_delete_role.py -------------------------------------------------------------------------------- /tests/userroles/test_get_permissions_for_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_get_permissions_for_role.py -------------------------------------------------------------------------------- /tests/userroles/test_get_roles_for_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_get_roles_for_user.py -------------------------------------------------------------------------------- /tests/userroles/test_get_roles_that_have_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_get_roles_that_have_permissions.py -------------------------------------------------------------------------------- /tests/userroles/test_get_users_that_have_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_get_users_that_have_role.py -------------------------------------------------------------------------------- /tests/userroles/test_multitenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_multitenancy.py -------------------------------------------------------------------------------- /tests/userroles/test_remove_permissions_from_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_remove_permissions_from_role.py -------------------------------------------------------------------------------- /tests/userroles/test_remove_user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/userroles/test_remove_user_role.py -------------------------------------------------------------------------------- /tests/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/users.json -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/webauthn/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertokens/supertokens-python/HEAD/tests/webauthn/test_config.py --------------------------------------------------------------------------------