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.
Project description
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:
History
0.1.0 (2017-07-04) 0.2.0 (2017-07-23) ++++++++++++++++++
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-auth-network-client-0.2.7.tar.gz
.
File metadata
- Download URL: django-auth-network-client-0.2.7.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f30589c31cd384b59dc93fa13695ebbd3dee7ed97dd23f3bd70294f5cfbce8f0 |
|
MD5 | c1836adb753d7d879561d97728898fd6 |
|
BLAKE2b-256 | 61f5e1c124e6b855d1f242ae3a0f170855a43950fd73c8a3a306823ef4050ff1 |