Cursor.Current = Cursors.WaitCursor;
Process process = new Process();
//不显示 console 窗口
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;process.StartInfo.FileName = @"C:Python27Python.exe";
process.StartInfo.WorkingDirectory = get_app_path();
process.StartInfo.Arguments = get_app_path() + "parser.py";
process.Start();process.WaitForExit();
Cursor.Current = Cursors.Default;