So I'm using ironpython to call in the app.py and run the script, It prints the result in the console, but I can't seem to get it in a variable, or even just a simple label in windows forms. Is there even a way to do accomplish this?
My code is:
var engine = Python.CreateEngine();
var app = engine.ExecuteFile("app.py");
The python app is just a simple Hello world code, but I'm going to change it in the future.