Skip to content

jbw976/budget-verifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

budget-verifier

budget-verifier is a simple Go (golang) application that compares financial transaction entries found in bank statements against those found in budget apps. The idea is to identify any charges to your bank account or credit card that you didn't expect or forgot to enter into your budget app.

Instructions

First download the most recent statements from your bank and budget app. To run budget-verifier to compare the two, simply invoke it along with the path to your downloaded bank statement and your downloaded budget app statement:

Usage:
  budget-verifier [flags]

Flags:
      --bank string     path to downloaded bank statement
      --budget string   path to downloaded budget app statement
      --filter string   path to filter JSON file (default "filter.json")
  -h, --help            help for budget-verifier
      --verbose         Enables or disables verbose output

For example:

budget-verifier --bank=credit-card.csv --budget=budget.csv

Any entries from your bank statement that are not found in your budget app will be printed to the console.

Filters

It is possible to use a filter file to instruct budget-verifier to ignore certain entries from your bank statement. This can be useful for recurring consistent value payments (e.g. car payment) that you may not bother entering into your budget app because it is a fixed value (instead of variable) each month.

Filters have a regular expression and a value range that they will match against. If both match, then the entry from the bank statement that matches the filter will be ignored. Note that expenses are negative values and credits are positive.

For filter examples, see filter.json.example.

Supported Formats

The following formats are currently supported:

Bank Statements

Budget App

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages