Skip to content

LaunchPlatform/beanhub-cli

Repository files navigation

beanhub-cli CircleCI

Command line tools for BeanHub or Beancount users.

Features

  • Local BeanHub Form web app - You can run a BeanHub Form web app locally to try out your forms
  • Import - Simple yet powerful beanhub-import allows you to define importing rules in YAML to extract transactions from CSV files and generate Beancount transactions automatically
  • Formatter - Advanced Beancount file formatter based on top of beancount-black
  • Basic Beancount file manipulations - Effortless Beancount account name renaming and other basic manipulations (coming soon)
  • Doesn't require a BeanHub account - While some features in the future will require a BeanHub repository to operate, but we make most of them usable even without a BeanHub account

Screenshots

BeanHub Forms Screenshot

Sponsor

BeanHub logo

A modern accounting book service based on the most popular open source version control system Git and text-based double entry accounting book software Beancount.

Install

pip install beanhub-cli

Usage

BeanHub Import

To run BeanHub's import feature locally, you can define your import rules at .beanhub/imports.yaml and then run the following command in your Beancount folder:

bh import

To learn more about the import document and how the BeanHub import feature works, you can read the README of beanhub-import.

BeanHub Forms web app

To make it much easier for BeanHub users to test their BeanHub Forms locally, we added a simple local web app for that in beanhub-cli. You can run it by

bh form server

It should open the BeanHub Forms web page locally at http://localhost:8080 by default. It reads the .beanhub/forms.yaml file from the current directory and will modify beancount files in the directory, so make sure you cd to your beancount directory before running the command. To learn more about BeanHub Forms, please read our blog post Automating Beancount data input with custom forms makes your life 10 times easier!.

List BeanHub Forms

To list BeanHub Forms, simply run

bh form list

Validate BeanHub Forms doc

To validate BeanHub Forms doc, simply run

bh form validate

Format beancount files

You can run beancount-black formatter against given files by the following command

bh format main.bean

Currently, the formatter works mostly the same as beancount-black, except it doesn't create a backup file by default. We are working on adding new features, such as making it possible to follow Beancount include statements to format all Beancount files.

More features to come

We are working on basic beancount file manipulation features, such as renaming account names. We will also add new features only for BeanHub users as well. But in general, if possible, we would like to make the features added to beancount-cli work locally without a BeanHub account as much as possible so that the beancount community can benefit from it.