├── .codecov.yml ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Bug Report.yml │ ├── Feature Request.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── get-prerelease │ │ └── action.yml │ ├── get-release-notes │ │ └── action.yml │ ├── get-version │ │ └── action.yml │ ├── release-create │ │ └── action.yml │ ├── rl-scanner │ │ └── action.yml │ └── tag-exists │ │ └── action.yml ├── dependabot.yml ├── stale.yml └── workflows │ ├── claude-code-review.yml │ ├── codeql.yml │ ├── docs.yml │ ├── publish.yml │ ├── rl-scanner.yml │ ├── snyk.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .semgrepignore ├── .shiprc ├── .snyk ├── .version ├── CHANGELOG.md ├── DEVELOPMENT.rst ├── EXAMPLES.md ├── LICENSE ├── README.md ├── V4_MIGRATION_GUIDE.md ├── auth0 ├── __init__.py ├── asyncify.py ├── authentication │ ├── __init__.py │ ├── async_token_verifier.py │ ├── back_channel_login.py │ ├── base.py │ ├── client_authentication.py │ ├── database.py │ ├── delegated.py │ ├── enterprise.py │ ├── get_token.py │ ├── passwordless.py │ ├── pushed_authorization_requests.py │ ├── revoke_token.py │ ├── social.py │ ├── token_verifier.py │ └── users.py ├── exceptions.py ├── management │ ├── __init__.py │ ├── actions.py │ ├── async_auth0.py │ ├── attack_protection.py │ ├── auth0.py │ ├── blacklists.py │ ├── branding.py │ ├── client_credentials.py │ ├── client_grants.py │ ├── clients.py │ ├── connections.py │ ├── custom_domains.py │ ├── device_credentials.py │ ├── email_templates.py │ ├── emails.py │ ├── grants.py │ ├── guardian.py │ ├── hooks.py │ ├── jobs.py │ ├── log_streams.py │ ├── logs.py │ ├── network_acls.py │ ├── organizations.py │ ├── prompts.py │ ├── resource_servers.py │ ├── roles.py │ ├── rules.py │ ├── rules_configs.py │ ├── self_service_profiles.py │ ├── stats.py │ ├── tenants.py │ ├── tickets.py │ ├── user_blocks.py │ ├── users.py │ └── users_by_email.py ├── rest.py ├── rest_async.py ├── test │ ├── __init__.py │ ├── authentication │ │ ├── __init__.py │ │ ├── test_back_channel_login.py │ │ ├── test_base.py │ │ ├── test_database.py │ │ ├── test_delegated.py │ │ ├── test_enterprise.py │ │ ├── test_get_token.py │ │ ├── test_passwordless.py │ │ ├── test_pushed_authorization_requests.py │ │ ├── test_revoke_token.py │ │ ├── test_social.py │ │ ├── test_token_verifier.py │ │ └── test_users.py │ ├── conftest.py │ └── management │ │ ├── __init__.py │ │ ├── test_actions.py │ │ ├── test_atack_protection.py │ │ ├── test_auth0.py │ │ ├── test_blacklists.py │ │ ├── test_branding.py │ │ ├── test_client_credentials.py │ │ ├── test_client_grants.py │ │ ├── test_clients.py │ │ ├── test_connections.py │ │ ├── test_custom_domains.py │ │ ├── test_device_credentials.py │ │ ├── test_email_endpoints.py │ │ ├── test_emails.py │ │ ├── test_grants.py │ │ ├── test_guardian.py │ │ ├── test_hooks.py │ │ ├── test_jobs.py │ │ ├── test_log_streams.py │ │ ├── test_logs.py │ │ ├── test_network_acls.py │ │ ├── test_organizations.py │ │ ├── test_prompts.py │ │ ├── test_resource_servers.py │ │ ├── test_rest.py │ │ ├── test_roles.py │ │ ├── test_rules.py │ │ ├── test_rules_configs.py │ │ ├── test_self_service_profiles.py │ │ ├── test_stats.py │ │ ├── test_tenants.py │ │ ├── test_tickets.py │ │ ├── test_user_blocks.py │ │ ├── test_users.py │ │ └── test_users_by_email.py ├── test_async │ ├── __init__.py │ ├── conftest.py │ ├── test_async_auth0.py │ ├── test_async_token_verifier.py │ └── test_asyncify.py ├── types.py └── utils.py ├── dockerfile ├── docs ├── Makefile ├── make.bat └── source │ ├── authentication.rst │ ├── conf.py │ ├── exceptions.rst │ ├── index.rst │ ├── management.rst │ └── readme_content.rst ├── examples ├── flask-api │ └── README.md ├── flask-webapp │ └── README.md └── webapi2 │ └── README.md ├── mypy.ini ├── opslevel.yml ├── poetry.lock ├── publish.sh ├── pyproject.toml ├── requirements.txt └── setup.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 F401 3 | max-line-length = 88 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @auth0/project-dx-sdks-engineer-codeowner 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug Report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/ISSUE_TEMPLATE/Bug Report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature Request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/ISSUE_TEMPLATE/Feature Request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/get-prerelease/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/get-prerelease/action.yml -------------------------------------------------------------------------------- /.github/actions/get-release-notes/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/get-release-notes/action.yml -------------------------------------------------------------------------------- /.github/actions/get-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/get-version/action.yml -------------------------------------------------------------------------------- /.github/actions/release-create/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/release-create/action.yml -------------------------------------------------------------------------------- /.github/actions/rl-scanner/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/rl-scanner/action.yml -------------------------------------------------------------------------------- /.github/actions/tag-exists/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/actions/tag-exists/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/rl-scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/rl-scanner.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/snyk.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.semgrepignore -------------------------------------------------------------------------------- /.shiprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.shiprc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/.snyk -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 4.13.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/DEVELOPMENT.rst -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/README.md -------------------------------------------------------------------------------- /V4_MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/V4_MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /auth0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/__init__.py -------------------------------------------------------------------------------- /auth0/asyncify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/asyncify.py -------------------------------------------------------------------------------- /auth0/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/__init__.py -------------------------------------------------------------------------------- /auth0/authentication/async_token_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/async_token_verifier.py -------------------------------------------------------------------------------- /auth0/authentication/back_channel_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/back_channel_login.py -------------------------------------------------------------------------------- /auth0/authentication/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/base.py -------------------------------------------------------------------------------- /auth0/authentication/client_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/client_authentication.py -------------------------------------------------------------------------------- /auth0/authentication/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/database.py -------------------------------------------------------------------------------- /auth0/authentication/delegated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/delegated.py -------------------------------------------------------------------------------- /auth0/authentication/enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/enterprise.py -------------------------------------------------------------------------------- /auth0/authentication/get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/get_token.py -------------------------------------------------------------------------------- /auth0/authentication/passwordless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/passwordless.py -------------------------------------------------------------------------------- /auth0/authentication/pushed_authorization_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/pushed_authorization_requests.py -------------------------------------------------------------------------------- /auth0/authentication/revoke_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/revoke_token.py -------------------------------------------------------------------------------- /auth0/authentication/social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/social.py -------------------------------------------------------------------------------- /auth0/authentication/token_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/token_verifier.py -------------------------------------------------------------------------------- /auth0/authentication/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/authentication/users.py -------------------------------------------------------------------------------- /auth0/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/exceptions.py -------------------------------------------------------------------------------- /auth0/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/__init__.py -------------------------------------------------------------------------------- /auth0/management/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/actions.py -------------------------------------------------------------------------------- /auth0/management/async_auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/async_auth0.py -------------------------------------------------------------------------------- /auth0/management/attack_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/attack_protection.py -------------------------------------------------------------------------------- /auth0/management/auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/auth0.py -------------------------------------------------------------------------------- /auth0/management/blacklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/blacklists.py -------------------------------------------------------------------------------- /auth0/management/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/branding.py -------------------------------------------------------------------------------- /auth0/management/client_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/client_credentials.py -------------------------------------------------------------------------------- /auth0/management/client_grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/client_grants.py -------------------------------------------------------------------------------- /auth0/management/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/clients.py -------------------------------------------------------------------------------- /auth0/management/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/connections.py -------------------------------------------------------------------------------- /auth0/management/custom_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/custom_domains.py -------------------------------------------------------------------------------- /auth0/management/device_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/device_credentials.py -------------------------------------------------------------------------------- /auth0/management/email_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/email_templates.py -------------------------------------------------------------------------------- /auth0/management/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/emails.py -------------------------------------------------------------------------------- /auth0/management/grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/grants.py -------------------------------------------------------------------------------- /auth0/management/guardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/guardian.py -------------------------------------------------------------------------------- /auth0/management/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/hooks.py -------------------------------------------------------------------------------- /auth0/management/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/jobs.py -------------------------------------------------------------------------------- /auth0/management/log_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/log_streams.py -------------------------------------------------------------------------------- /auth0/management/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/logs.py -------------------------------------------------------------------------------- /auth0/management/network_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/network_acls.py -------------------------------------------------------------------------------- /auth0/management/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/organizations.py -------------------------------------------------------------------------------- /auth0/management/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/prompts.py -------------------------------------------------------------------------------- /auth0/management/resource_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/resource_servers.py -------------------------------------------------------------------------------- /auth0/management/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/roles.py -------------------------------------------------------------------------------- /auth0/management/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/rules.py -------------------------------------------------------------------------------- /auth0/management/rules_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/rules_configs.py -------------------------------------------------------------------------------- /auth0/management/self_service_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/self_service_profiles.py -------------------------------------------------------------------------------- /auth0/management/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/stats.py -------------------------------------------------------------------------------- /auth0/management/tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/tenants.py -------------------------------------------------------------------------------- /auth0/management/tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/tickets.py -------------------------------------------------------------------------------- /auth0/management/user_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/user_blocks.py -------------------------------------------------------------------------------- /auth0/management/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/users.py -------------------------------------------------------------------------------- /auth0/management/users_by_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/management/users_by_email.py -------------------------------------------------------------------------------- /auth0/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/rest.py -------------------------------------------------------------------------------- /auth0/rest_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/rest_async.py -------------------------------------------------------------------------------- /auth0/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth0/test/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth0/test/authentication/test_back_channel_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_back_channel_login.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_base.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_database.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_delegated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_delegated.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_enterprise.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_get_token.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_passwordless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_passwordless.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_pushed_authorization_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_pushed_authorization_requests.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_revoke_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_revoke_token.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_social.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_token_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_token_verifier.py -------------------------------------------------------------------------------- /auth0/test/authentication/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/authentication/test_users.py -------------------------------------------------------------------------------- /auth0/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/conftest.py -------------------------------------------------------------------------------- /auth0/test/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth0/test/management/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_actions.py -------------------------------------------------------------------------------- /auth0/test/management/test_atack_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_atack_protection.py -------------------------------------------------------------------------------- /auth0/test/management/test_auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_auth0.py -------------------------------------------------------------------------------- /auth0/test/management/test_blacklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_blacklists.py -------------------------------------------------------------------------------- /auth0/test/management/test_branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_branding.py -------------------------------------------------------------------------------- /auth0/test/management/test_client_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_client_credentials.py -------------------------------------------------------------------------------- /auth0/test/management/test_client_grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_client_grants.py -------------------------------------------------------------------------------- /auth0/test/management/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_clients.py -------------------------------------------------------------------------------- /auth0/test/management/test_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_connections.py -------------------------------------------------------------------------------- /auth0/test/management/test_custom_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_custom_domains.py -------------------------------------------------------------------------------- /auth0/test/management/test_device_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_device_credentials.py -------------------------------------------------------------------------------- /auth0/test/management/test_email_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_email_endpoints.py -------------------------------------------------------------------------------- /auth0/test/management/test_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_emails.py -------------------------------------------------------------------------------- /auth0/test/management/test_grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_grants.py -------------------------------------------------------------------------------- /auth0/test/management/test_guardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_guardian.py -------------------------------------------------------------------------------- /auth0/test/management/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_hooks.py -------------------------------------------------------------------------------- /auth0/test/management/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_jobs.py -------------------------------------------------------------------------------- /auth0/test/management/test_log_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_log_streams.py -------------------------------------------------------------------------------- /auth0/test/management/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_logs.py -------------------------------------------------------------------------------- /auth0/test/management/test_network_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_network_acls.py -------------------------------------------------------------------------------- /auth0/test/management/test_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_organizations.py -------------------------------------------------------------------------------- /auth0/test/management/test_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_prompts.py -------------------------------------------------------------------------------- /auth0/test/management/test_resource_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_resource_servers.py -------------------------------------------------------------------------------- /auth0/test/management/test_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_rest.py -------------------------------------------------------------------------------- /auth0/test/management/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_roles.py -------------------------------------------------------------------------------- /auth0/test/management/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_rules.py -------------------------------------------------------------------------------- /auth0/test/management/test_rules_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_rules_configs.py -------------------------------------------------------------------------------- /auth0/test/management/test_self_service_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_self_service_profiles.py -------------------------------------------------------------------------------- /auth0/test/management/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_stats.py -------------------------------------------------------------------------------- /auth0/test/management/test_tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_tenants.py -------------------------------------------------------------------------------- /auth0/test/management/test_tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_tickets.py -------------------------------------------------------------------------------- /auth0/test/management/test_user_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_user_blocks.py -------------------------------------------------------------------------------- /auth0/test/management/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_users.py -------------------------------------------------------------------------------- /auth0/test/management/test_users_by_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test/management/test_users_by_email.py -------------------------------------------------------------------------------- /auth0/test_async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth0/test_async/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test_async/conftest.py -------------------------------------------------------------------------------- /auth0/test_async/test_async_auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test_async/test_async_auth0.py -------------------------------------------------------------------------------- /auth0/test_async/test_async_token_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test_async/test_async_token_verifier.py -------------------------------------------------------------------------------- /auth0/test_async/test_asyncify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/test_async/test_asyncify.py -------------------------------------------------------------------------------- /auth0/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/types.py -------------------------------------------------------------------------------- /auth0/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/auth0/utils.py -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/source/authentication.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/source/exceptions.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/docs/source/management.rst -------------------------------------------------------------------------------- /docs/source/readme_content.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../README.md 2 | -------------------------------------------------------------------------------- /examples/flask-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/examples/flask-api/README.md -------------------------------------------------------------------------------- /examples/flask-webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/examples/flask-webapp/README.md -------------------------------------------------------------------------------- /examples/webapi2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/examples/webapi2/README.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/mypy.ini -------------------------------------------------------------------------------- /opslevel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/opslevel.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/poetry.lock -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/publish.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/auth0-python/HEAD/setup.py --------------------------------------------------------------------------------