REST Multi-factor authentication package for Django
Project description
This is a fork from https://github.com/merixstudio/django-trench meant to be used with baseapp packages
E-mail
SMS / text
3rd party mobile apps
Features
Easily pluggable and compatible with django-rest-framework
Allows user to pick an additional authentication method from range of backends defined by a developer. Read more: backends
Comes out of a box with email, SMS, mobile apps and YubiKey support
Supported versions
Python 3.7, 3.8, 3.9, 3.10, 3.11
Django 2.0, 2.1, 2.2, 3.0, 3.1, 3.2, 4.0, 4.1
Django REST Framework 3.10, 3.11, 3.12, 3.13, 3.14
djangorestframework-simplejwt >= 4.3.0
Quick Start
Install the package using pip:
pip install django-trench
or add it to your requirements file.
Add trench library to INSTALLED_APPS in your app settings file:
INSTALLED_APPS = (
...,
'rest_framework',
'rest_framework.authtoken', # In case of implementing Token Based Authentication
...,
'trench',
)
Run migrations
Translation
Trench uses Transifex service to translate our package into other languages.
We will appreciate your help with translation.
https://www.transifex.com/merixstudio/django-trench/dashboard/
Local development
Clone the repo.
Crete virtual environment named e.g.
.venv
:virtualenv .venv
Activate the virtual environment:
source .venv/bin/activate
Install dependencies:
pip install black mypy pip install -r testproject/requirements.txt
Set environment variables:
export PYTHONPATH=./testproject export DJANGO_SETTINGS_MODULE=settings export SECRET_KEY=YOURsecretGOEShere
Create a symbolic link to the
trench/
module inside thetestproject/
directory to emulate thetrench
package being installed.# make sure you run this command from the root directory of this project ln -s $(pwd)/trench/ $(pwd)/testproject/trench
Check whether the tests are passing:
pytest --cov=testproject/trench testproject/tests/
Remember - anytime you change something in the django-trench
source code you need to re-build and re-install
the package (steps 6-7) for the changes to be present during e.g. running the tests.
- [OPTIONAL] To make the tests run faster you can try to execute them in parallel.
To do so you need to install the
pytest-xdist
package and run the tests with additional parameter of-n 8
where8
stands for the number of threads that will be spawned for executing the tests. Depending on the machine you’re using using this tool can speed up the test execution process up to 5 times.pytest -n 8 --cov=testproject/trench testproject/tests/
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 baseapp-django-trench-0.4.4.tar.gz
.
File metadata
- Download URL: baseapp-django-trench-0.4.4.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b76795a893b01b217484192d7c9777a0ec4864ac775d179808194ac55568474a |
|
MD5 | 08cf7a4177374dd9583fea039edcdc92 |
|
BLAKE2b-256 | 73261deadc720b5015879f491690eec9c269a684a137661ec84ee16ecff565d8 |
File details
Details for the file baseapp_django_trench-0.4.4-py3-none-any.whl
.
File metadata
- Download URL: baseapp_django_trench-0.4.4-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c751e0c5671d8dc0c50214e2ae08172c351034d3f1765d2f14b7c252552ef31a |
|
MD5 | dfecce4e9e8a504d158dfea77603d930 |
|
BLAKE2b-256 | f9387a59082733305f5d3056ecac167c67b9ba261e1a9abec0d24767e7fa83b9 |