All Projects → ebridges → plaid2qif

ebridges / plaid2qif

Licence: MIT license
Download financial transactions from Plaid as QIF files.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to plaid2qif

dimeshift-desktop
DimeShift desktop application
Stars: ✭ 14 (-80%)
Mutual labels:  personal-finance, financial
ezbookkeeping
A lightweight personal bookkeeping app hosted by yourself.
Stars: ✭ 42 (-40%)
Mutual labels:  personal-finance, financial
finatr
helping you analyze your future cash flows
Stars: ✭ 18 (-74.29%)
Mutual labels:  personal-finance
avanza
A Python library for the unofficial Avanza API
Stars: ✭ 54 (-22.86%)
Mutual labels:  personal-finance
sage
💸 Download from your banks and credit cards straight to your computer
Stars: ✭ 51 (-27.14%)
Mutual labels:  personal-finance
financial-forecast
Personal Financial Forecasting Model
Stars: ✭ 24 (-65.71%)
Mutual labels:  personal-finance
clabe-validator
🇲🇽 Analyze or create a CLABE number for a Mexican bank account (written in functional TypeScript)
Stars: ✭ 55 (-21.43%)
Mutual labels:  financial
Ta Rs
Technical analysis library for Rust language
Stars: ✭ 248 (+254.29%)
Mutual labels:  financial
Stocksera
Web application that provides alternative data to retail investors
Stars: ✭ 426 (+508.57%)
Mutual labels:  financial
Credits
Credits(CRDS) - An Evolving Currency For An Evolving Society
Stars: ✭ 14 (-80%)
Mutual labels:  financial
Personal-Finance-Net-Worth-Tracker
Personal Finance (Net Worth Tracker) Wealth Management Spreadsheet
Stars: ✭ 31 (-55.71%)
Mutual labels:  personal-finance
jelly-fin
A simple way to manage your finances with forecasting. We should automate our money, not make it automate us.
Stars: ✭ 96 (+37.14%)
Mutual labels:  personal-finance
bankster
Money Creation Made Easy
Stars: ✭ 30 (-57.14%)
Mutual labels:  financial
Clerk
Personal finance application based on double entry system.
Stars: ✭ 12 (-82.86%)
Mutual labels:  personal-finance
optionmatrix
Financial Derivatives Calculator with 168+ Models (Options Calculator)
Stars: ✭ 121 (+72.86%)
Mutual labels:  financial
YNAB-reporter
Reporting system for You Need A Budget
Stars: ✭ 26 (-62.86%)
Mutual labels:  personal-finance
finance
💰 Free open-source personal finance tracking web application.
Stars: ✭ 156 (+122.86%)
Mutual labels:  personal-finance
finac
Finac - financial accounting for humans
Stars: ✭ 27 (-61.43%)
Mutual labels:  financial
plaid-link-ios
Plaid Link iOS SDK
Stars: ✭ 100 (+42.86%)
Mutual labels:  plaid
NC.js
Web interface for the Digital Thread
Stars: ✭ 33 (-52.86%)
Mutual labels:  qif

CircleCI GitHub watchers Crates.io PyPi

Plaid2QIF Logo

Plaid2QIF

Description

Plaid2QIF downloads transactions from various financial institutions in JSON format and converts to formats usable by financial software.

Output Formats supported:

  • QIF
  • CSV
  • JSON
  • Extensible to others

Notes

  • Tested extensively with GnuCash. Supported by any financial software that supports import from QIF.
  • Supports any institution supported by Plaid.

Summary

  # Download transactions in various formats (default QIF) from Plaid
  plaid2qif download \
    --account=<account-name> \
    --account-type=<type> \
    --account-id=<acct-id> \
    --from=<from-date> \
    --to=<to-date> \
    [--output-format=<format>] \
    [--output-dir=<path>] \
    [--ignore-pending] \
    [--verbose]

Usage

  1. Install the plaid2qif command using pip

     $ pip install plaid2qif
    
  2. Authenticate and link with your financial institution (first time only). To do this, follow the steps for using the associated Account Linker tool.

  3. Configure your environment with required values. See "Authentication Configuration" below.

  4. Once configured, you're ready to download transactions and save them as QIF files:

     plaid2qif download \
         --from=<yyyy-mm-dd> \
         --to=<yyyy-mm-dd> \
         --account-type=<type> \
         --account=<account-name> \
         --account-id=<plaid-account-id> \
         --credentials=<file>
    
  • account is the path to an account in the ledger in GnuCash that you ultimately want to import the transactions to. This is added to the !Account header in the QIF file. e.g.: Assets: Checking Accounts:Personal Checking Account. If the name has spaces be sure to quote this param.
  • account-type is a GnuCash account identifier type as documented here.
  • account-id is Plaid's account ID for the account you want to download, as obtained via list-accounts above.
  • By default, output will go to stdout to be redirected. If you want it to be written to a location use the output-dir parameter.

Authentication Configuration

  • You will need the following information configured in your environment in order to use this tool.
  • The suggested way to populate your environment would be to use a file named .env in your current working directory. Alternatively you could put the values in your ~/.profile or however you normally initialize your environment.
Configuration Parameter Environment Variable Name Description Notes
Client ID PLAID_CLIENT_ID Plaid's unique indentifier for your Plaid account. Obtain from your dashboard Required.
Client Secret PLAID_SECRET Plaid's authentication token for your Plaid account. Obtain from your dashboard Required.
Plaid Environment PLAID_ENV Operating environment. Optional. Should be one of: sandbox, development, or production. Defaults to development.
Plaid API Version PLAID_API_VERSION Version of the API that the plaid-python library supports. Optional. Defaults to 2020-09-14
Access Token location ACCESS_TOKEN_FILE Location of the token that grants access to a particular financial institution for downloading records from. Required.

Notes on Authentication Configuration

  • The access token and Plaid credentials are sensitive material as they grant access to data within your financial accounts. They should be handled carefully and not shared.

  • These are the most important values that need configuration in order to authenticate with your institution and then download records. Other values can be found in the sample.env.

  • If you're downloading from different institutions that result in multiple access token files, you can override the location of the file at the command line; see below for an example. This approach is open to suggestions for improvement if this doesn't work well for others. See Issue #27.

      $ ACCESS_TOKEN_FILE=./cfg/chase.txt plaid2qif ...
      $ ACCESS_TOKEN_FILE=./cfg/citi.txt plaid2qif ...
    

Distribution

# increment version in `plaid2qif/__init__.py`
# commit everything & push
$ git tag -s vX.Y.Z
$ git push --tags
$ python3 setup.py sdist bdist_wheel
$ twine upload dist/*
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].