This is a program that helps keep track of inputted expenses and other finance stuff. You can filter and view expenses as well using the main.py file. If you cannot tell it may appear that this project is becoming more industrial and runs faster. This is due to me putting a lot of time into this project so any support is very much appreciated.
Read the license for rules about using this program properly. This program is 100% human programmed however professional debugging is done thanks to Claude Code.
Any files to be processed need to be put in the same directory or uploaded through the web ui.
First run the virtual environment (venv) setup:
python -m venv {your_venv_directory_name}
Then, if Windows is being used run:
{your_venv_directory_name}\Scripts\python.exe
If you are on Mac or Linux run:
source {your_venv_directory_name}\bin\activate
Finally you are ready to run the file using the following command:
python run.py
If there are packages that need to be installed, use this command to install them:
pip install -r requirements.txt