Skip to main content

django-unique-user-email

Project description

django-unique-user-email

Enable login-by-email with the default User model for your Django project by making auth.User.email unique.

A quick note on why?

Django's leaky battery is its recommendation that you create a custom user model. Auth is so central and so standard that, into the high-nines (99.99%?), the vast majority of projects should never need to customise the central auth model. This is a battery that Django should very much provide.

There's a complexity tax from exposing the auth model. There's a performance tax as the auth model becomes a generic dumping ground for User related data that has nothing to do with authentication. There's a learning tax as users hit the custom user model, and the (frankly, misplaced) warnings about it's importance.

Again, the vast majority of projects should never need to customise the central auth model.

Can I login with my email?

Most projects, all folks wanted was login-by-email. By making the default auth.User model have unique email field, and a few other bits and bobs, this is enabled.

The goal of this package is to give you the tools you need for login-by-email with Django's default User model. I believe this should be a option in Django itself, so it's a proof-of-concept for a future discussion there too.

A longer discussion, Coming Soon

Overview

  • Install from pip:

      pip install django-unique-user-email
    
  • Add to INSTALLED_APPS

      INSTALLED_APPS = [
          "django.contrib.admin",
          "django.contrib.auth",
          "django.contrib.contenttypes",
          "django.contrib.sessions",
          "django.contrib.messages",
          "django.contrib.staticfiles",
    
          "unique_user_email",
          ...
      ]
    
  • Migrate to add the unique constraint to User.email.

  • Install auth backend to allow email login

      AUTHENTICATION_BACKENDS = [
          'unique_user_email.backend.EmailBackend',
          'django.contrib.auth.backends.ModelBackend',
      ]
    
  • Use the custom AuthenticationForm to login with username or email.

      # urls.py
      from django.contrib.auth.views import LoginView
      from unique_user_email.forms import AuthenticationForm
    
      urlpatterns = [
          # Route LoginView before other auth views to match first.
          # https://docs.djangoproject.com/en/dev/topics/auth/default/#module-django.contrib.auth.views
          path(
              "accounts/login/",
              LoginView.as_view(form_class=AuthenticationForm),
              name="login",
          ),
          ...
      ]
    

Fuller tutorial, Coming Soon.

Testing

  • Clone the repo, create a virtual environment, and pip install -e . the package.

  • You can run with just test.

    This wraps the full command:

      django-admin test --settings=tests.settings --pythonpath=.
    

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-unique-user-email-23.1.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

django_unique_user_email-23.1-py2.py3-none-any.whl (6.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-unique-user-email-23.1.tar.gz.

File metadata

File hashes

Hashes for django-unique-user-email-23.1.tar.gz
Algorithm Hash digest
SHA256 5f797c8fd476c702fbeb95746fd6e837208478b11f747834318c48a2d7501de3
MD5 067abb834624e3f80bf31a4f2b93d667
BLAKE2b-256 a603be0b69d9eb85e2c796c08fdc3b526b3497781955da83166de736b6336bc0

See more details on using hashes here.

File details

Details for the file django_unique_user_email-23.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_unique_user_email-23.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1dd475c0bd812a7218febb216b332dec07d9bd40f13dff0b84f6a7910f3c7529
MD5 0a58bd89ca6846289cfc5157c1f65963
BLAKE2b-256 c1f147372bd76ed2fa2396ea28008a01fb21c282be093c64c6e1732f6de29874

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page