Skip to main content

Library to adjust transactions in YNAB based on custom patterns

Project description

ynab-transaction-adjuster

GitHub Release Maintained Monthly downloads

"Buy Me A Coffee"

This library helps you to automatically adjust transactions in YNAB based on your logic. It allows you to implement your adjustments in a simple factory class which you can run against your existing transactions and update relevant fields like date, payee, category, memo and flags. It also allows you to split transactions.

Preparations

  1. Create a personal access token for YNAB as described here
  2. Get the IDs of your budget and account which records are faulty. You can find both IDs 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>

Installation

Install library from PyPI

pip install ynab-transaction-adjuster

Usage

A detailed documentation is available at https://ynab-transaction-adjuster.readthedocs.io

Basic Usage

Create an Adjuster

Create a child class of Adjuster. This class needs to implement a filter() and an adjust() method which contain the intended logic. The filter() method receives a list of Transaction objects which can be filtered before adjustement. The adjust() method receives a single Transaction and a Modifier.The latter is prefilled with values from the original transaction and can be altered. The modifier needs to be returned at the end of the function. Please check the detailed usage section for explanations how to change different attributes.

from ynabtransactionadjuster import Adjuster, Transaction, Modifier


class MyAdjuster(Adjuster):

	def filter(self, transactions: List[Transaction]) -> List[Transaction]:
		# your implementation

		# return the filtered list of transactions
		return transactions

	def adjust(self, transaction: Transaction, modifier: Modifier) -> Modifier:
		# your implementation

		# return the altered modifier
		return modifier

Initialize

Create a Credentials object and initialize Adjuster class with it. Providing account for the credentials is optional. If not set the Adjuster will work on all transactions in the budget.

from ynabtransactionadjuster import Credentials

my_credentials = Credentials(token='<token>', budget='<budget>', account='<account>')
my_adjuster = MyAdjuster(my_credentials)

Apply

Apply the filter and adjust function on the fetched transactions from YNAB via the apply() method. It returns a filtered list of ModifiedTransaction which can be inspected for the changed properties via the changed_attributes attribute. Only actually changed transactions are returned.

modified_transactions = my_adjuster.apply()

Update

The modified transactions can be upated in YNAB passing them to the update() function. The method returns a list with the updated Transaction objects.

updated_transactions = my_adjuster.update(modified_transactions)

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_transaction_adjuster-2.0.0.tar.gz (23.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ynab_transaction_adjuster-2.0.0-py3-none-any.whl (29.9 kB view details)

Uploaded Python 3

File details

Details for the file ynab_transaction_adjuster-2.0.0.tar.gz.

File metadata

  • Download URL: ynab_transaction_adjuster-2.0.0.tar.gz
  • Upload date:
  • Size: 23.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.5.0-1018-azure

File hashes

Hashes for ynab_transaction_adjuster-2.0.0.tar.gz
Algorithm Hash digest
SHA256 9047fdd08658abe27cfe6060a9660b8dbdca96c232c101ffe73a9baa65d6f824
MD5 34c572be3ad281b11807786236a5d125
BLAKE2b-256 cfd0e3a5c501357b7def1ac152c5443e430c3414c7709faf38046c53a314cfe9

See more details on using hashes here.

File details

Details for the file ynab_transaction_adjuster-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ynab_transaction_adjuster-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ae8a13f870a57aeb58140ca502261ccf1a91307d63f15cccc064070ed556c330
MD5 dc631a3fe65742c37bb8920f4595a4ad
BLAKE2b-256 1a5222217045d7b5791fb760498b77634b0d948776e43d29358516eefc015eef

See more details on using hashes here.

Supported by

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