Hi Sebastien,
Just started experimenting with piecash. I have a quick question as I seemed stymied on slots related errors.
#this works
book = piecash.open_book("murphy_books.gnucash")
for account in book.accounts:
print(account)
# this throws an error (as well as anything else I try to do with transactions)
for tr in book.transactions:
print(tr)
>>>AttributeError: 'Transaction' object has no attribute 'slots'
I did check the sqlite database and there is indeed a slots table which has approx 3,700 records.
and I have plenty of transactions to view as below
len(book.transactions)
>>> 1857
Any guidance you can provide would be much appreciated.
Kind Regards,
Adam Murphy