Answer Question
How to use Python to unload a project from a workspace?
From Python, using the Automation Library in PSCAD, how can I unload a project from a workspace?
import mhrc.automation
pscad = mhrc.automation.launch_pscad()
project = pscad.project('test')
Is it something like...
project.unload()???
import mhrc.automation
pscad = mhrc.automation.launch_pscad()
project = pscad.project('test')
Is it something like...
project.unload()???