manage.get.gov/src/djangooidc
2024-02-14 17:11:55 -05:00
..
tests updated comment 2024-02-14 17:11:55 -05:00
__init__.py Add Login.gov *\o/* 2022-09-22 15:15:13 -05:00
backends.py linter 2023-12-13 15:41:18 -05:00
exceptions.py Implement VIP table and fix 401 login bug 2024-01-18 19:58:53 -05:00
LICENSE Add Login.gov *\o/* 2022-09-22 15:15:13 -05:00
NOTICE Add Login.gov *\o/* 2022-09-22 15:15:13 -05:00
oidc.py health check to /health, updated testing of /health, cleaned up extraneous debug logging 2024-02-07 13:08:26 -05:00
README.rst Add Login.gov *\o/* 2022-09-22 15:15:13 -05:00
urls.py Run tests behind logged in pages (#162) 2022-10-11 11:26:11 -05:00
views.py handle logout when no session is present 2024-02-14 12:09:27 -05:00

Django OpenID Connect (OIDC) authentication provider
====================================================

This module makes it easy to integrate OpenID Connect as an authentication source in a Django project.

Behind the scenes, it uses Roland Hedberg's great pyoidc library.

Modified by JHUAPL BOSS to support Python3

Modified by Thomas Frössman with fixes and additional modifications.

A note for anyone viewing this file from the .gov repository:

This code has been included from its upstream counterpart in order to minimize external dependencies. Here is an excerpt from setup.py::

    name='django-oidc-tf',
    description="""A Django OpenID Connect (OIDC) authentication backend""",
    author='Thomas Frössman',
    author_email='thomasf@jossystem.se',
    url='https://github.com/py-pa/django-oidc',
    packages=[
        'djangooidc',
    ],
    include_package_data=True,
    install_requires=[
        'django>=1.10',
        'oic>=0.10.0',
    ],

It was taken from https://github.com/koriaf/django-oidc at ae4a0ba5e6bfda1495f9447a507e6f54cc056980.