Python subprocess Module

Source: Internet
Author: User
Tags stdin python subprocess

Turn http://blog.csdn.net/imzoer/article/details/8678029

The purpose of subprocess is to start a new process and communicate with it.

Only one class is defined in the Subprocess module: Popen. You can use Popen to create processes and make complex interactions with processes. Its constructor is as follows:

Subprocess. Popen (args, bufsize=0, Executable=none, Stdin=none, Stdout=none, Stderr=none, Preexec_fn=none, Close_fds=false, shell= False, Cwd=none, Env=none, Universal_newlines=false, Startupinfo=none, creationflags=0)

The parameter args can be a string or sequence type (for example: list, tuple) that specifies the process's executable file and its arguments. If it is a sequence type, the first element is usually the path to the executable file. We can also explicitly use the executeable parameter to specify the path to the executable file.

The parameters stdin, stdout, stderr respectively represent the standard input, output, and error handles of the program. They can be pipe, file descriptor or file object, or set to none, which means inheriting from the parent process.

If the parameter shell is set to True, the program executes through the shell.

The parameter env is a dictionary type that specifies the environment variables for the child process. If env = None, the environment variables of the child process are inherited from the parent process.

Subprocess. PIPE

When you create a Popen object, subprocess. Pipe can initialize stdin, stdout, or stderr parameters. Represents a standard stream that communicates with a child process.

Subprocess. STDOUT

When you create a Popen object, the stderr parameter is initialized to indicate that the error is output through the standard output stream.

Methods of Popen:

Popen.poll ()

Used to check whether the child process has ended. Sets and returns the ReturnCode property.

Popen.wait ()

Wait for the child process to end. Sets and returns the ReturnCode property.

Popen.communicate (Input=none)

Interacts with the child process. Send data to stdin, or read data from stdout and stderr. Optional parameter input Specifies the parameters that are sent to the child process. Communicate () returns a tuple: (Stdoutdata, Stderrdata). Note: If you want to send data to it through the process's stdin, the parameter stdin must be set to pipe when the Popen object is created. Similarly, if you want to get data from stdout and stderr, you must set stdout and stderr to pipe.

Popen.send_signal (signal)

Sends a signal to a child process.

Popen.terminate ()

Stop (stop) child process. Under the Windows platform, this method will call Windows API TerminateProcess () to end the child process.

Popen.kill ()

Kills a child process.

Popen.stdin,popen.stdout, Popen.stderr, the official document says:

stdin, stdout and stderr Specify the executed programs ' standard input, standard output and STA Ndard error file handles, respectively. Valid values is PIPE, an existing file descriptor (a positive integer), an existing file object, and none.

Popen.pid

Gets the process ID of the child process.

Popen.returncode

Gets the return value of the process. Returns none if the process is not finished yet.

---------------------------------------------------------------

Simple to use:

[Python]View Plaincopy
    1. P=subprocess. Popen ("dir", shell=True)
    2. P.wait ()

The shell parameter is determined according to the command you want to execute, which is the dir command, it must be Shell=true, p.wait () can get the return value of the command.

If it is written as a=p.wait (), A is returncode. If you output a, it is possible that 0 "indicates successful execution."

---------------------------------------------------------------------------

Process Communication

If you want the output of a process, the pipeline is a convenient way to:

[Python]View Plaincopy
    1. P=subprocess. Popen ("dir", Shell=True, stdout=subprocess. PIPE, Stderr=subprocess. PIPE)
    2. (stdoutput,erroutput) = P.<span>commu</span>nicate ()

P.communicate will wait until the process exits and return the standard output and standard error output so that the child process output can be obtained.

Let's look at a communicate example.

The above example sends data to STDIN via communicate and then uses a tuple to receive the execution result of the command.

------------------------------------------------------------------------

Above, the standard output and the standard error output are separate, or can be combined, simply set the stderr parameter to subprocess. StdOut on it, this way:

[Python]View Plaincopy
    1. P=subprocess. Popen ("dir", Shell=True, stdout=subprocess. PIPE, Stderr=subprocess. STDOUT)
    2. (stdoutput,erroutput) = P.<span>commu</span>nicate ()

If you want to handle the output of a child process in a row, there is no problem:

[Python]View Plaincopy
    1. P=subprocess. Popen ("dir", Shell=True, stdout=subprocess. PIPE, Stderr=subprocess. STDOUT)
    2. While True:
    3. Buff = P.stdout.readline ()
    4. if buff = = ' and p.poll ()! = None:
    5. Break

------------------------------------------------------

Dead lock

But if you use a pipe and don't handle the output of the pipeline, be careful, if the child process outputs too much data, a deadlock can occur, such as the following usage:

[Python]View Plaincopy
    1. P=subprocess. Popen ("Longprint", shell=True, stdout=subprocess. PIPE, Stderr=subprocess. STDOUT)
    2. P.wait ()

Longprint is an imaginary process with a lot of output, so in my XP, Python2.5 environment, when the output reaches 4096, the deadlock occurs. Of course, if we use P.stdout.readline or p.communicate to clean up the output, then no matter how much output, the deadlock will not happen. Or we can avoid deadlocks by not using pipelines, such as not redirecting, or redirecting to files.

----------------------------------

Subprocess can also be connected to multiple commands to execute.

In the shell we know that you want to connect multiple commands to use a pipeline.

In subprocess, the output from the previous command can be used as input for the next execution. Examples are as follows:

Example, P2 uses the result of the first execution of the command P1 stdout as the input data, and then executes the tail command.

- -------------------

The following is a larger example. Used to ping a series of IP addresses and output whether the hosts of these addresses are alive. The code references the Python UNIX Linux System Administration Guide.

[Python]View Plaincopy
  1. #!/usr/bin/env python
  2. From threading Import Thread
  3. Import subprocess
  4. From Queue Import queue
  5. num_threads=3
  6. ips=[' 127.0.0.1 ',' 116.56.148.187 ']
  7. Q=queue ()
  8. def pingme (I,queue):
  9. while True:
  10. Ip=queue.get ()
  11. print ' Thread%s pinging%s '% (I,IP)
  12. Ret=subprocess.call (' ping-c 1%s '% ip,shell=true,stdout=open ('/dev/null ',' W '), stderr=subprocess. STDOUT)
  13. if ret==0:
  14. Print '%s is alive! '%ip
  15. elif ret==1:
  16. Print '%s is down ... '%ip
  17. Queue.task_done ()
  18. #start Num_threads Threads
  19. For I in Range (num_threads):
  20. T=thread (target=pingme,args= (I,Q))
  21. T.setdaemon (True)
  22. T.start ()
  23. For IP in IPs:
  24. Q.put (IP)
  25. Print ' main thread waiting ... '
  26. Q.join (); print ' Done '

The main benefit of using subprocess in the code above is that using multiple threads to ping commands can save a lot of time.

Assuming that we use a thread to process, each ping waits until the previous one finishes and pings the other address. So if there are 100 addresses, the total time required is =100* average time.

If multiple threads are used, the maximum execution time is the total elapsed time of the entire program. "Time saves more than a single thread"

Pay attention to the learning of the queue module here.

The execution of the PINGME function is this:

The thread that starts is going to execute the PINGME function.

The PINGME function detects if there are elements in the queue. If so, remove and execute the ping command.

This queue is shared by multiple threads. So we don't use lists here. "Assuming we use the list here, we need to do the synchronization control ourselves." The queue itself has been synchronously controlled by the semaphore, saving ourselves from doing synchronous control work =. =

The join function of Q in the code is blocking the current thread. The following is an e-text comment

 Queue. Join ()

Blocks until all items in the queue has been gotten and processed (Task_done ()).

---------------------------------------------

When I learned the processing module, I encountered the join function of the process. The join function of the process means that the wait process is finished running. This is the same as the join of the queue here. Processing Module Learning article here

Subprocess.call (*popenargs, **kwargs)
Run command with arguments. Wait for command to complete and then return the ReturnCode attribute


Subprocess.check_call (*popenargs, **kwargs)
Run command with arguments. Wait for command to complete. If The exit code is zero then return, otherwise raise calledprocesserror. The Calledprocesserror object'll has the return code in the ReturnCode attribute.

Python subprocess Module

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.