This repository contains the code for a simple Time-based One-Time Password (TOTP) generator.
- Install the required dependencies by running
pip install pyotp
. - Add secret and password in
secret key
password here
- Run the
main.py
script to generate a TOTP.
- Install pyinstaller by running
pip install pyinstaller
- Build by running
pyinstaller main.py --onefile --noconsole
This project is licensed under the MIT License. See the LICENSE file for more information.
Special thanks to the developers of pyotp for providing the library used in this project.