Tagged Questions

A process that is part of a larger overall process

learn more… | top users | synonyms (1)

57
votes
12answers
25k views

Non-blocking read on a subprocess.PIPE in python

I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline ...
33
votes
5answers
31k views

Python - How do I pass a string into subprocess.Popen (using the stdin argument)?

If I do the following: import subprocess from cStringIO import StringIO subprocess.Popen(['grep','f'],stdout=subprocess.PIPE,stdin=StringIO('one\ntwo\nthree\nfour\nfive\nsix\n')).communicate()[0] I ...
25
votes
10answers
11k views

subprocess with timeout

In Python, I have a program snippet similar to the following that has the effect of running a custom command and returning the stdout data (or raise exception when exit code is non-zero): proc = ...
16
votes
4answers
4k views

In Python 2.5, how do I kill a subprocess?

I am using the subprocess package in Python to run a subprocess, which I later need to kill. However, the documentation of the subprocess package states that the terminate() function is only available ...
15
votes
8answers
3k views

How do I get 'real-time' information back from a subprocess.Popen in python (2.5)

I'd like to use the subprocess module in the following way: create a new process that potentially takes a long time to execute. capture stdout (or stderr, or potentially both, either together or ...
14
votes
2answers
228 views

When to use each method of launching a subprocess in Ruby

1. `` The Backtick defined in Kernel 1. a) %x{} Percent X < alternate syntax for The Backtick defined in parse.y, see discussion 2. system() Kernel#system 3. fork() Kernel#fork, ...
14
votes
2answers
534 views

How do I start and stop a Linux program using the subprocess module in Python?

I’m writing a web app that uses Selenium to screen-scrape another website. This screen-scraping only happens once a day, so I’d rather not leave Selenium and Xvfb running all the time. I’m trying to ...
14
votes
3answers
5k views

read subprocess stdout line by line

My python script uses subprocess to call a linux utility that is very noisy. I want to store all of the output to a log file, but only show some of it to the user. I thought the following would ...
14
votes
4answers
6k views

Python: Spawn parallel child processes on a multi-processor system - use multiprocessor package, subprocess package, XYZ package?

I am a Python newbie so please be gentle :) I have a Python script that I want to use as a controller to another Python script. I have a server with 64 processors, so want to spawn up to 64 child ...
14
votes
6answers
8k views

How can I run an external command asynchronously from Python?

I need to run a shell command asynchronously from a Python script. By this I mean that I want my Python script to continue running while the external command goes off and does whatever it needs to do. ...
14
votes
4answers
6k views

How do I run another script in Python without waiting for it to finish?

I am creating a little dashboard for a user that will allow him to run specific jobs. I am using Django so I want him to be able to click a link to start the job and then return the page back to him ...
13
votes
1answer
162 views

Windows - running .py directly vs running python blah.py behaves differently

I have a python script that uses subprocess: import subprocess print "Running stuff" subprocess.check_call(["do_stuff.bat"]) print "Stuff run" If this was named blah.py, and I run (from a command ...
12
votes
2answers
303 views

How can I combine Handles in Haskell?

I'd like to have something like bash's 2>&1 redirect in Haskell that combines stdout and stderr from a process into a single Handle. It would be nice to do this directly with ...
12
votes
5answers
10k views

Launch a shell command with in a python script, wait for the termination and return to the script

I've a python script that has to launch a shell command for every file in a dir: import os files = os.listdir(".") for f in files: os.execlp("myscript", "myscript", f) This works fine for the ...
11
votes
5answers
569 views

Decorate \ delegate a File object to add functionality

I've been writing a small Python script that executes some shell commands using the subprocess module and a helper function: import subprocess as sp def run(command, description): """Runs a ...
11
votes
5answers
19k views

Python, Popen and select - waiting for a process to terminate or a timeout

I run a subprocess using: p = subprocess.Popen("subprocess", stdout=subprocess.PIPE, stderr=subprocess.PIPE, ...
10
votes
2answers
476 views

Why is python's subprocess.call implemented like this?

The subprocess module has the convenience function call, which is implemented like this in both 2.6 and 3.1: def call(*popenargs, **kwargs): return Popen(*popenargs, **kwargs).wait() The ...
10
votes
3answers
1k views

How to terminate a python subprocess launched with shell=True

I'm launching a subprocess with the following command: p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) However, when I try to kill using: p.terminate() or p.kill() The command ...
10
votes
6answers
2k views

how to kill (or avoid) zombie processes with subprocess module

When I kick off a python script from within another python script using the subprocess module, a zombie process is created when the subprocess "completes". I am unable to kill this subprocess unless I ...
10
votes
7answers
5k views

What's the best way to duplicate fork() in windows?

How do I implement some logic that will allow me to duplicate the functionality on windows that I have on linux with fork() using python? I'm specifically trying to execute a method on the SAPI Com ...
9
votes
2answers
4k views

Why does subprocess.Popen() with shell=True work differently on Linux vs Windows?

When using subprocess.Popen(args, shell=True) to run "gcc --version" (just as an example), on Windows we get this: >>> from subprocess import Popen >>> Popen(['gcc', '--version'], ...
8
votes
3answers
334 views

Getting progress message from subprocess in Python

I got question about the subprocess module of python. I want to start a program which needs several minutes to complete. During this time i want to read the progress message of the program (which are ...
8
votes
5answers
1k views

How to replicate tee behavior in python when using subprocess?

I'm looking for a Python solution that will allow me to save the output of a command in a file without hiding it from the console. FYI: I'm asking about tee (as the Unix command line utility) and not ...
8
votes
5answers
3k views

Python subprocess/Popen with a modified environment

I believe that running an external command with a slightly modified environment is a very common case. That's how I tend to do it: import subprocess, os my_env = os.environ my_env["PATH"] = ...
8
votes
4answers
2k views

Cross-platform subprocess with hidden window

I want to open a process in the background and interact with it, but this process should be invisible in both Linux and Windows. In Windows you have to do some stuff with STARTUPINFO, while this ...
7
votes
1answer
100 views

Appending a process to a list (but doing nothing with it) alters program behaviour

In the following program, when I append the process to a list (a seemingly pointless thing to do), it runs as expected. But if I remove the append, the processes destructor is called many times before ...
7
votes
2answers
343 views

Run a program from python, and have it continue to run after the script is killed

I've tried running things like this: subprocess.Popen(['nohup', 'my_command'], stdout=open('/dev/null', 'w'), stderr=open('logfile.log', 'a')) This works if the ...
7
votes
3answers
1k views

How do I pass large numpy arrays between python subprocesses without saving to disk?

Is there a good way to pass a large chunk of data between two python subprocesses without using the disk? Here's a cartoon example of what I'm hoping to accomplish: import sys, subprocess, numpy ...
7
votes
2answers
1k views

How to clean up after subprocess.Popen?

I have a long-running python script with a perl worker subprocess. Data is sent in and out of the child proc through its stdin and stdout. Periodically, the child must be restarted. Unfortunately, ...
7
votes
4answers
1k views

Difference between subprocess.Popen and os.system

What is the difference between subprocess.Popen() and os.system() ?
7
votes
3answers
2k views

Running shell command from python and capturing the output

I want to write a function that will execute a shell command and return it's output as a string, no matter, is it an error or success message. I just want to get the same result that I would have ...
7
votes
2answers
549 views

Communicate multiple times with a process without breaking the pipe?

it's not the first time I'm having this problem and its really bugging me. Whenever I open a pipe using the Python subprocess module, I can only communicate with it once, as the documentation ...
7
votes
3answers
5k views

Retrieving the output of subprocess.call()

How can I get the output of a process run using subprocess.call()? Passing a StringIO.StringIO object to stdout gives this error: Traceback (most recent call last): File "<stdin>", line 1, ...
7
votes
2answers
10k views

Python OSError: [Errno 2]

I have the following code that is attempting to start each of the "commands" below in Linux. The module attempts to keep each of the 2 commands running if either should crash for whatever reason. ...
7
votes
2answers
6k views

Intercepting stdout of a subprocess while it is running

If this is my subprocess: import time, sys for i in range(200): sys.stdout.write( 'reading %i\n'%i ) time.sleep(.02) And this is the script controlling and modifying the output of the ...
7
votes
4answers
3k views

How do I get rid of Java child processes when my Java app exits/crashes?

I launch a child process in Java as follows: final String[] cmd = {"<childProcessName>"}; Process process = Runtime.getRuntime().exec(cmd); It now runs in the background. All good and fine. ...
6
votes
1answer
82 views

Can I split/merge output streams of subprocess.Popen?

I'm writing a wrapper class for use with a workflow manager. I would like to log output from an application (child process executed via subprocess.Popen) in a certain way: stdout of the child should ...
6
votes
1answer
137 views

Why does python subprocess.Popen launch a subprocess through cmd.exe?

I call subprocess like this: command = 'c:\somepath\myexe.exe' startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW p = subprocess.Popen(command, ...
6
votes
1answer
144 views

chaining Popen subprocesses properly

i have a construct like the following: os.mkfifo('pipe.tmp') enc = Popen(['encoder', '-i', 'pipe.tmp']) cap = Popen(['capture', '-f', 'pipe.tmp']) here cap is a process which normally writes to a ...
6
votes
2answers
352 views

Why is standard output from subprocess (redirected to unbuffered file) being buffered?

From http://docs.python.org/library/functions.html#open The optional bufsize argument specifies the file’s desired buffer size: 0 means unbuffered, 1 means line buffered, any other positive ...
6
votes
2answers
282 views

How to Detect in Sub Process When Parent Process Has Died?

In python, I have a parent process that spawns a handful of child processes. I've run into a situation where, due to an unhandled exception, the parent process was dieing and the child processes where ...
6
votes
2answers
534 views

Django + Apache + Windows WSGIDaemonProcess Alternative

After setting up a django site and running on the dev server, I have finally gotten around to figuring out deploying it in a production environment using the recommended mod_wsgi/apache22. I am ...
6
votes
2answers
291 views

How to attach debugger to a python subproccess?

I need to debug a child process spawned by multiprocessing.Process(). The pdb degugger seems to be unaware of forking and unable to attach to already running processes. Are there any smarter python ...
6
votes
2answers
2k views

Pipe subprocess standard output to a variable

I've searched around online, but can't find the answer to my question. What I want to do is run a command in pythong, using the subprocess module, and store the output in a variable. However, I do not ...
6
votes
2answers
858 views

Constantly print Subprocess output while process is running

To launch programs from my Python-scripts, im using the following method: def execute(command): process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) ...
6
votes
4answers
273 views

Why do I have to use .wait() with python's subprocess module?

I'm running a Perl script through the subprocess module in Python on Linux. The function that runs the script is called several times with variable input. def script_runner(variable_input): ...
6
votes
4answers
2k views

How can I read all availably data from subprocess.Popen.stdout (non blocking)?

I need a way to either read all currently available characters in stream created by Popen or to find out how many characters are left in the buffer. Backround: I want to remote control an interactive ...
6
votes
4answers
2k views

WindowsError [error 5] Access is denied

I'm using the killableprocess package (built on top of subprocess) for running processes Whenever I run the "killableprocess.Popen(command)" piece of code in my script I get the following error: ...
6
votes
6answers
1k views

Python subprocess: callback when cmd exits

I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE) I'm fairly new to Python, but it 'feels' like there ought to be some api that lets me do something similar to: ...
6
votes
2answers
1k views

Python's subprocessing with pipes and large files

I'm trying to use python + ffmpeg + oggenc to convert any audiofile to ogg. The program works, almost. But for big files (i think > ~6mb) the ffmpeg process starts to sleep at pipe_wait. I don't know ...

1 2 3 4 5 15