A small command-line tool to log daily spending. Nothing fancy, just add expenses and see where your money went.
- Add an expense with amount, category, and note
- List all expenses or filter by category
- Show a quick summary by category
python -m venv venv
source venv/bin/activate
pip install -r requirements.txtpython main.py add 12.50 food "lunch"
python main.py list
python main.py summaryData is stored in expenses.json in the project folder.
Python 3.10+