Case List

Case List#

This script demonstrates retrieving and iterating through a user’s available cases using the Flow360 Python API. It accesses metadata for each case, such as its description and the solver version associated with it.

1import flow360.v1 as fl
2from flow360.log import log
3
4for case in fl.MyCases(limit=1000):
5    log.info(case.short_description() + "solver_version = " + str(case.solver_version))