https://github.com/mauricelambert/totpapp
This little app generates your TOTP from your secret (you can use secret as password in a password manager), you don't need any phone or other device
https://github.com/mauricelambert/totpapp
2fa application authentication mfa password tkinter totp
Last synced: 11 months ago
JSON representation
This little app generates your TOTP from your secret (you can use secret as password in a password manager), you don't need any phone or other device
- Host: GitHub
- URL: https://github.com/mauricelambert/totpapp
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2024-12-02T13:58:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-23T21:31:07.000Z (over 1 year ago)
- Last Synced: 2024-12-23T22:26:28.653Z (over 1 year ago)
- Topics: 2fa, application, authentication, mfa, password, tkinter, totp
- Language: Python
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

# TotpApp
## Description
This little app generates your TOTP from your secret (you can use
secret as password in a password manager), you don't need any phone or
other device
## Requirements
This package require:
- python3
- python3 Standard Library
## Installation
### Pip
```bash
python3 -m pip install TotpApp
```
### Git
```bash
git clone "https://github.com/mauricelambert/TotpApp.git"
cd "TotpApp"
python3 -m pip install .
```
### Wget
```bash
wget https://github.com/mauricelambert/TotpApp/archive/refs/heads/main.zip
unzip main.zip
cd TotpApp-main
python3 -m pip install .
```
## Usages
### Command line
```bash
TotpApp # Using CLI package executable
python3 -m TotpApp # Using python module
python3 TotpApp.pyz # Using python executable
TotpApp.exe # Using python Windows executable
```
### Python script
```python
from TotpApp import *
root = Tk()
app = TotpApp(root)
root.mainloop()
```
## Links
- [Pypi](https://pypi.org/project/TotpApp)
- [Github](https://github.com/mauricelambert/TotpApp)
- [Documentation](https://mauricelambert.github.io/info/python/security/TotpApp.html)
- [Python executable](https://mauricelambert.github.io/info/python/security/TotpApp.pyz)
- [Python Windows executable](https://mauricelambert.github.io/info/python/security/TotpApp.exe)
## License
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).