Skip to content

modeleonai/modeleon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modeleon

License Python PyPI

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.

modeleon.ai | PyPI

License

Apache 2.0

About

Financial Model Engineering — Python code compiles to live Excel formulas

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Contributors