Skip to main content

Library to import bank transactions via API into You Need A Budget (YNAB)

Project description

ynab-api-import

GitHub Release Github Release

"Buy Me A Coffee"

This library enables importing YNAB transactions via the Gocardless Bank Account Data API (formerly Nordigen). It is pretty helpful for cases in which your bank is not covered by YNABs native import functionality.

Preparations

Gocardless Bank Account API (formerly Nordigen)

  1. Check if your bank is supported by the API.
  2. Create an account with Gocardless for the Bank Account Data API (They have a separate Login for it which you can get to by clicking on 'Get API Keys' or clicking the link at the bottom of their standard login page)
  3. Go to Developers -> User Secrets and create a new pair of secret_id and secret_key

YNAB

  1. Create a personal access token for YNAB as described here

Basic Usage

1. Install library from PyPI

pip install ynab-api-import

2. Initiate Library

Provide a unique reference (e.g. 'mycheckingaccount') per bank connection to identify the grant later on. You can find the IDs of your budget and the account if you go to https://app.ynab.com/ and open the target account by clicking on the name on the left hand side menu. The URL does now contain both IDs https://app.ynab. com/<budget_id>/accounts/<account_id>

from ynabapiimport import YnabApiImport
ynab_api_import = YnabApiImport(secret_id='<secret_id>', 
                                secret_key='<secret_key>',
                                reference='<reference>',
                                token='<ynab_token>',
                                budget_id='<budget_id>',
                                account_id='<account_id>')

Optionally you can initiate an object from a config.yaml file. To do that create a YAML file with the following content:

secret_id: <secret_id>
secret_key: <secret_key>
reference: <reference>
token: <ynab_token>
budget_id: <budget_id>
account_id: <account_id>

Save the file and provide the path to the library when initializing

ynab_api_import = YnabApiImport.from_yaml('path/to/config.yaml')

2. Find the institution_id of your bank

Countrycode is ISO 3166 two-character country code.

ynab_api_import.fetch_institutions(countrycode='<countrycode>')

You get back a dictionary with all available banks in that country, their institution_ids and the maximum days of transaction history provided by the bank. Find and save the institution_id of your bank.

[{'name': '<name>', 'institution_id': '<institution_id>', 'max_history_days': 'ddd'}]

3. Create Auth Link and authenticate with your bank

Provide the institution_id. You get back a link which you need to copy to your browser and go through authentication flow with your bank

ynab_api_import.create_auth_link(institution_id='<institution_id>')

4. Run import with your reference and YNAB identifiers

Optionally you can provide a startdate argument in form of a datetime.date object to only import transactions from a specific date onwards. Equally optionally you can provide a memo_regex argument in from of a regex string to the call to clean the memo string before importing into YNAB. A good helper to write your regex is
https://regex101.com

ynab_api_import.import_transactions()

Advanced Usage

Handling of multiple accounts in your bank connection (MultipleAccountsError)

The library assumes that you have one active account in your bank connection. It will raise an error if there are no accounts in your connection or more than one. In the latter case you need to provide the correct resource_id when initializing the library. You can find the resource_id by looking into the available options in the error message.

from ynabapiimport import YnabApiImport
ynab_api_import = YnabApiImport(resource_id='<resource_id>',
                                secret_id='<secret_id>', 
                                secret_key='<secret_key>',
                                reference='<reference>',
                                token='<ynab_token>',
                                budget_id='<budget_id>',
                                account_id='<account_id>')

Delete current bank authorization

By default you can create only one bank authorization per reference. If you need to replace the authorization under your current reference you can explicitly do that by calling the following function.

ynab_api_import.delete_currrent_auth()

Show Logs

The library logs information about the result of the methods on the 'INFO' level. If you want to see these logs import the logging module and set it to the level INFO. You can also access the logger for advanced configuration via the logger attribute of your YnabApiImportinstance.

import logging

logging.basicConfig(level='INFO')

Testing your memo_regex

You can test your memo_regex with a call to test_memo_regex(). The function will fetch transactions from your bank account, apply the regex and output the old and new memo strings in a dict for inspection

ynab_api_import.test_memo_regex(memo_regex=r'<memo_regex')

returns a list of dict with following content

[{original_memo: cleaned_memo}]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ynab_api_import-0.6.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

ynab_api_import-0.6.0-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file ynab_api_import-0.6.0.tar.gz.

File metadata

  • Download URL: ynab_api_import-0.6.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Linux/6.5.0-1016-azure

File hashes

Hashes for ynab_api_import-0.6.0.tar.gz
Algorithm Hash digest
SHA256 1a2f82ad36125fa1bf75fdd573f1cea206ff87cd1d6228acf195196d520f4e2d
MD5 aa2f14729fb6b90dd31f4e849c1204b2
BLAKE2b-256 91b1ce67df96e3823cd43056440ee48baf55fbd5e3438c5ae27b3101fd6a4340

See more details on using hashes here.

File details

Details for the file ynab_api_import-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: ynab_api_import-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.2 Linux/6.5.0-1016-azure

File hashes

Hashes for ynab_api_import-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8aefc20e8885205972d1af763936667df69f8927bc121398bde83ea3f5caa5af
MD5 46a016cff1afec68e9e8d319f9ef8436
BLAKE2b-256 8bb26c08be60aa66a0023a32e6a0b6145bb5a7da13783892e6533e0e28ce4256

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page