#! python3
import mhrc.automation

pscad = mhrc.automation.launch_pscad(minimize=True)

for key, value in sorted(pscad.settings().items()):
    print("%33s: %s" % (key, value))

pscad.quit()
