Metadata-Version: 2.1
Name: TotpApp
Version: 0.0.3
Summary: 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
Home-page: https://github.com/mauricelambert/TotpApp
Download-URL: https://mauricelambert.github.io/info/python/security/TotpApp.pyz
Author: Maurice Lambert
Author-email: Maurice Lambert <mauricelambert434@gmail.com>
Maintainer: Maurice Lambert
Maintainer-email: Maurice Lambert <mauricelambert434@gmail.com>
License: GPL-3.0 License
Project-URL: Github, https://github.com/mauricelambert/TotpApp
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/TotpApp.html
Project-URL: Python Executable, https://mauricelambert.github.io/info/python/security/TotpApp.pyz
Project-URL: Windows Executable, https://mauricelambert.github.io/info/python/security/TotpApp.exe
Keywords: TOTP,application,password,authentication,2FA,MFA,tkinter
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: Security
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

![TotpApp Logo](https://mauricelambert.github.io/info/python/security/TotpApp_small.png "TotpApp logo")

# 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/).
