List Cases

List Cases#

This example demonstrates how to list cases in the Flow360 cloud platform using the Python API. It accesses metadata for each case, such as its description and the solver version associated with it.

import flow360.v1 as fl

for case in fl.MyCases(limit=1000):
    print(case.short_description() + "solver_version = " + str(case.solver_version))