Releases: dnbasta/ynab-api-import
Releases · dnbasta/ynab-api-import
1.2.3
1.2.2
Bugfixes
- Instance doesn't any longer call BankAccountData API upon initialization.
NoAccountError
,MultipleAccountsError
andNoRequisitionError
are no longer raised upon initialization but when the functionsimport_transactions()
andcompare_balances()
are used - updated dependencies
1.2.1
1.2.0: Merge pull request #2 from dnbasta/dev
New Functionality
- made
reference
andresource_id
public attributes ofYnabApiImport
class
Enhancements
- added more doctstring descriptions
1.1.0
New Functionality
compare_balances()
method allows to compare balance of bank with balance of YNAB. Method considers different available balances and adjusts for pending transactions
Enhancements
- added docstrings to class and methods
1.0.0
Breaking Change
- removed
delete_current_auth
function and introduced this functionality as an option tocreate_auth_link()
.
Enhancements
- changed standard history in auth request to 90 days to maximize compatibility with banks
- introduced
use_max_historical_days
option increate_auth_link()
method to use maximum available days of bank history (might cause a 500 error with API if bank doesn't support for any reason)
0.6.1
0.6.0
0.5.4
New Functionality
- implemented
delete_current_auth()
method to delete current bank authorization for a specific reference
Enhancements
- changed auth request to ask for 730 days of transaction history instead of 90 to allow importing for start dates longer in the past
0.5.3
New Functionality
- move earlier print statements containing method feedback into logger. This information is no longer shown in stdout by default. To display it, set the logging of your application to level
INFO
(see section in README) or access logger which is exposed as attribute inYnabApiImport
instance