Metadata-Version: 2.1
Name: pvault
Version: 1.0.4a0
Summary: A password manager package
Home-page: https://github.com/oluwafenyi/password-vault
Author: oluwafenyi
Author-email: o.enyioma@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pyperclip (==1.7.0)

## password-vault - pv.py
A script that manages and generates passwords from the command line, passwords are stored in a sqlite db.
***

#### Basic Usage

Generate random password for an account:  
    `python pv.py generate [accountname]`

Generate random password:  
    `python pv.py generate`

Access stored account password:  
    `python pv.py account [accountname]`

Get list of all stored account passwords:  
    `python pv.py accounts`

Save password manually:  
    `python pv.py save [accountname]`

Update password by random generation:  
    `python pv.py generate [accountname]`

Update password by manual entry:  
    `python pv.py save [accountname]`

Delete account password:  
    `python pv.py delete [accountname]`

Delete all accounts:  
    `python pv.py delete`



