A package for generating and authenticating OTPs using MongoDB.
Project description
AuthoRex
AuthoRex is a Python package for generating and authenticating OTPs (One-Time Passwords) using MongoDB for storage. This package is useful for applications that require secure OTP-based authentication.
Features
- Generate OTPs.
- Authenticate OTPs.
- Uses MongoDB for storing OTPs securely.
Installation
You can install AuthoRex using pip:
pip install AuthoRex
Usage
Importing the package
You can import the entire package or specific functions:
import AuthoRex
# Or import specific functions
from AuthoRex import genOTP, authOTP
Generating an OTP
Generate an OTP for a given number:
# Using the package import
print(AuthoRex.genOTP("123"))
# Using the function import
print(genOTP("123"))
Authenticating an OTP
Authenticate an OTP for a given number:
# Using the package import
print(AuthoRex.authOTP("123", 123456)) # Replace 123456 with the actual OTP generated
# Using the function import
print(authOTP("123", 123456)) # Replace 123456 with the actual OTP generated
Example
Here's a complete example of how to use AuthoRex:
import AuthoRex
# Generate OTP for a number
response = AuthoRex.genOTP("123")
print(response)
# Authenticate OTP for the same number
is_authenticated = AuthoRex.authOTP("123", 123456) # Replace 123456 with the actual OTP generated
print("Authenticated" if is_authenticated else "Authentication Failed")
MongoDB Configuration
AuthoRex uses MongoDB to store OTPs. Make sure you have a MongoDB instance running and update the MongoDB URI in the code as per your setup.
License
This project is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. See the LICENSE file for more details.
Author
AuthoRex is developed and maintained by TraxDinosaur. For any queries or support, you can reach out to TraxDinosaur.
Contributing
Contributions are welcome! Please fork the repository and submit a pull request for any improvements or bug fixes.
Acknowledgements
- The package uses pymongo for MongoDB interactions.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file AuthoRex-1.0.2-py3-none-any.whl.
File metadata
- Download URL: AuthoRex-1.0.2-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35424e6716f2a22674082fe8227e7c2545cafd71bdcc4eeb4cb86490d90b96b7
|
|
| MD5 |
9c6c0381926ca093bda5693d2043ad36
|
|
| BLAKE2b-256 |
4ae7655950e9849d6c5109947eb8ff229393ea91dd75c4477c6914422045faae
|