Skip to content

point8/ledgertools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

18 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Ledger Tools

Command line tools for working with ledger

Available commands

$ ledgert --help

Usage: ledgert [OPTIONS] COMMAND [ARGS]...

  CLI tools for working with ledger

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  read  Import ledger style file

Import ledger style files

Reading ledger journal file and save as json formatted file

ledgert read -f /path/to/input/ledger/file
  • --file input file name
  • --name option to provide output file name
  • --pickle option to save as serialized object instead of json

Local Setup

pip

Simply use pip install -U . for a local installation.

Development

Use pip install -e . for a local development installation. Where -e "installs a project in editable mode (i.e. setuptools "develop mode") from a local project path" thus every change of the source is made directly available.