Simple Python grocery store management example.
Quick start:
- Run the CLI from the project directory:
python main.py add --name "Apple" --price 0.5 --qty 100
python main.py list
python main.py sell --id 1 --qty 3
python main.py report- Run tests:
python -m unittest discover -v