There's nothing like that in the Beancount codebase. I've thought about building something to automatically insert imported transactions in the right "section" (I personally use org-mode, where each section corresponds to an institution and its related group of accounts) but it's unclear whether that would generalize.
I think you could turn this into a simple classification problem. Given some syntax for splitting up an input file into sections (e.g., some regular expression matching on a title or separator), you now have groups of transactions and inputs. Somehow reduce this to a simple model for classifying which section an incoming transaction matches with highest probability and insert it there. Or more appropriately - since transactions are imported in groups - find the section that best matches all the transactions in the imported files and insert at the end there. On Sun, Mar 11, 2018 at 12:28 PM, Michael Droogleever <[email protected]> wrote: > I believe it is against the design of beancount, but is there any existing > code which attempts to add transactions to an existing beancount file. > Assuming the entries in the file are grouped by asset account, it would > need to append the entry to the subsection of entries all from the same > account. > > -- > You received this message because you are subscribed to the Google Groups > "Beancount" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/beancount/7e031f82-3826-49ed-9494-15582eb718af%40googlegroups.com > <https://groups.google.com/d/msgid/beancount/7e031f82-3826-49ed-9494-15582eb718af%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Beancount" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beancount/CAK21%2BhNzH9quEXa6U2%3Dm4Q4kXizewCpbQE_6D1VG0i5_gC-77A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
