Finance Tracker

Track expenses and balance using OOP, JSON, datetime, and error handling.

Part of the free Python course at LearnCodingFast — hands-on lessons with examples you run in your browser, plus practice exercises and a quick quiz.

Project Overview

Goal: Track income, expenses, and generate reports.

Concepts: File I/O, datetime, JSON, formatting, error handling.

Key Features:

Technologies & Concepts:

Starter Code

💡 This full interactive version uses input() which requires a local Python environment. Jump to the Browser Demo below to see a simplified version running in your browser.

To run this locally: Save as finance_tracker.py and run python finance_tracker.py

Browser Demo (Simplified Version)

This version demonstrates the core functionality without requiring user input. Click "Run" to see it in action!

Enhancement Ideas 🚀

1. Budget System

Set monthly budgets for categories and get warnings when approaching limits.

2. Data Visualization

Use matplotlib to create charts showing spending by category over time.

3. Recurring Transactions

Add support for recurring monthly expenses (rent, subscriptions).

4. Multi-Currency Support

Track transactions in different currencies with automatic conversion.

5. Export to CSV/Excel

Allow exporting transaction history for analysis in spreadsheet software.

Next Steps

Related lessons