An open API service indexing awesome lists of open source software.

https://github.com/bfgray3/finances


https://github.com/bfgray3/finances

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

## finances

this is an in-progress tool to track my personal finances. it's currently undergoing a major refactor so this README will be temporarily ourdated.

## usage

```console
$ pip install .
$ finances
usage: main.py [-h] [--csv CSV] [--names NAMES]

options:
-h, --help show this help message and exit
--csv CSV
--names NAMES
```

in the working directory there should be two files:
* a csv (by default `balance-sheet.csv`) ...
* a json file (by default `names.json`) with the names of which columns are assets and which are liabilities

```json
{
"assets": ["Savings", "Checking"],
"liabilities": ["SomeLoan"]
}
```