Metadata-Version: 2.1
Name: p3man
Version: 0.1.2
Summary: Password manager. Manage your passwords as simple as 1, 2, 3
Home-page: https://github.com/curtisjhu/p3man
Author: curtis
Author-email: curtis.hu688@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: cryptography (>=37.0.4,<38.0.0)
Project-URL: Repository, https://github.com/curtisjhu/p3man
Description-Content-Type: text/markdown

# p3man
The password manager as simple as 1, 2, 3

### Keep. It. Simple. Secure. (KISS)

```
Usage: p3man [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  add     Add (username) and (password) for an account
  get     Retrieves password from account.
  list    List accounts in database (hashed).
  remove  Remove an account
  reset   Reset your master password.
  setup   Setup up your account and master password
  update  Update password for an account.
  wipe    Removes all data, all passwords from device (irreversable)
```

### Security

Your master password is hashed via python's cryptography's Scrypt.
Your accounts encrypted using the <em>original</em> password.
![](workflow.png)



