Skip to content

Python GUI tool for visualizing your everyday finances. In development.

License

Notifications You must be signed in to change notification settings

salvah22/finances-tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

finances-tool

Python GUI tool for visualizing your everyday finances.

tl;dr

cd /path/to/finances-tool/
python3 src/main.py '/path/to/data.xlsx'

Features

  • A graphical user interface for navigating through your multi-account movements (Expenses, Income, Transfers, etc..), change the period you want to visualize, visualize categorized totals, and display only the transactions you are interested in with few clicks.
  • Group, filter, sort, and visualize your data seamlessly.

Main, balances, details and filters windows Group by window

  • SOON: tools to clean / manipulate your data, adding records

Dependencies

  • pandas
  • matplotlib

How-to

  • Data in the shape of a table is expected by the app, only Comma-separated-values (.csv) and excel spreadsheets (.xlsx) are currently supported.
  • the app looks in your spreadsheet for a column with a name matching a well-known currency (defined in src/configs/app.yml, e.g. EUR, USD or GBP), this app is not intended at the moment for multi-currency problems, so the first column matching a well-known currency, or whatever name you set in the config file currency list will be used (i.e. if your column header is Bitcoin, just set Bitcoin first in currencies list in app.yml).
  • Some column names / headers are expected to match those of src/resources/dummy_data.xlsx:
  1. Day (e.g. YYYY/MM/DD or ISO format work good)
  2. Account (nominal / categorical data, e.g. Cash, Checking, Savings, Credit, etc.)
  3. Category (nominal / categorical data, e.g. home, rent, groceries, leisure, savings, etc.)
  4. EUR / USD / GBP (as explained above)
  5. Direction (nominal / categorical data, explained below)
  6. AccountBalance (optional, used to show each account balances in the main frame)
  • The 'Direction' column is quite important, nominal / categorical data is expected, values must be one of the following:
  1. Income
  2. Expenses
  3. Transfer in
  4. Transfer out
  • As mentioned before, src/resources/dummy_data.xlsx shows a good example of how the data should be formated.
  • the content of other columns is irrelevant to the correct functioning of the app.

About

Python GUI tool for visualizing your everyday finances. In development.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published