├── .gitignore ├── README.md ├── django_social_auth ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── templates ├── google_signin.html └── signin.html └── users ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── admin.cpython-310.pyc ├── apps.cpython-310.pyc ├── models.cpython-310.pyc ├── urls.cpython-310.pyc └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── migrations ├── __init__.py └── __pycache__ │ └── __init__.cpython-310.pyc ├── models.py ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | db.sqlite3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/README.md -------------------------------------------------------------------------------- /django_social_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_social_auth/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /django_social_auth/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /django_social_auth/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /django_social_auth/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /django_social_auth/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/asgi.py -------------------------------------------------------------------------------- /django_social_auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/settings.py -------------------------------------------------------------------------------- /django_social_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/urls.py -------------------------------------------------------------------------------- /django_social_auth/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/django_social_auth/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/google_signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/templates/google_signin.html -------------------------------------------------------------------------------- /templates/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/templates/signin.html -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /users/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /users/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /users/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /users/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /users/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/models.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/budescode/Django-social-authentication/HEAD/users/views.py --------------------------------------------------------------------------------