Hi,
I have multiple Workbench archive, and I would like to run them all, in order to extract some results.
But, I don't want to do it mannualy (open all the archives, and solve them all).
Is there a way in python for running a Workbench archive and solve the system in it?
Something like this :
# Parameters
folder_path = xxx
# List of archives
import os
archives = []
for file in os.listdir(folder_path ):
if file.endswith(".wbpz"):
archives.append(os.path.join(folder_path , file))
# Run
for archive in archives:
# archive solve
Regards,
Jean