Metadata-Version: 2.1
Name: pvault
Version: 1.1.2a0
Summary: A password manager package
Home-page: https://github.com/oluwafenyi/password-vault
Author: oluwafenyi
Author-email: o.enyioma@gmail.com
License: MIT
Download-URL: https://pypi.org/project/pvault/
Keywords: password crypto management
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: cryptography (==2.7)
Requires-Dist: pyAesCrypt (==0.4.3)
Requires-Dist: pyperclip (==1.7.0)

## password-vault - pv.py
A windows only script that manages and generates passwords from the command line, passwords are stored in a sqlite db.
***
#### How to Install
`pip install pvault==1.1.1a0`

#### Basic Usage

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

Generate random password:  
    `pv generate`

Access stored account password:  
    `pv account [accountname]`

Get list of all stored account passwords:  
    `pv accounts`

Save password manually:  
    `pv save [accountname]`

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

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

Delete account password:  
    `pv delete [accountname]`

Delete all accounts:  
    `pv delete`



