List Manager

A CLI tool that allows for list management
How To Use
This tool is meant to be used as a CLI (command line interface). You will need to install the package from pypi
pip install list_manager
After installing, you can immediately start using the tool from your command line
Show All Lists
list_manager get_lists
Show All Items In List
list_manager get_list -l <list-name>
Create List
list_manager create_list -l <list-name> -i <optional-initial-list-item>
Add Item To List
list_manager add_item -l <list-name> -i <item-name>
Delete Item From List
list_manager delete_item -l <list-name> -i <item-name>
Delete List
list_manager delete_list -l <list-name>