django-auth-network-client

Django Auth Network (DAN) is a set of two packages that create Google and Facebook-style authentication, but using your own provider instead of Google or Facebook. This is the client package, and it allows an app to connect to your provider package.


Keywords
django-auth-network-client
License
BSD-3-Clause
Install
pip install django-auth-network-client==0.2.7

Documentation

Django Auth Network Client

https://travis-ci.org/antoningrele/django-auth-network-client.svg?branch=master

Django Auth Network (DAN) is a set of two packages that create Google and Facebook-style authentication, but using your own provider instead of Google or Facebook. This is the client package, and it allows an app to connect to your provider package.

Documentation

The full documentation is at https://django-auth-network-client.readthedocs.io.

Quickstart

Install Django Auth Network Client:

pip install django-auth-network-client

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_auth_network_client.apps.DjangoAuthNetworkClientConfig',
    ...
)

Add Django Auth Network Client's URL patterns:

from django_auth_network_client import urls as django_auth_network_client_urls


urlpatterns = [
    ...
    url(r'^', include(django_auth_network_client_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: