Simple password-only protection
Project description
- Info:
Super simple password protection for limiting public access to pages and assets
- Version:
- 0.2.1
Django Simple Auth is a secondary authentication system for protecting any URLs served by your application from public access. It does not replace your authentication system. Rather its purpose is to provide very simple a simple password for non-public information like shared photo galleries.
Installing
First add the application to your Python path. The easiest way is to use pip:
pip install django-simple-auth
As of version 0.2.0 this is only tested against Django 1.11+ and is probably compatible with Django 1.10 but this has not been tested.
Configuring
Make sure you have django.contrib.auth installed, and add the simple_auth application to your INSTALLED_APPS list:
INSTALLED_APPS = [ ... 'django.contrib.auth', 'simple_auth', ]
Next add simple_auth.urls to your project URLs.:
... url(r'^protect/', include('simple_auth.urls')),
If you want to enable default rule-based limits on your site, install the SimpleAuthMiddleware:
MIDDLEWARE = [ ... 'simple_auth.middleware.SimpleAuthMiddleware', ]
By default this will require a password for all URLs except for URLs prefaced with /admin/. These URLs can be overridden using protect and ignore settings.:
SIMPLE_AUTH_IGNORE = [ r'^admin/, r'^$', ] SIMPLE_AUTH_PROTECT = [ r'^forums/' r^blog/', r^secret_page.html$', ]
If a URL is listed in both the ignore and protect lists the default will be to protect the URL and simple_auth will emit a warning.
Usage overview
There are two ways to protect pages and assets: view decorators and middleware.
These methods will always allow authenticated users to access the URL.
Middleware
To enable the middleware install the middleware class as described in the installation section.
Individual views
Note: not implemented yet.
For function views:
from simple_auth import simple_auth_required @simple_auth_required def myview(request): ...
For class-based views:
from simple_auth import SimpleAuthMixin class MyView(SimpleAuthMixin, DetailView): ...
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
Built Distribution
File details
Details for the file django-simple-auth-0.2.1.tar.gz
.
File metadata
- Download URL: django-simple-auth-0.2.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7540e293cc542ac1f6d4c8b35c75bb042a3517ca67a0c0137ca65dd908054e0 |
|
MD5 | 6e4adf92a99e8dc5b7fb7ceb55825323 |
|
BLAKE2b-256 | 7059aa1afae1fb067fabeae5da1505398b549af69fc07dda30df9910d4811226 |
File details
Details for the file django_simple_auth-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_simple_auth-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f5730bed80bb7a7526466ff502814fae1b6e5f76fb59678d86155c30560581c |
|
MD5 | 701989eb977f57ea3bf00e72e37a64f2 |
|
BLAKE2b-256 | b090a554ee22ce4f005b32edbb524181e29528ad5ab3271b7406e83cf3039ecd |