Skip to main content

Django authentication via login URLs, no passwords required

Project description

version Documentation Status ci coverage license

screenshot from a login form

Django Mail Auth is a lightweight authentication backend for Django, that does not require users to remember passwords.

Django Mail Auth features:

  • custom user model support

  • drop in Django admin support

  • drop in Django User replacement

  • extendable SMS support

This project was inspired by:

Installation

Run this command to install django-mail-auth:

pip install django-mail-auth

Setup

First add mailauth to you installed apps:

INSTALLED_APPS = [
    # Django's builtin apps…

    'mailauth',
    'mailauth.contrib.admin',  # optional
    'mailauth.contrib.user',  # optional

    # other apps…
]

mailauth.contrib.admin is optional and will replace the admin’s login with token based authentication too.

mailauth.contrib.auth is optional and provides a new Django User model. The new User model needs to be enabled via the AUTH_USER_MODEL setting:

AUTH_USER_MODEL = 'mailauth_user.EmailUser'

Next you will need to add the new authentication backend:

AUTHENTICATION_BACKENDS = (
    # default, but now optional
    # This should be removed if you use mailauth.contrib.user or any other
    # custom user model that does not have a username/password
    'django.contrib.auth.backends.ModelBackend',

    # The new access token based authentication backend
    'mailauth.backends.MailAuthBackend',
)

Django’s ModelBackend is only only needed, if you still want to support password based authentication. If you don’t, simply remove it from the list.

Last but not least, go to your URL root config urls.py and add the following:

from django.urls import path


urlpatterns = [
    path('accounts/', include('mailauth.urls')),
]

That’s it!

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-mail-auth-0.1.3.tar.gz (92.2 kB view details)

Uploaded Source

Built Distribution

django_mail_auth-0.1.3-py2.py3-none-any.whl (22.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-mail-auth-0.1.3.tar.gz.

File metadata

  • Download URL: django-mail-auth-0.1.3.tar.gz
  • Upload date:
  • Size: 92.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.1

File hashes

Hashes for django-mail-auth-0.1.3.tar.gz
Algorithm Hash digest
SHA256 62ef5af4bbf2bef51a7b581246dd8202254e0b650eff6554fb24b066daaeb27a
MD5 68e714c513fbde29e0119fa5cb4f4bd5
BLAKE2b-256 c2fce6b0fc8fb93a1238e3d8920271b2273d78cd9379f396f99fff7e204530cb

See more details on using hashes here.

File details

Details for the file django_mail_auth-0.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: django_mail_auth-0.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.1

File hashes

Hashes for django_mail_auth-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 54264c1d261f0c654ff78d62f46bc74b78c259e89b5906a07714bd1d87fb00d9
MD5 30e371d432b34dc422191a8cf941159e
BLAKE2b-256 90f0fc253099a668247fc4931edb7acd211d82e2257e3f42ef36fa2647db46b3

See more details on using hashes here.

Supported by

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