django-oidc-provider/README.rst

55 lines
2.2 KiB
ReStructuredText
Raw Normal View History

2015-01-13 04:34:13 +00:00
2015-02-18 18:07:22 +00:00
Django OIDC Provider
2015-02-13 00:14:37 +00:00
####################
2015-07-06 16:04:07 +00:00
.. image:: https://img.shields.io/pypi/pyversions/django-oidc-provider.svg
2015-07-06 16:58:50 +00:00
:target: https://pypi.python.org/pypi/django-oidc-provider
2015-07-06 16:04:07 +00:00
2015-06-15 14:40:56 +00:00
.. image:: https://img.shields.io/pypi/v/django-oidc-provider.svg
:target: https://pypi.python.org/pypi/django-oidc-provider
2015-06-09 00:24:41 +00:00
.. image:: https://travis-ci.org/juanifioren/django-oidc-provider.svg?branch=master
2015-06-09 00:22:19 +00:00
:target: http://travis-ci.org/juanifioren/django-oidc-provider
2015-06-08 17:57:23 +00:00
2015-06-09 19:53:29 +00:00
.. image:: https://img.shields.io/pypi/dm/django-oidc-provider.svg
2015-06-15 14:40:56 +00:00
:target: https://pypi.python.org/pypi/django-oidc-provider
2015-06-09 19:53:29 +00:00
2015-07-06 15:59:36 +00:00
************
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. `Google <https://developers.google.com/identity/protocols/OpenIDConnect>`_ is a good example of an OpenID Provider.
*****************
About the package
*****************
2014-12-19 15:27:43 +00:00
2015-02-26 19:51:54 +00:00
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.
2015-02-20 17:33:18 +00:00
2015-07-01 20:53:28 +00:00
Support for Python 3 and 2. Also latest versions of django.
2015-07-02 17:54:43 +00:00
Read docs for more info.
2015-01-29 19:19:48 +00:00
2015-09-25 20:24:58 +00:00
https://github.com/juanifioren/django-oidc-provider/blob/v0.2.0/DOC.md
2015-06-30 20:03:53 +00:00
2015-03-06 20:50:10 +00:00
See changelog here.
https://github.com/juanifioren/django-oidc-provider/blob/master/CHANGELOG.md
2015-03-05 18:51:05 +00:00
2015-08-11 20:37:33 +00:00
****************
Examples running
****************
2015-08-11 20:43:01 +00:00
* **BAID** by Government of Buenos Aires City. (`view site <https://id.buenosaires.gob.ar/>`_)
2015-08-11 20:37:33 +00:00
* **Example OIDC provider** by Juan Ignacio Fiorentino. (`view site <http://openid.juanifioren.com/>`_)
2015-01-29 19:19:48 +00:00
************
Contributing
************
2015-07-31 16:06:00 +00:00
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.
2015-07-31 18:22:44 +00:00
* Add tests for it inside :code:`oidc_provider/tests`. Then run all and ensure everything is OK (read docs for how to test in all envs).
2015-09-25 20:24:58 +00:00
* Send pull request to the specific version branch.