コード例 #1
0
        public static Process startJythonShell(DataReceivedEventHandler dataReceivedCallBack)
        {
            var jythonShell = new JythonShell();

            jythonShell.startJythonShell(dataReceivedCallBack);
            return(jythonShell.jythonProcess);
        }
コード例 #2
0
        // if we pass a callback for logging we need to start a python shell
        public static Process executePythonFile(string fileToExecute, DataReceivedEventHandler dataReceivedCallBack)
        {
            var jythonShell = new JythonShell();

            jythonShell.startJythonShell(dataReceivedCallBack, fileToExecute);
            return(jythonShell.jythonProcess);
        }
コード例 #3
0
 public static Process startJythonShell(DataReceivedEventHandler dataReceivedCallBack)
 {
     var jythonShell = new JythonShell();
     jythonShell.startJythonShell(dataReceivedCallBack);
     return jythonShell.jythonProcess;            
 }
コード例 #4
0
 // if we pass a callback for logging we need to start a python shell
 public static Process executePythonFile(string fileToExecute, DataReceivedEventHandler dataReceivedCallBack)
 {
     var jythonShell = new JythonShell();
     jythonShell.startJythonShell(dataReceivedCallBack, fileToExecute);
     return jythonShell.jythonProcess;
 }