Budget Management Application
Overview
The Budget Management Application is a simple tool built using Python's Tkinter library for tracking income and expenses. It allows users to add income or expenses under different categories and provides visualization of the budget data through pie charts and bar charts.
Features
- Add income or expenses under different categories.
- Track the overall budget.
- Visualize budget data using pie charts and bar charts.
- Simple and intuitive user interface.
Requirements
- Python 3.x
- Tkinter (typically included with Python installation)
- Matplotlib library (for plotting charts)
Installation
- Clone the repository to your local machine: git clone <repository_URL>
- Navigate to the project directory: cd budget_management_application
Usage
- Run the application by executing the Python script: python budget_management_application.py
- Add income or expenses by entering the amount and category in the respective sections.
- Click the "Add Income" button to add income, or the "Add Expense" button to add an expense.
- Visualize the budget data by clicking on the desired chart type in the "Display Charts" section.
Resources
- Tkinter Documentation: https://docs.python.org/3/library/tkinter.html
- Matplotlib Documentation: https://matplotlib.org/stable/contents.html