This is an application to store website address, username, and password.
- pip install -r requirement.txt
- python -m --help -> to know
- pip install -r requirement.txt
- python setup.py bdist_wheel sdist
- pip install .
python -m pypass --help
python -m pypass init
python -m pypass add <username> -p <password> -w <website_url>
python -m pypass get
python -m pypass delete <id>
python -m pypass update <id> -u <username> -p <password> -w <website>
- How to know the requirement of the command?
- just use --help parameter after the command name, example:
python -m pypass <command> --help
- Export and Import.
- Finish Unittesting.
- Making the stored password can be toggled between encrypted and unencrypted.