├── .coveragerc ├── .github ├── matchers │ └── flake8.json ├── renovate.json └── workflows │ ├── pre-commit.yml │ ├── release.yml │ ├── scorecard.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .well-known └── funding-manifest-urls ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── manage.py ├── pyproject.toml ├── social_django ├── __init__.py ├── admin.py ├── apps.py ├── config.py ├── context_processors.py ├── fields.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── clearsocial.py ├── managers.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_related_name.py │ ├── 0003_alter_email_max_length.py │ ├── 0004_auto_20160423_0400.py │ ├── 0005_auto_20160727_2333.py │ ├── 0006_partial.py │ ├── 0007_code_timestamp.py │ ├── 0008_partial_timestamp.py │ ├── 0009_auto_20191118_0520.py │ ├── 0010_uid_db_index.py │ ├── 0011_alter_id_fields.py │ ├── 0012_usersocialauth_extra_data_new.py │ ├── 0013_migrate_extra_data.py │ ├── 0014_remove_usersocialauth_extra_data.py │ ├── 0015_rename_extra_data_new_usersocialauth_extra_data.py │ ├── 0016_alter_usersocialauth_extra_data.py │ ├── 0017_usersocialauth_user_social_auth_uid_required.py │ └── __init__.py ├── models.py ├── py.typed ├── storage.py ├── strategy.py ├── urls.py ├── utils.py └── views.py ├── tests ├── __init__.py ├── settings.py ├── templates │ └── test.html ├── test_admin.py ├── test_context_processors.py ├── test_middleware.py ├── test_migrations.py ├── test_models.py ├── test_storage_integration.py ├── test_strategy.py ├── test_views.py └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/matchers/flake8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/matchers/flake8.json -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/.well-known/funding-manifest-urls -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/manage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/pyproject.toml -------------------------------------------------------------------------------- /social_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/__init__.py -------------------------------------------------------------------------------- /social_django/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/admin.py -------------------------------------------------------------------------------- /social_django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/apps.py -------------------------------------------------------------------------------- /social_django/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/config.py -------------------------------------------------------------------------------- /social_django/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/context_processors.py -------------------------------------------------------------------------------- /social_django/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/fields.py -------------------------------------------------------------------------------- /social_django/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_django/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_django/management/commands/clearsocial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/management/commands/clearsocial.py -------------------------------------------------------------------------------- /social_django/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/managers.py -------------------------------------------------------------------------------- /social_django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/middleware.py -------------------------------------------------------------------------------- /social_django/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0001_initial.py -------------------------------------------------------------------------------- /social_django/migrations/0002_add_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0002_add_related_name.py -------------------------------------------------------------------------------- /social_django/migrations/0003_alter_email_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0003_alter_email_max_length.py -------------------------------------------------------------------------------- /social_django/migrations/0004_auto_20160423_0400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0004_auto_20160423_0400.py -------------------------------------------------------------------------------- /social_django/migrations/0005_auto_20160727_2333.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0005_auto_20160727_2333.py -------------------------------------------------------------------------------- /social_django/migrations/0006_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0006_partial.py -------------------------------------------------------------------------------- /social_django/migrations/0007_code_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0007_code_timestamp.py -------------------------------------------------------------------------------- /social_django/migrations/0008_partial_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0008_partial_timestamp.py -------------------------------------------------------------------------------- /social_django/migrations/0009_auto_20191118_0520.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0009_auto_20191118_0520.py -------------------------------------------------------------------------------- /social_django/migrations/0010_uid_db_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0010_uid_db_index.py -------------------------------------------------------------------------------- /social_django/migrations/0011_alter_id_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0011_alter_id_fields.py -------------------------------------------------------------------------------- /social_django/migrations/0012_usersocialauth_extra_data_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0012_usersocialauth_extra_data_new.py -------------------------------------------------------------------------------- /social_django/migrations/0013_migrate_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0013_migrate_extra_data.py -------------------------------------------------------------------------------- /social_django/migrations/0014_remove_usersocialauth_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0014_remove_usersocialauth_extra_data.py -------------------------------------------------------------------------------- /social_django/migrations/0015_rename_extra_data_new_usersocialauth_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0015_rename_extra_data_new_usersocialauth_extra_data.py -------------------------------------------------------------------------------- /social_django/migrations/0016_alter_usersocialauth_extra_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0016_alter_usersocialauth_extra_data.py -------------------------------------------------------------------------------- /social_django/migrations/0017_usersocialauth_user_social_auth_uid_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/migrations/0017_usersocialauth_user_social_auth_uid_required.py -------------------------------------------------------------------------------- /social_django/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/models.py -------------------------------------------------------------------------------- /social_django/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_django/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/storage.py -------------------------------------------------------------------------------- /social_django/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/strategy.py -------------------------------------------------------------------------------- /social_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/urls.py -------------------------------------------------------------------------------- /social_django/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/utils.py -------------------------------------------------------------------------------- /social_django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/social_django/views.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/test.html: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_context_processors.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_storage_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_storage_integration.py -------------------------------------------------------------------------------- /tests/test_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_strategy.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-app-django/HEAD/tox.ini --------------------------------------------------------------------------------