A flexible cash flow modeling system designed for rocket engine companies, featuring:
- Pure YAML files for data storage
- SQLite for efficient querying
- Flexible schema with Pydantic validation
- Plugin architecture for custom calculations
- Async/parallel processing
- Install Poetry (if not already installed):
curl -sSL https://install.python-poetry.org < /dev/null | python3 -- Install dependencies:
poetry install- Install pre-commit hooks:
poetry run pre-commit install# Add a new employee
poetry run cashcow add --type employee
# Generate a forecast
poetry run cashcow forecast --months 24
# View KPIs
poetry run cashcow report kpisrc/cashcow/- Main application codeentities/- YAML files for all entities (employees, revenues, expenses)scenarios/- Scenario definitionsconfig/- Configuration filesreports/- Generated reportstests/- Test suite