Store and access your passwords in a fancy way.
The program will store your password information in your device and you can access it through a system command.
-
Clone or download the repository.
git clone https://github.com/eSmooothie/pass-storage-py.git
-
Install python.
-
Add <project_path>/pass-storage-py/ to your system PATH.
-
Run the command below in the command prompt.
mypass
Command/Usage | Description |
---|---|
mypass -h |
Display help |
mypass add |
Add new data |
mypass view -a/--all |
Display all stored data |
mypass view -r/ref REFERENCE |
Display full detail of the data |
mypass view -r/ref REFERENCE --show |
Display full detail of the data and decrypt password |
mypass view -a --limit NUMBER |
Total number of data to be display. (default: 3) |
mypass view -a --offset NUMBER |
Starting number of data to be display. (default: 0) |
mypass view -a --limit 4 --offset 1 |
Display only 4 data startin from 1 |
mypass view -h |
Display view help options |
mypass search -u KEYWORD |
Filter data by username based on provided keyword |
mypass search -n KEYWORD |
Filter data by name based on provided keyword |
mypass search -p KEYWORD |
Filter data by password based on provided keyword |
mypass search -u KEYWORD -n KEYWORD |
Filter data by username and name based on provided keyword |
mypass search -u KEYWORD --limit NUMBER |
Total number of data to be display. (default: 3) |
mypass search -u KEYWORD --offset NUMBER |
Starting number of data to be display. (default: 0) |
mypass search -h |
Display search help option. |
mypass rmv -r/--ref REFERENCE |
Remove data based on REFERENCE ID. |
mypass rmv -a/--all |
Remove all data. |
mypass rmv -h |
Display remove help option. |