Age | Commit message (Collapse) | Author |
|
model.py should be a file containing only dataclasses to model finance.
simulate.py should take care of the simulation of that finance data to
create a financial forecast.
|
|
This type is useful for finance-py in general. It is often required to
handle money in datetime context. Using this type consistently makes the
code easier to read and maintain.
|
|
|
|
This was renamed to "flow".
|
|
That way a flow can be limited to a certain time frame.
|
|
Modeling income and expenses separately does not make sense since the
only difference is the sign of the amount. Separate definitions would
lead to a lot of duplicated code.
|