How to "run automation file" through a python instruction (API)?
PSSE_PATH = r'C:\Program Files (x86)\PTI\PSSE32\PSSBIN'
sys.path.append(PSSE_PATH)
os.environ['PATH'] += ';' + PSSE_PATH
import psspy
psspy.psseinit(0)
psspy.case(str(archivo_sav.name))
#Here: "Run Automation File with python API"
psspy.save(os.path.join(Ruta,r"Archivo_prueba.sav"))
psspy.close_powerflow()