beancount-parser-lima 0.14.6

A zero-copy parser for Beancount
Documentation
directives {
  date { year: 2000 month: 1 day: 1 }
  open {
    account: "Assets:Common"
  }
}

directives {
  date { year: 2010 month: 1 day: 1 }
  open {
    account: "Income:Donations"
  }
}

directives {
  date { year: 2010 month: 1 day: 1 }
  open {
    account: "Income:Work"
  }
}

directives {
  date { year: 2014 month: 1 day: 27 }
  transaction {
    flag: "*"
    narration: "Donations"
    postings {
      account: "Income:Donations"
      spec { units { number { exact: "-100.00" } currency: "NZD" } }
    }
    postings {
      account: "Assets:Common"
    }
  }
}

directives {
  date { year: 2014 month: 2 day: 5 }
  transaction {
    flag: "*"
    narration: "Work"
    postings {
      account: "Income:Work"
      spec { units { number { exact: "-750.00" } currency: "NZD" } }
    }
    postings {
      account: "Assets:Common"
    }
  }
}