Skip to content

First steps

Let's import and create a first blanco model.

import hydrolib.core as hlc

model = hlc.models.FMModel(name="testproject")
model.save(folder="test")
Back to top