Tool for syncing bank transaction data to Google Sheets with Plaid.
Project description
GSheets-Plaid
A spring break project to get my bank transaction data in Google Sheets without using Google Apps Script.
gsheets-plaid
is a tool for getting your raw bank transaction data into a Google Sheets spreadsheet, to enable you to make your own formulas and charts for tracking spending, making goals, etc. This app is 100% free (assuming you don't already have a bunch of Google Cloud projects), but there is a bit of one-time setting up to do to get your Google and Plaid credentials in place. This README contains all the instructions to get you from a fresh install of the package to bank transactions in a Google Sheets file.
Please open an issue if something isn't working or if the documentation isn't clear.
Usage
Prerequisites
- Python 3.10 or later
Installation
Using a virtualenv is a good idea.
python3 -m pip install gsheets-plaid
Create a Google Cloud project and enable the Google Sheets API
Follow this tutorial
Be sure to enable the "Google Sheets API"
Create access credentials for Google
Follow this tutorial for creating OAuth client ID credentials for your Google account.
- Choose "Desktop app" in the tutorial
OAuth consent screen
Before Google Cloud Platform will let you create OAuth client ID credentials, it will make you complete the OAuth consent screen. Fill out the required fields with your personal email, and choose an arbitrary application name. Since we aren't planning on publishing this app, it doesn't really matter.
On the "Scopes" step, add the following scope: https://www.googleapis.com/auth/drive.file
. You can use the search feature and look up drive.file
to quickly find the right scope.
On the "Test users" page, add the google account email that corresponds with the account you want to have the finance tracker saved on.
Back to creating OAuth credentials
Here is a summary of how to create the credentials:
- Click "Create credentials"
- Click "OAuth client ID"
- Select "Desktop app"
- Type a name of your choice
- Click the download icon (when you hover it says "Download OAuth Client")
- Click "Download JSON"
Create a Plaid Developer account
Create a Plaid developer account here.
After you have created an account, go to Team Settings > Keys. You should see your client_id
, as well as Development and Sandbox secrets.
Register the redirect URI in the Plaid Dashboard
Add the redirect URI to the list of allowed redirect URIs in the Plaid Dashboard. By default, the redirect URI is https://localhost:8080/google-oauth-callback
.
Link a bank account
We are finally getting to the exciting part!
If everything is configured correctly, running the following command will open a new browser tab with a small local web server you can use to connect a bank account.
python3 -m gsheets_plaid
If you are using the sandbox
environment, note that the credentials are provided at the bottom of the screen. If you are using the development
environment, use your actual bank account credentials. Note that you are only given 5 tokens to use in the development environment, but if you submit a ticket on Plaid Dashboard, you can get it bumped up to 100 tokens, which should be more than plenty for personal usage.
Once you have added all the bank accounts you want, close the browser tab and enter CTRL+C
in the terminal you started the link
command in to kill the web server process.
That's it! Hopefully you're inspired to write some cool formulas and make neat charts using this raw transaction data.
Publishing new releases
(for maintainers)
- Tag the main branch
git tag v[insert-version-here]
- Push latest commits with tags
git push origin --tags
- Build repo
python -m build
- Upload distribution archives to PyPi
python -m twine upload dist/*
- Create new release on GitHub
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gsheets-plaid-0.3.0.tar.gz
.
File metadata
- Download URL: gsheets-plaid-0.3.0.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f252ded4314443088e83f373b3c6937bca8ed4b7bb4433ed743fa542e1cd3f8f |
|
MD5 | c4434bab414d3a9037ead08f75fbf48d |
|
BLAKE2b-256 | d867ec7708018fb5ef60f2d3c9b4ee5a9f71324b4cae4fd6831596b917c96ec3 |
File details
Details for the file gsheets_plaid-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: gsheets_plaid-0.3.0-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14a76e482c03e91a523f2ca6bf3bd1dbace85562a2d421e48a317d2414286b40 |
|
MD5 | 0258b4dedf50c33e30f5947f9ac6f896 |
|
BLAKE2b-256 | af06b3b2d63a18ed067648dfc69f9edac9ac73f0baaced68d6ab6a1054bcdee6 |