Skip to content

Simple TOTP Program using Python.

License

Notifications You must be signed in to change notification settings

Byteintosh/Simple-TOTP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple-TOTP

This repository contains the code for a simple Time-based One-Time Password (TOTP) generator.

Usage

  1. Install the required dependencies by running pip install pyotp.
  2. Add secret and password in secret key password here
  3. Run the main.py script to generate a TOTP.

Build to exe

  1. Install pyinstaller by running pip install pyinstaller
  2. Build by running pyinstaller main.py --onefile --noconsole

License

This project is licensed under the MIT License. See the LICENSE file for more information.

Acknowledgements

Special thanks to the developers of pyotp for providing the library used in this project.