Hi all,
I'm sharing the plugin `autobean.narration` which I've personally been
using a lot for shopping transactions. It allows me to annotate each
posting in a concise way by populating per-posting narration metadata from
inline comments.
Example:
2000-01-01 * "bean party"
Assets:BankOfBe
Currently exchangeratesapi. Am not really picky, just trying to automate
the process rather than manually specifying flunctuations in my home
currency.
On Sat, May 8, 2021 at 2:32 PM Patrick Ruckstuhl
wrote:
> Yes, what I meant which price source (e.g. exchangeratesapi, alphabantage,
> ...) do y
So creating a new Transaction looks something like the below:-
meta = data.new_metadata(file.name, lineno)
txn = data.Transaction(
meta, date, self.FLAG, None, description,
data.EMPTY_SET, data.EMPTY_SET, [
data.Posting(ac
On Sat, May 08, 2021 at 09:40:17PM +0800, Oon-Ee Ng wrote:
> So creating a new Transaction looks something like the below:-
>
> meta = data.new_metadata(file.name, lineno)
> txn = data.Transaction(
> meta, date, self.FLAG, None, description,
>
Just a consequence of using namedtuples.
The next version won't require it
On Sat, May 8, 2021 at 9:40 AM Oon-Ee Ng wrote:
> So creating a new Transaction looks something like the below:-
>
> meta = data.new_metadata(file.name, lineno)
> txn = data.Transaction(
>