GAMS and Python 2

Hello,

Is there a way to see the ongoing calculations through the python API?
When I run the model through python, I don’t see any progress data (like the iterations, and so on).

Thanks!

David,

You might want to specify the output argument in GamsJob.run() in order to redirect the GAMS log. Assuming that t1 is an instance of type GamsJob, the following code will print the log to stdout:

t1.run(output=sys.stdout)

Hope that helps,
Clemens

Thanks that works perfectly!