gituser/production/: django-otp-0.9.3 metadata and description

Homepage Simple index

A pluggable framework for adding two-factor authentication to Django using one-time passwords.

author Peter Sagerson
author_email psagers@ignorare.net
classifiers
  • Development Status :: 5 - Production/Stable
  • Framework :: Django
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3 :: Only
  • Topic :: Security
  • Topic :: Software Development :: Libraries :: Python Modules
license BSD
project_urls
  • Documentation, https://django-otp-official.readthedocs.io/
  • Source, https://github.com/django-otp/django-otp
provides_extras qrcode
requires_dist
  • django (>=1.11)
  • qrcode ; extra == 'qrcode'
File Tox results History
django_otp-0.9.3-py3-none-any.whl
Size
52 KB
Type
Python Wheel
Python
3
PyPI Documentation Source

This project makes it easy to add support for one-time passwords (OTPs) to Django. It can be integrated at various levels, depending on how much customization is required. It integrates with django.contrib.auth, although it is not a Django authentication backend. The primary target is developers wishing to incorporate OTPs into their Django projects as a form of two-factor authentication.

Several simple OTP plugins are included and more are available separately. This package also includes an implementation of OATH HOTP and TOTP for convenience, as these are standard OTP algorithms used by multiple plugins.

If you’re looking for a higher-level or more opinionated solution, you might be interested in django-two-factor-auth.

Status

This project is stable and maintained, but is no longer actively used by the author. Well-formed pull requests are welcome. Anyone interested in taking over aspects of the project should contact me.

Development

Development dependencies are defined in the Pipfile; use pipenv to set up a suitable shell.

The tests in tox.ini cover a representative sample of supported Python and Django versions, as well as running flake8 and isort for linting and style consistency. Please run tox before checking in and sending a pull request.