├── .github ├── renovate.json └── workflows │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example-cherrypy ├── common ├── example │ ├── __init__.py │ ├── app.py │ ├── db │ │ ├── __init__.py │ │ ├── saplugin.py │ │ ├── satool.py │ │ └── user.py │ ├── local_settings.py.template │ └── settings.py ├── manage.py └── requirements.txt ├── example-common ├── __init__.py ├── filters.py ├── pipeline.py ├── templates │ ├── home.html │ └── home.jinja2 └── utils.py ├── example-django-mongoengine ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── mail.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── backend_utils.py │ ├── tests.py │ └── views.py ├── common ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt ├── example-django ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── mail.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── backend_utils.py │ ├── tests.py │ └── views.py ├── common ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt ├── example-flask-mongoengine ├── common ├── example │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── user.py │ ├── routes │ │ ├── __init__.py │ │ └── main.py │ └── settings.py ├── manage.py └── requirements.txt ├── example-flask-peewee ├── common ├── example │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── user.py │ ├── routes │ │ ├── __init__.py │ │ └── main.py │ └── settings.py ├── manage.py └── requirements.txt ├── example-flask ├── common ├── example │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── user.py │ ├── routes │ │ ├── __init__.py │ │ └── main.py │ └── settings.py ├── manage.py └── requirements.txt ├── example-pyramid ├── CHANGES.txt ├── README.txt ├── common ├── development.ini ├── example │ ├── __init__.py │ ├── auth.py │ ├── local_settings.py.template │ ├── models.py │ ├── scripts │ │ ├── __init__.py │ │ └── initializedb.py │ ├── settings.py │ └── views.py ├── production.ini ├── requirements.txt └── setup.py ├── example-tornado ├── common ├── example │ ├── __init__.py │ ├── app.py │ ├── local_settings.py.template │ ├── models.py │ ├── settings.py │ └── templates ├── manage.py └── requirements.txt ├── example-webpy ├── __init__.py ├── app.py ├── common ├── local_settings.py.template ├── manage.py ├── migrate.py ├── models.py ├── requirements.txt └── settings.py ├── pyproject.toml └── requirements.txt /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/README.md -------------------------------------------------------------------------------- /example-cherrypy/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-cherrypy/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-cherrypy/example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/app.py -------------------------------------------------------------------------------- /example-cherrypy/example/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/db/__init__.py -------------------------------------------------------------------------------- /example-cherrypy/example/db/saplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/db/saplugin.py -------------------------------------------------------------------------------- /example-cherrypy/example/db/satool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/db/satool.py -------------------------------------------------------------------------------- /example-cherrypy/example/db/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/db/user.py -------------------------------------------------------------------------------- /example-cherrypy/example/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/local_settings.py.template -------------------------------------------------------------------------------- /example-cherrypy/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/example/settings.py -------------------------------------------------------------------------------- /example-cherrypy/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/manage.py -------------------------------------------------------------------------------- /example-cherrypy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-cherrypy/requirements.txt -------------------------------------------------------------------------------- /example-common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-common/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-common/filters.py -------------------------------------------------------------------------------- /example-common/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-common/pipeline.py -------------------------------------------------------------------------------- /example-common/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-common/templates/home.html -------------------------------------------------------------------------------- /example-common/templates/home.jinja2: -------------------------------------------------------------------------------- 1 | home.html -------------------------------------------------------------------------------- /example-common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-common/utils.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django-mongoengine/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/admin.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/apps.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/decorators.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/mail.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django-mongoengine/app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django-mongoengine/app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django-mongoengine/app/templatetags/backend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/templatetags/backend_utils.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/tests.py -------------------------------------------------------------------------------- /example-django-mongoengine/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/app/views.py -------------------------------------------------------------------------------- /example-django-mongoengine/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-django-mongoengine/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django-mongoengine/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/example/settings.py -------------------------------------------------------------------------------- /example-django-mongoengine/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/example/urls.py -------------------------------------------------------------------------------- /example-django-mongoengine/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/example/wsgi.py -------------------------------------------------------------------------------- /example-django-mongoengine/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/manage.py -------------------------------------------------------------------------------- /example-django-mongoengine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django-mongoengine/requirements.txt -------------------------------------------------------------------------------- /example-django/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/admin.py -------------------------------------------------------------------------------- /example-django/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/apps.py -------------------------------------------------------------------------------- /example-django/app/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/decorators.py -------------------------------------------------------------------------------- /example-django/app/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/mail.py -------------------------------------------------------------------------------- /example-django/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /example-django/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/models.py -------------------------------------------------------------------------------- /example-django/app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django/app/templatetags/backend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/templatetags/backend_utils.py -------------------------------------------------------------------------------- /example-django/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/tests.py -------------------------------------------------------------------------------- /example-django/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/app/views.py -------------------------------------------------------------------------------- /example-django/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-django/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-django/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/example/settings.py -------------------------------------------------------------------------------- /example-django/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/example/urls.py -------------------------------------------------------------------------------- /example-django/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/example/wsgi.py -------------------------------------------------------------------------------- /example-django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/manage.py -------------------------------------------------------------------------------- /example-django/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-django/requirements.txt -------------------------------------------------------------------------------- /example-flask-mongoengine/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-flask-mongoengine/example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/__init__.py -------------------------------------------------------------------------------- /example-flask-mongoengine/example/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/models/__init__.py -------------------------------------------------------------------------------- /example-flask-mongoengine/example/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/models/user.py -------------------------------------------------------------------------------- /example-flask-mongoengine/example/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/routes/__init__.py -------------------------------------------------------------------------------- /example-flask-mongoengine/example/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/routes/main.py -------------------------------------------------------------------------------- /example-flask-mongoengine/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/example/settings.py -------------------------------------------------------------------------------- /example-flask-mongoengine/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/manage.py -------------------------------------------------------------------------------- /example-flask-mongoengine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-mongoengine/requirements.txt -------------------------------------------------------------------------------- /example-flask-peewee/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-flask-peewee/example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/__init__.py -------------------------------------------------------------------------------- /example-flask-peewee/example/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/models/__init__.py -------------------------------------------------------------------------------- /example-flask-peewee/example/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/models/user.py -------------------------------------------------------------------------------- /example-flask-peewee/example/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/routes/__init__.py -------------------------------------------------------------------------------- /example-flask-peewee/example/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/routes/main.py -------------------------------------------------------------------------------- /example-flask-peewee/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/example/settings.py -------------------------------------------------------------------------------- /example-flask-peewee/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask-peewee/manage.py -------------------------------------------------------------------------------- /example-flask-peewee/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt 2 | social-auth-app-flask-peewee 3 | -------------------------------------------------------------------------------- /example-flask/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-flask/example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/__init__.py -------------------------------------------------------------------------------- /example-flask/example/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/models/__init__.py -------------------------------------------------------------------------------- /example-flask/example/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/models/user.py -------------------------------------------------------------------------------- /example-flask/example/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/routes/__init__.py -------------------------------------------------------------------------------- /example-flask/example/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/routes/main.py -------------------------------------------------------------------------------- /example-flask/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/example/settings.py -------------------------------------------------------------------------------- /example-flask/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/manage.py -------------------------------------------------------------------------------- /example-flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-flask/requirements.txt -------------------------------------------------------------------------------- /example-pyramid/CHANGES.txt: -------------------------------------------------------------------------------- 1 | 0.0 2 | --- 3 | 4 | - Initial version 5 | -------------------------------------------------------------------------------- /example-pyramid/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/README.txt -------------------------------------------------------------------------------- /example-pyramid/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-pyramid/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/development.ini -------------------------------------------------------------------------------- /example-pyramid/example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/__init__.py -------------------------------------------------------------------------------- /example-pyramid/example/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/auth.py -------------------------------------------------------------------------------- /example-pyramid/example/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/local_settings.py.template -------------------------------------------------------------------------------- /example-pyramid/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/models.py -------------------------------------------------------------------------------- /example-pyramid/example/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /example-pyramid/example/scripts/initializedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/scripts/initializedb.py -------------------------------------------------------------------------------- /example-pyramid/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/settings.py -------------------------------------------------------------------------------- /example-pyramid/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/example/views.py -------------------------------------------------------------------------------- /example-pyramid/production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/production.ini -------------------------------------------------------------------------------- /example-pyramid/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/requirements.txt -------------------------------------------------------------------------------- /example-pyramid/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-pyramid/setup.py -------------------------------------------------------------------------------- /example-tornado/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-tornado/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-tornado/example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/example/app.py -------------------------------------------------------------------------------- /example-tornado/example/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/example/local_settings.py.template -------------------------------------------------------------------------------- /example-tornado/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/example/models.py -------------------------------------------------------------------------------- /example-tornado/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/example/settings.py -------------------------------------------------------------------------------- /example-tornado/example/templates: -------------------------------------------------------------------------------- 1 | ../../example-common/templates -------------------------------------------------------------------------------- /example-tornado/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/manage.py -------------------------------------------------------------------------------- /example-tornado/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-tornado/requirements.txt -------------------------------------------------------------------------------- /example-webpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-webpy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/app.py -------------------------------------------------------------------------------- /example-webpy/common: -------------------------------------------------------------------------------- 1 | ../example-common -------------------------------------------------------------------------------- /example-webpy/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/local_settings.py.template -------------------------------------------------------------------------------- /example-webpy/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/manage.py -------------------------------------------------------------------------------- /example-webpy/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/migrate.py -------------------------------------------------------------------------------- /example-webpy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/models.py -------------------------------------------------------------------------------- /example-webpy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/requirements.txt -------------------------------------------------------------------------------- /example-webpy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/example-webpy/settings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-social-auth/social-examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | social-auth-core[all] 2 | --------------------------------------------------------------------------------