OBytes django application for managing OTP (OneTruePairing) for authentication, registration and changing phone number.
Project description
OBytes Django OTP App
OTP is a Django app to conduct Web-based one true pairing, for authentication, registration and changing phone number.
Quick start
-
Install
ob_dj_otp
latest versionpip install ob_dj_otp
-
Add "ob_dj_otp" to your
INSTALLED_APPS
setting like this:
# settings.py
INSTALLED_APPS = [
...
"ob_dj_otp.core.otp",
]
- Include the OTP URLs in your project urls.py like this::
# urls.py
path("otp/", include("ob_dj_otp.apis.otp.urls")),
- Run
python manage.py migrate
to create the otp models.
Configuration
OTP_FORCE_CODE
Force using this code instead of generating random one, by default it's not setted
OTP_RETURN_USAGE
Boolean that determine whether you want to usage in the response, by default is False
OTP_TIMEOUT
Number of seconds for the code expirations, by default it's 3 minuts
OTP_USER_SERIALIZER
For the registration purpuse, you need to specify th path to you user serializer so you can create the user with full data
OTP_AUTH_USAGE_ONLY
Boolean that deactivate the registration
OTP_EMAIL_AS_PRIMARY_FIELD
Boolean to make email required
OTP_PHONE_NUMBER_AS_PRIMARY_FIELD
Boolean to make phone number required
SERIALIZERS_MIXIN
Dict contain mixins paths to customize serializers behavior ( see tests for better overview)
Notifications
Since each project need it custom provider, the notification part should be sone on the project level not the package level, and it can be done easely but post_save
on OneTruePairing
model.
Developer Guide
-
Clone github repo
git clone [url]
-
pipenv install --dev
-
pre-commit install
-
Run unit tests
pytest
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 ob-dj-otp-0.0.27.tar.gz
.
File metadata
- Download URL: ob-dj-otp-0.0.27.tar.gz
- Upload date:
- Size: 55.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b44fe20d49ee876d5c3df8cb9d12fa6b7a4afde480f7ab2a0156aa21e418786c |
|
MD5 | 321e36a73bd9e1363ea6aa15a8eb2e34 |
|
BLAKE2b-256 | 61456ff8f8895ec4e8ff5182d8f0e0a96fab60e26869ef9beb5f0729eebb56c5 |
File details
Details for the file ob_dj_otp-0.0.27-py3-none-any.whl
.
File metadata
- Download URL: ob_dj_otp-0.0.27-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c38cdb9d7f4fafe9c1dbddccb0407d9d244c81bc15ab53efda8035cb08e5cc98 |
|
MD5 | 8721e2fa3ac016baf40f6ca52a950dbb |
|
BLAKE2b-256 | 63ee74d698d3ffd54cb19647eeff91fc20a4883a4a267add771204ed71cb4111 |