Implementation of a key-value storage
python src/cli.py [-h] storage {get,set,delete} items [items ...]
set command expects a list of key=value pairs separated by spaces
get and delete commands expect a list of keys separated by spaces
python src/cli.py storage set name=Egor age=18python src/cli.py storage get namepython src/cli.py storage delete name
© 2025 Egor Vetoshkin