A simple and fun Command Line based Expense Tracker written in Python.
You can add expenses, view all expenses, and calculate your total kharcha directly from the terminal π
- Enter Date, Category, Description, Amount
- View all expenses in a clean format
- View total spending (TOTAL KHARCHA)
- No external libraries β pure Python
Program runs in a loop and displays 4 options:
- Add Expense
- View All Expenses
- View Total Spending
- Exit
Each expense is stored like this:
{
"date": "2025-11-22",
"category": "Food",
"description": "Momo khaya",
"amount": 150.0
}Make sure Python is installed.
python expense_tracker.py(Use your filename if different)
No external libraries needed. Just pure Python.
- Save data using JSON/CSV
- Edit/Delete expense feature
- Add monthly reports and category filters
- Make a GUI with Tkinter or convert to a web app using Django
Kaushal Karn β https://github.com/kaushal-ka
This project is licensed under the MIT License β see the LICENSE file for details.