I have the following script.
try
{
PythonEngine.Initialize();
using (Py.GIL())
{
using (PyScope scope = Py.CreateScope())
{
string fileContent = File.ReadAllText(Path.Combine(@"../../", ScriptName));
var file = PythonEngine.Compile(fileContent);
scope.Execute(file);
}
}
When I run this script, it runs without issues but when I see the task manager I see no python process. I want to know what process is executing this script?