From 458a24d09f95eefb161728d9676ecdfca30e3f5e Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 8 Sep 2024 17:02:33 +0200 Subject: Split flow.py to simulate.py and model.py 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. --- demo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'demo.py') diff --git a/demo.py b/demo.py index bb9cb98..9626ead 100755 --- a/demo.py +++ b/demo.py @@ -6,7 +6,8 @@ import argparse from datetime import datetime from decimal import Decimal -from finance.flow import Flow, simulate +from finance.model import Flow +from finance.simulate import simulate from finance.visualize import display -- cgit v1.2.3-70-g09d2