Full featured user app with built-in verification and activity stream
Project description
Accounts is a Django app handles essential user security
Email verification upon register
Phone is enforced and mandatory “handled by Twilio sms service”
Device access location “handled by geoip2 and maxmind db”
Activity stream for user access
Indeed it is opinionated user app as follows:
User class is AbstractUser has a Profile foreign key
Profile with has fields like photo and date_of_birth
Check the docs for deep details.
Quick start
Add “accounts” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'accounts', ] TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': ['accounts/templates'], ... }]
Include the accounts URLconf in your project urls.py like this:
path('accounts/', include(('accounts.urls', 'accounts'), namespace='auth'))
Note: mind the namespace as it is used in templates and testing.
Set mandatory settings:
# refers to the user model AUTH_USER_MODEL = 'accounts.User' MEDIA_ROOT = os.path.join(BASE_DIR, "media") MEDIA_URL = '/media/' # this is on-demand auth backends AUTHENTICATION_BACKENDS = [ 'accounts.authentication.EmailAuthBackend', 'accounts.authentication.PhoneAuthBackend', 'accounts.authentication.UsernameAuthBackend', ] # your favorite email backend # just for testing it is set to console EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # maxmind db required # follow https://docs.djangoproject.com/en/3.1/ref/contrib/gis/geoip2/ GEOIP_PATH = os.path.join(BASE_DIR, 'path/to/maxmind/db') # Twilio required sms validation # get keys from https://www.twilio.com/ TWILIO_API_KEY = "" TWILIO_AUTH_TOKEN = "" TWILIO_PHONE_NUMBER = ""
Run python manage.py migrate to create the accounts models.
Start the development server and visit http://127.0.0.1:8000/accounts/login/
Full documentation on https://django-secured-accounts.readthedocs.io/
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
Built Distribution
File details
Details for the file django-secured-accounts-1.0.2.tar.gz
.
File metadata
- Download URL: django-secured-accounts-1.0.2.tar.gz
- Upload date:
- Size: 17.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4c482431d0a27c2d1ff010b057cb8ba7aabddc8005f57437f5c3562d148604c |
|
MD5 | 40218592babd01e22ed551b456deb1ef |
|
BLAKE2b-256 | 413c4bd1078c3bdfeac059da72d442c191dff52e2dea595ee1a3fd846a862806 |
File details
Details for the file django_secured_accounts-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: django_secured_accounts-1.0.2-py3-none-any.whl
- Upload date:
- Size: 41.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e85b8dbcc16cc76fbbab7e4e06c6edfd65c910f3fcd7a5f2e5013d3695a3627d |
|
MD5 | 982952a462929a10334b5a01ad4f8f2c |
|
BLAKE2b-256 | 8b211fb8dd2df57a4d84fee0727fd936e0ee73eacd212e5944ebdeb0457bf483 |