Skip to content

Latest commit

 

History

History
49 lines (25 loc) · 845 Bytes

README.md

File metadata and controls

49 lines (25 loc) · 845 Bytes

one-key

CircleCI codecov

Command Line Key-Value Storage Application. Stores key-value pairs into a file using AES encryption. Created to practice test driven development.

Installation

conda install -c conda-forge --file requirements.txt

Usage

python onekey.py

Add

add <key>

Asks for value then add it with given key

List

list [<argument>]

Lists keys containing <argument> if exist.

View

view <key>

Views the value of given key

Del

del <key>

Deletes entry with given key

Clear

clear

Clears terminal output

Quit

quit

Quits application