GAMS and Python 2

Questions on using the GAMS APIs (Python, .NET, etc.)
Post Reply
David
User
User
Posts: 8
Joined: 7 years ago

GAMS and Python 2

Post by David »

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!
User avatar
Clemens
Posts: 57
Joined: 7 years ago

Re: GAMS and Python 2

Post by Clemens »

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:

Code: Select all

t1.run(output=sys.stdout)
Hope that helps,
Clemens
David
User
User
Posts: 8
Joined: 7 years ago

Re: GAMS and Python 2

Post by David »

Thanks that works perfectly!
Post Reply