Financial Model Engineering — Python code compiles to live Excel formulas.
Write financial models in Python. Get real, auditable Excel formulas — not dead values.
from modeleon import Model
model = Model("Revenue Forecast")
price = model.var("Price", 50)
volume = model.var("Volume", 1000)
revenue = model.var("Revenue", price * volume)
model.to_excel("forecast.xlsx")forecast.xlsx — real formulas, not values:
| A | B | |
|---|---|---|
| 1 | Price | 50 |
| 2 | Volume | 1000 |
| 3 | Revenue | =B1*B2 |
Every cell is a live formula you can audit, extend, and trust.
Coming soon. Star this repo to follow progress.
Apache 2.0