django-stagedoor
Easy email or SMS based login for Django
Installation
-
Add
stagedoortoINSTALLED_APPSINSTALLED_APPS = [ "django.contrib.admin", "django.contrib.auth", "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", "django.contrib.sites", "stagedoor", ... ]
-
Add the authentication backends. Make sure to keep
ModelBackendfor the admin loginAUTHENTICATION_BACKENDS = ( "stagedoor.backends.EmailTokenBackend", "stagedoor.backends.SMSTokenBackend", "django.contrib.auth.backends.ModelBackend", )
-
Add urls
urlpatterns = [ path("admin/", admin.site.urls), path("auth/", include("stagedoor.urls", namespace="stagedoor")), ... ]
Features
- Email-based login with token links
- SMS-based login with one-time codes (via Twilio)
- Admin approval workflow (optional)
- Single-use token support
- Customizable templates and styling
- Support for Django 5.2+
- Management command to clean up stale tokens (
python manage.py cleanup_stale_tokens)
Configuration
See stagedoor/settings.py for available configuration options.
Security Considerations
- Tokens expire after a configurable duration (default: 30 minutes)
- Rate limiting available (via optional django-ratelimit)
- Tokens are generated using cryptographically secure randomness
- Email and SMS delivery should be verified for security
Usage Examples
Cleanup stale tokens
python manage.py cleanup_stale_tokens
Basic usage
In your views:
from stagedoor.services import create_login_token
def login_view(request):
# Create a token for user
token = create_login_token(request, email="user@example.com")
# Send the token via email
# ... email sending logic here
return redirect("token_post_page")
Release files for django-stagedoor 0.3.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_stagedoor-0.3.1.tar.gz | 15.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_stagedoor-0.3.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 35.3 kB
Release files / django_stagedoor-0.3.1.tar.gz
| Download URL | django_stagedoor-0.3.1.tar.gz |
|---|---|
| Size | 15.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dce0870adf113e4f8392f0064bf0e3d1c65d863ba2d621e1ce43ce30c2623d80
|
|
BLAKE2b-256 checksum How to use checksums |
0e65ac05e20c7e67c3c2824ce2d3065cf139b8cbe982e92d6fc3b501180ff299
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 2, 2026.
Transparency logRelease files / django_stagedoor-0.3.1-py3-none-any.whl
| Download URL | django_stagedoor-0.3.1-py3-none-any.whl |
|---|---|
| Size | 20.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3ee7211b80eaedb6d4798ffdca3024c51a6114efa5a35e7b65d71a6e55a7286f
|
|
BLAKE2b-256 checksum How to use checksums |
ec48a9091744f346e79b427f474d0252227267273433b4c5b207b380f352e4f1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 2, 2026.
Transparency log