smart-2fa-secure

PyPI Package v0.2.3

0.2.3 Python
pip install smart-2fa-secure

Package Details

View on PyPI

Summary

Advanced Two-Factor Authentication system with enhanced security features.

Description

Smart 2FA Security System v0.2.3


Advanced Two-Factor Authentication system with enhanced security features.


Python Version
License
Security

GitHub top language
GitHub release (latest by date)
GitHub
GitHub Repo stars
GitHub watchers
GitHub forks
PyPI - Downloads
PyPI
PyPI - Format

Key Security Features

  • 🔐 Complex Code Generation:
  • Supports ASCII letters, digits and special characters
  • Customizable code length (default: 6)

  • Flexible Expiration:

  • Adjustable TTL (Time-To-Live) for codes
  • Default 60 seconds expiration

  • 📱 Secure Delivery:

  • Telegram integration with customizable message templates

Installation

pip install smart-2fa-secure

Advanced Usage

from smart_2fa_secure import Smart2FA
from smart_2fa_secure.exceptions import InvalidCodeError

smart_2fa = Smart2FA(
  redis_host="localhost",
  redis_port=6379,
  telegram_token="YOUR_BOT_TOKEN",
  code_ttl=60,
  max_attempts=3,
  code_length=6,
)
code = smart_2fa.send_code(user_id="user1", recipient="1234567", message="Your code:")

# Verify with complex code
try:
    smart_2fa.verify_code("user123", "A1b2@#")
    print("Authentication successful!")
except InvalidCodeError:
    print("Invalid security code!")

💻 Information for developers:

  • pip install pytest
  • pip install pytest-cov
  • pip install setuptools
  • pip install wheel
  • pip install build
  • pip install twine

  • pytest tests/ -v

  • pytest tests/ -v --cov=smart_2fa_secure --cov-report=html
  • python -m build or python setup.py sdist bdist_wheel
  • twine upload dist/*

LOGO


Disclaimer of liability:

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

--------------------------------------------------------
Licensed under the terms of the BSD 3-Clause License
(see LICENSE for details).
Copyright © 2018-2025, A.A. Suvorov
All rights reserved.
--------------------------------------------------------