https://github.com/bfgray3/finances
https://github.com/bfgray3/finances
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bfgray3/finances
- Owner: bfgray3
- Created: 2023-05-01T23:19:19.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-12-15T21:07:22.000Z (6 months ago)
- Last Synced: 2025-12-19T05:11:20.397Z (6 months ago)
- Language: Python
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
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"]
}
```