Go to file
2016-08-11 11:03:07 -06:00
docs Add Django 1.10 as a supported configuration. 2016-08-04 11:07:34 -06:00
example_project Merge branch 'v0.3.x' of https://github.com/juanifioren/django-oidc-provider into v0.3.x 2016-04-16 18:02:26 -03:00
oidc_provider Merge branch 'fix-id-token-at-hash' of https://github.com/brosner/django-oidc-provider into brosner-fix-id-token-at-hash 2016-08-10 18:13:33 -03:00
.gitignore Add tests for at_hash 2016-08-08 11:24:07 -06:00
.travis.yml Add py35 environment to tox/travisci 2016-04-13 18:23:08 +10:00
CHANGELOG.md Edit CHANGELOG. 2016-08-10 18:37:00 -03:00
LICENSE Bump version v0.3.1. 2016-03-09 12:11:59 -03:00
MANIFEST.in Add python folders and templates to setup. 2015-07-17 11:45:43 -03:00
README.md Edit README. 2016-08-11 12:05:52 -03:00
runtests.py Add tests for at_hash 2016-08-08 11:24:07 -06:00
setup.py Add tests for at_hash 2016-08-08 11:24:07 -06:00
tox.ini Test against Django v1.10 2016-08-04 00:30:22 -06:00

Django OIDC Provider

Python Versions PyPI Versions Travis PyPI Downloads

About OpenID

OpenID Connect is a simple identity layer on top of the OAuth 2.0 protocol, which allows computing clients to verify the identity of an end-user based on the authentication performed by an authorization server, as well as to obtain basic profile information about the end-user in an interoperable and REST-like manner. Like Google for example.

About the package

django-oidc-provider can help you providing out of the box all the endpoints, data and logic needed to add OpenID Connect capabilities to your Django projects.

Support for Python 3 and 2. Also latest versions of django.

Read docs for more info or see the changelog here.

Contributing

We love contributions, so please feel free to fix bugs, improve things, provide documentation. You SHOULD follow this steps:

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it inside oidc_provider/tests. Then run all and ensure everything is OK (read docs for how to test in all envs).
  • Send pull request to the develop branch.