Django simple account
Requirements
Python 3.6+
A supported version of Django (currently 3.x)
Getting It
You can get Django simple account by using pip:
$ pip install django-simple-account
If you want to install it from source, grab the git repository from GitHub and run setup.py:
$ git clone git://github.com/kostya-ten/django_simple_account.git $ cd django_simple_account $ python setup.py install
Installation
To enable django_simple_account in your project you need to add it to INSTALLED_APPS in your projects settings.py
INSTALLED_APPS = (
# ...
'django_simple_account',
# ...
)
Enable context_processors
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# ....
'django_simple_account.context_processors.settings',
],
},
},
]
Add urls.py in project
urlpatterns = [
# ...
path('accounts/', include('django_simple_account.urls')),
]
Release files for django-simple-account 0.0.18
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-simple-account-0.0.18.tar.gz | 896.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_simple_account-0.0.18-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.8 MB
Release files / django-simple-account-0.0.18.tar.gz
| Download URL | django-simple-account-0.0.18.tar.gz |
|---|---|
| Size | 896.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
31fbdfa3b8c7d692c1ce3d8a09969155061f63d3fdbd9d2ab396693402c22843
|
|
BLAKE2b-256 checksum How to use checksums |
23dd0c021382247b57909e1dec6b5c0795e7c57b39cf75caffa5b2e6f5be50e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
|
Release files / django_simple_account-0.0.18-py3-none-any.whl
| Download URL | django_simple_account-0.0.18-py3-none-any.whl |
|---|---|
| Size | 905.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5fa52fbe2785bb8e4ba01107e751540715e55507ec089f6ee59dd5c951e534e2
|
|
BLAKE2b-256 checksum How to use checksums |
ac5aceb8e8f3efe03d045d4a0a05b86fdff819550789c33bf6cfa99f36219274
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
|