Skip to main content

Authentication backend for django that uses email verification instead of passwords

Project description

https://travis-ci.org/relekang/django-nopassword.svg?branch=master

Installation

Run this command to install django-nopassword:

pip install django-nopassword

Requirements

Django >= 1.4 (1.5 custom user is supported)

Usage

Add the app to installed apps:

INSTALLED_APPS = (
    'nopassword',
)

Set the authentication backend to EmailBackend:

AUTHENTICATION_BACKENDS = ( 'nopassword.backends.EmailBackend', )

Add urls to your urls.py:

urlpatterns = patterns('',
    url(r'^accounts/', include('nopassword.urls')),
)

Tests

Run with:

python setup.py test

To run with sqlite add:

USE_SQLITE = True

in tests/local.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-nopassword-1.0.0.tar.gz (20.0 kB view hashes)

Uploaded Source

Built Distribution

django_nopassword-1.0.0-py2.py3-none-any.whl (25.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page