0

I am facing issue in converting below C# code to Python , Can anybody help me to How to convert this part of code to Python . Any help will be much appreciated

                mLogcatGrabProcess = new Process(); 

                mLogcatGrabProcess.StartInfo.FileName = mADBPath;

                mLogcatGrabProcess.StartInfo.Arguments = logcatcommandargs;

                mLogcatGrabProcess.StartInfo.UseShellExecute = false;

                mLogcatGrabProcess.StartInfo.RedirectStandardOutput = true;

                mLogcatGrabProcess.OutputDataReceived += LogCatOutputDataHandler;
    
                mLogcatGrabProcess.Start();

                mLogcatGrabProcess.BeginOutputReadLine();
Vicky250
  • 11
  • 3
  • 1
    `C hash` is not correct. C# is what you meant. Please update your title. – mjwills Jul 01 '20 at 06:29
  • Please explain why https://stackoverflow.com/questions/89228/calling-an-external-command-from-python does not answer your question. – mjwills Jul 01 '20 at 06:30

0 Answers0