Library to adjust transactions in YNAB based on custom patterns
Project description
ynab-transaction-adjuster
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
- Create a personal access token for YNAB as described here
- 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
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ynab_transaction_adjuster-2.0.2.tar.gz.
File metadata
- Download URL: ynab_transaction_adjuster-2.0.2.tar.gz
- Upload date:
- Size: 23.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.2 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b7cc92d92f35986fd02f63053c3a133366d7579bfca111e1099d1a521dcd592
|
|
| MD5 |
1b241eaff131adee1f5fb1569ef114d1
|
|
| BLAKE2b-256 |
1c77c89226aaff40c7dadd990596132c667a748effc8b77240e5d939d2f8ae48
|
File details
Details for the file ynab_transaction_adjuster-2.0.2-py3-none-any.whl.
File metadata
- Download URL: ynab_transaction_adjuster-2.0.2-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.2 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e87ce849c40d35d7e894ab170d3742faa4663779823b45eabee762a3c45fa7ee
|
|
| MD5 |
c9636eb41426068bb38e996e4ffcb348
|
|
| BLAKE2b-256 |
944284d0c8752e40b1e3cffe2f003f16b2c6297910ba311ba0ef889e586c8ae9
|