Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 15, 2020 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/aa37c6d3278669825772113ea78cbce9 to your computer and use it in GitHub Desktop.
Save r-ryantm/aa37c6d3278669825772113ea78cbce9 to your computer and use it in GitHub Desktop.
/nix/store/gv86a3rfj11mjrf7idy0w7zb41hddfsq-python3.7-auth0-python-3.13.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── auth0
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   └── v3
│   │   ├── authentication
│   │   │   ├── authorize_client.py
│   │   │   ├── base.py
│   │   │   ├── database.py
│   │   │   ├── delegated.py
│   │   │   ├── enterprise.py
│   │   │   ├── get_token.py
│   │   │   ├── __init__.py
│   │   │   ├── logout.py
│   │   │   ├── passwordless.py
│   │   │   ├── __pycache__
│   │   │   │   ├── authorize_client.cpython-37.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── database.cpython-37.pyc
│   │   │   │   ├── delegated.cpython-37.pyc
│   │   │   │   ├── enterprise.cpython-37.pyc
│   │   │   │   ├── get_token.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── logout.cpython-37.pyc
│   │   │   │   ├── passwordless.cpython-37.pyc
│   │   │   │   ├── revoke_token.cpython-37.pyc
│   │   │   │   ├── social.cpython-37.pyc
│   │   │   │   ├── token_verifier.cpython-37.pyc
│   │   │   │   └── users.cpython-37.pyc
│   │   │   ├── revoke_token.py
│   │   │   ├── social.py
│   │   │   ├── token_verifier.py
│   │   │   └── users.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── management
│   │   │   ├── auth0.py
│   │   │   ├── blacklists.py
│   │   │   ├── client_grants.py
│   │   │   ├── clients.py
│   │   │   ├── connections.py
│   │   │   ├── custom_domains.py
│   │   │   ├── device_credentials.py
│   │   │   ├── emails.py
│   │   │   ├── email_templates.py
│   │   │   ├── grants.py
│   │   │   ├── guardian.py
│   │   │   ├── hooks.py
│   │   │   ├── __init__.py
│   │   │   ├── jobs.py
│   │   │   ├── logs.py
│   │   │   ├── log_streams.py
│   │   │   ├── __pycache__
│   │   │   │   ├── auth0.cpython-37.pyc
│   │   │   │   ├── blacklists.cpython-37.pyc
│   │   │   │   ├── client_grants.cpython-37.pyc
│   │   │   │   ├── clients.cpython-37.pyc
│   │   │   │   ├── connections.cpython-37.pyc
│   │   │   │   ├── custom_domains.cpython-37.pyc
│   │   │   │   ├── device_credentials.cpython-37.pyc
│   │   │   │   ├── emails.cpython-37.pyc
│   │   │   │   ├── email_templates.cpython-37.pyc
│   │   │   │   ├── grants.cpython-37.pyc
│   │   │   │   ├── guardian.cpython-37.pyc
│   │   │   │   ├── hooks.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── jobs.cpython-37.pyc
│   │   │   │   ├── logs.cpython-37.pyc
│   │   │   │   ├── log_streams.cpython-37.pyc
│   │   │   │   ├── resource_servers.cpython-37.pyc
│   │   │   │   ├── rest.cpython-37.pyc
│   │   │   │   ├── roles.cpython-37.pyc
│   │   │   │   ├── rules_configs.cpython-37.pyc
│   │   │   │   ├── rules.cpython-37.pyc
│   │   │   │   ├── stats.cpython-37.pyc
│   │   │   │   ├── tenants.cpython-37.pyc
│   │   │   │   ├── tickets.cpython-37.pyc
│   │   │   │   ├── user_blocks.cpython-37.pyc
│   │   │   │   ├── users_by_email.cpython-37.pyc
│   │   │   │   └── users.cpython-37.pyc
│   │   │   ├── resource_servers.py
│   │   │   ├── rest.py
│   │   │   ├── roles.py
│   │   │   ├── rules_configs.py
│   │   │   ├── rules.py
│   │   │   ├── stats.py
│   │   │   ├── tenants.py
│   │   │   ├── tickets.py
│   │   │   ├── user_blocks.py
│   │   │   ├── users_by_email.py
│   │   │   └── users.py
│   │   ├── __pycache__
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   └── test
│   │   ├── authentication
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_authorize_client.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_database.cpython-37.pyc
│   │   │   │   ├── test_delegated.cpython-37.pyc
│   │   │   │   ├── test_enterprise.cpython-37.pyc
│   │   │   │   ├── test_get_token.cpython-37.pyc
│   │   │   │   ├── test_logout.cpython-37.pyc
│   │   │   │   ├── test_passwordless.cpython-37.pyc
│   │   │   │   ├── test_revoke_token.cpython-37.pyc
│   │   │   │   ├── test_social.cpython-37.pyc
│   │   │   │   ├── test_token_verifier.cpython-37.pyc
│   │   │   │   └── test_users.cpython-37.pyc
│   │   │   ├── test_authorize_client.py
│   │   │   ├── test_base.py
│   │   │   ├── test_database.py
│   │   │   ├── test_delegated.py
│   │   │   ├── test_enterprise.py
│   │   │   ├── test_get_token.py
│   │   │   ├── test_logout.py
│   │   │   ├── test_passwordless.py
│   │   │   ├── test_revoke_token.py
│   │   │   ├── test_social.py
│   │   │   ├── test_token_verifier.py
│   │   │   └── test_users.py
│   │   ├── __init__.py
│   │   ├── management
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_auth0.cpython-37.pyc
│   │   │   │   ├── test_blacklists.cpython-37.pyc
│   │   │   │   ├── test_client_grants.cpython-37.pyc
│   │   │   │   ├── test_clients.cpython-37.pyc
│   │   │   │   ├── test_connections.cpython-37.pyc
│   │   │   │   ├── test_custom_domains.cpython-37.pyc
│   │   │   │   ├── test_device_credentials.cpython-37.pyc
│   │   │   │   ├── test_email_endpoints.cpython-37.pyc
│   │   │   │   ├── test_emails.cpython-37.pyc
│   │   │   │   ├── test_grants.cpython-37.pyc
│   │   │   │   ├── test_guardian.cpython-37.pyc
│   │   │   │   ├── test_hooks.cpython-37.pyc
│   │   │   │   ├── test_jobs.cpython-37.pyc
│   │   │   │   ├── test_logs.cpython-37.pyc
│   │   │   │   ├── test_log_streams.cpython-37.pyc
│   │   │   │   ├── test_resource_servers.cpython-37.pyc
│   │   │   │   ├── test_rest.cpython-37.pyc
│   │   │   │   ├── test_roles.cpython-37.pyc
│   │   │   │   ├── test_rules_configs.cpython-37.pyc
│   │   │   │   ├── test_rules.cpython-37.pyc
│   │   │   │   ├── test_stats.cpython-37.pyc
│   │   │   │   ├── test_tenants.cpython-37.pyc
│   │   │   │   ├── test_tickets.cpython-37.pyc
│   │   │   │   ├── test_user_blocks.cpython-37.pyc
│   │   │   │   ├── test_users_by_email.cpython-37.pyc
│   │   │   │   └── test_users.cpython-37.pyc
│   │   │   ├── test_auth0.py
│   │   │   ├── test_blacklists.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_logs.py
│   │   │   ├── test_log_streams.py
│   │   │   ├── test_resource_servers.py
│   │   │   ├── test_rest.py
│   │   │   ├── test_roles.py
│   │   │   ├── test_rules_configs.py
│   │   │   ├── test_rules.py
│   │   │   ├── test_stats.py
│   │   │   ├── test_tenants.py
│   │   │   ├── test_tickets.py
│   │   │   ├── test_user_blocks.py
│   │   │   ├── test_users_by_email.py
│   │   │   └── test_users.py
│   │   └── __pycache__
│   │   └── __init__.cpython-37.pyc
│   └── auth0_python-3.13.0.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
19 directories, 175 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment