A command-line interface tool for handling credentials. Currently implements storing and comparing with a database.
- Free software: GNU General Public License v3
Clone the repository:
$ git clone https://github.com/Synrom/credentials_tool.git
Go to the root folder of the project and execute:
$ python setup.py install
Now you can execute the tool using:
$ credentials_tool -h
read data from a file and match it with a database:
$ credentials_tool -mf file1 file2 -db database.db
read data from a command line arguments and match it with a database:
$ credentials_tool -mi "[email protected]:password1" "[email protected]:password2" -db database.db
read data from a file and insert it into a database:
$ credentials_tool -if file1 file2 -db database.db
the CLI is built in a way to support all functionalities at the same time:
$ credentials_tool -if insertfile1 insertfile2 -mf matchfile1 matchfile2 -mi "[email protected]:password1" -db database.db
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.