🔑

OTP Generator

Python73 lines· Generates one-time passwords (OTPs) of a given length. The Otp class can produce OTPs made of digits only, digits with uppercase letters, digits wi…
Original project by @iamdestinychild — view source on GitHub
Ready when you are
README· what to build

OTP Generator

Generates one-time passwords (OTPs) of a given length. The Otp class can produce OTPs made of digits only, digits with uppercase letters, digits with lowercase letters, or all three combined.

Example

OTP:7392841650

Running otpGen.py directly prints a 10-digit numeric OTP generated by Otp(10).digits.

How to run on localhost

python otpGen.py

Dependencies

Standard library only (random).

otp-generator.py· Python 3.x
76 lines
Console· terminal