Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 362 Bytes

File metadata and controls

21 lines (15 loc) · 362 Bytes

Grocery Store Management

Simple Python grocery store management example.

Quick start:

  1. 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
  1. Run tests:
python -m unittest discover -v