I download my bank/cc statements once every few months and run them through some homemade cleanup scripts, then I could technically plug it into a tool like this.
I also have some clean up scripts, but the worst part is I have to manually select the tables to extract in the PDF using Tabula. There's still some serious manual reconciliation between credit card and bank statements. I feel good doing it, but it's a slog.
Technically, I might be able to get something similar by using some website to download everything, but honestly I don't trust them. I don't want all of my banking, investment, and spending information consolidated in one place for some tech bro douche bag to sell off to some richer fucks and then lose it to some hackers.
I'm using GNUCash. I used to manually go through receipts and check against bank transaction history. That wasn't exactly sustainable so I wrote a python script to take the CSV that most banks will export and spit it back out in a nice and consistent format for importing into GNUCash. I could potentially explore the scraping capabilities of GNUCash, but with my current method it reminds me to pay down my current credit card balance while doing the exports.
This is an awesome alternative to scraping your own bank transactions. I'm considering using this technique to automatically add rows to my personal GnuCash MySQL database.
Wow, I've been doing this for nearly 10 years with multiple banks and auto-mergjng the output into my accounts, as well as to update memberships of an organisation using membership fee transactions from those files.
It never occurred to me to think of offering it to others through a front end, or that there's a side income's worth of interest in that kind of bank PDF scraping.
A fun thing I discovered doing this was when my software reported some mismatch errors when I merged in a bank-generated PDF for a date range partly overlappong what I'd already loaded. Turns out the bank PDFs were missing a random subset of transactions over a large date range - as was the online banking transaction history! This went on for a few months until the bank fixed their systems.
That's what I use. A simple CSV download of transactions (what bank doesn't offer that?), an awk script or two, and my bank transactions are ledger entries.
Why not simply download the CSV of your bank statements on a monthly basis and process it however you wish? Just need a monthly habit for this to be working.
Do banks have anything you can use to automate getting data off their websites? My annoyances lie in generating the csv files. My checking account outputs an arbitrary range of dates, however many transactions fit on pg 1, while my credit card from the same bank outputs csvs by billing cycle. It makes it a little annoying going into the bank website and generating these files across relevant date ranges.
I made a GeekTool curl script a few years ago that logs into my bank accounts and all my recurring services', utilities, and scrapes the balances every 10 minutes so I see my complete financial position on my desktop in near-real time. The dashboard concept is a good fit for this type of data.
Lmao I wrote my own csv translator using regex, because I thought this was a paid feature of stuff like Plaid only. You’re a lifesaver! How do you download your statements though? That’s still a small sticking point for me, and it sounds like you still need to individually go to each bank and pull each statement. Maybe I just have too many credit cards lol
The alternative that I use is to use GnuCash and periodically download CSVs from my bank of my transactions. That way I don't have to manually enter transactions and don't have to give my bank login to some random third party.
All that's needed is about 15-30 minutes every couple of months to bring in the latest transactions and double check the categorizations. GnuCash uses double entry bookkeeping, so you always know if your data is accurate or not by being able to reconcile the accounts.
Firefly kinda worked around this. You can download all transactions of your bank as a CSV, then use the Firefly importer to automatically map the data and save it inside Firefly. I usually do this once a week and it works pretty quickly, maybe a minute of work.
Not OP, but I do the same for ~7 accounts across 5 institutions. There's no need to contact them since you can manually download the statements, but it's a chore if you're doing it frequently. I usually run my script a few times a week.
Yes, that's what I do. Banks will export your statements as CSV or even spreadsheet. I copy paste year to date into a sheet and I get all the analysis I need.
I don't have a lot of sources and GNU Cash had a problem with importing my bank's output XLS files. So every three months (quarter) I copy paste my transactions into an excel sheet. I have one account that I use for unimportant and small transactions. So all the small transactions get separated from the main accounts which I track meticulously. I categorise transactions and I know exactly how much money I've spent on all the different categories.
While we're on the topic, does anyone know where one might find scripts to scrape bank statements so you don't have to download them manually every month? (This is one thing I would find headless browsers useful for...)
I download the statements once a year and also export as a spreadsheet, and store on a laptop and cloud
I wish organisations had a annual batch download for this stuff to make it quicker. I keep thinking ill write a script - but then its quicker to just download one at a time
reply