The Python subprocess module "allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes."

learn more… | top users | synonyms (2)

0
votes
3answers
19 views

Python Sourcing a CSH and passing setenv to a new subprocess

I'm currently trying to write some component tests for my team using python and I ran into a test procedure that tells the tester to source a csh file. This file has a bunch of setenv commands and ...
0
votes
1answer
14 views

Kill subprocess in Python in another function?

I'm very new in Python. This is my code: def start(self, widget): s = subprocess.Popen('myprocess') def stop(self, widget): #what to put here? I'm on Ubuntu. In the first function I ...
0
votes
1answer
52 views

what error it is?python scrip linux

the program get the ls directory list print the index of the items,then ask select one item, and print the item but i get this error: ./directory.py from: can't read /var/mail/subprocess ...
2
votes
0answers
16 views

Parallel Python (pp) and subprocess : task never ends on the client

I'm trying to use the module "Parallel Python" (pp) to distribute the computation of a "big" tool (gdal2tiles, if you've heard of it). I was running a few simple tests to get familiar with pp, but I ...
1
vote
2answers
25 views

Ruby equivalent of Python's subprocess.check_call/check_output

Python provides two convenient functions for calling subprocesses that might fail, subprocess.check_call and subprocess.check_output. Basically, subprocess.check_call(['command', 'arg1', ...]) ...
0
votes
0answers
11 views

Avoid deadlock using Popen without using sleep (Python 2.7)

I have a problem with deadlock using this Python script that parses the output produced piping two programs and stores the result in a directory x. import subprocess as sp from time import sleep p1 ...
1
vote
1answer
20 views

Using set input for stdin based on output from stdout with python subprocess

I would like to install a software automatically from python using subprocess.Popen. During the installation, this software outputs some information and then asks user a couple of questions (e.g., ...
0
votes
1answer
21 views

Run python script in different shell levels

//Starting a perl script os.system('./start.pl') //Make command used and o/p redirected to a file os.system('make > file') I am a beginner in Python. whenever i run the perl ...
0
votes
1answer
33 views

Subprocess not working correctly

I have this code that I need to run a subprocess with and print off the output of whats in the command window. import subprocess msprompt = ...
0
votes
2answers
32 views

subprocess.call doesn't work as expected

I have the following batch file (test.bat) my.py < commands.txt my.py does the following: import sys print sys.stdin.readlines() Everything works fine if I launch this batch file from ...
0
votes
3answers
31 views

why is subprocess.popen returning an empty string

I'm using python's subprocess.popen to fetch info of a video file. output = Popen('ffmpeg -i "'+avifile+'" -dframes 0 -vframes 0', executable="/bin/bash", stdout=PIPE, stderr=STDOUT, ...
0
votes
1answer
38 views

whats the difference between .communicate() and .communicate()[0]?

I'm using python. I'm trying to run a process and fetch the output using subprocess.popen. After reading around I see people using communicate()[0] but thats not in the docs, it is used in an example. ...
0
votes
2answers
28 views

python subprocess module can't execute shell

[root@localhost root]$ cat test.c #include <stdio.h> int main(int argc, char*argv[]){ system("/bin/sh"); } [root@localhost root]$ cat auto #!/usr/bin/env python ...
0
votes
0answers
15 views

Error while using subprocess with Django, Apache

I am trying to run an executable residing in the "/tmp" folder using subprocess.popen from Django. I have configured Django with Apache using mod_wsgi I always get a signal error '127'. I get proper ...
0
votes
1answer
23 views

running a binary file in python2.7 on linux

I'm having issues running a external program in python using Popen to pass multiple variables: #!/usr/bin/env python import sys import os import shlex, subprocess a = raw_input("Enter a number:") b ...
0
votes
1answer
26 views

Terminating subprocess in python2.7

I am working on windows 8 x64 system I am writing a code in which i am using subprocess to execute one lengthy program while execution i fetch output of program and analyse it runtime, for particular ...
1
vote
1answer
24 views

Execute python command and shell command (using subprocess) sequentially

I am puzzled by the order of execution of python command and shell command (from subprocess). For example, I've got a simple code: import subprocess import shlex command="echo 'test'" ...
2
votes
1answer
21 views

Terminate Python program on Ctrl+C when it's running a subprocess

I have a little program written in Python (version 2.7.3 on Linux) that runs an external command on a number of files in a loop. It does this using subprocess.check_output and it then writes data from ...
0
votes
0answers
50 views

Subproccessing with a for loop

I have this program that parses through a filepath and gets all files ending in a certain ending. Then I have to use a subproccess with these lists are created to run msbuild and print the results. ...
0
votes
1answer
36 views

Communicate with subprocess without waiting for the subprocess to terminate on windows

I have a simple echoprocess.py: import sys while True: data = sys.stdin.read() sys.stdout.write("Here is the data: " + str(data)) And a parentprocess.py from subprocess import Popen, PIPE ...
1
vote
0answers
53 views

Calling subprocess.Popen with stdin, stdout, and stderr set to subprocess.PIPE changes the behavior of the terminal

I recently developed a Python script to leverage a tool to retrieve metrics from JVMs via JMX. The parent process (p1) uses the following code to start another process (p2). p2 = subprocess.Popen( ...
0
votes
3answers
58 views

Getting output of a process at runtime

I am using a python script to run a process using subprocess.Popen and simultaneously store the output in a text file as well as print it on the console. This is my code: result = ...
-1
votes
0answers
43 views

Certain subprocess not working [closed]

I have this code here: import subprocess filename='C:\Users\bgbesase\Documents\Brent\Code\Visual Studio\bb.tree.UnitTests\bb.tree.UnitTests.vbproj' #subprocess.call(['C:\Program Files ...
-1
votes
2answers
30 views

python: subprocess.Popen and os.system do nothing [closed]

I have a command line python -i sdf_rdfization.py The script creates a simple text file, writes a string and then closes the file. This script is in the same folder with the script that I use os ...
0
votes
2answers
95 views

Why won't my python subprocess code work? [duplicate]

from subprocess import * test = subprocess.Popen('ls') print test When i try to run this simple code, I get an error window saying: WindowsError: [Error 2] The system cannot find the file ...
3
votes
3answers
91 views

asynchronous subprocess with timeout

I have a problem with spawning asynchronous subprocesses with timeout in Python 3. What I want to achieve: I want to spawn multiple processes asynchronously without waiting for a results but I want ...
1
vote
3answers
89 views

Python Subprocess: Too Many Open Files

I am using subprocess to call another program and save its return values to a variable. This process is repeated in a loop, and after a few thousands times the program crashed with the following ...
3
votes
1answer
47 views

subprocess.communicate() hangs on Windows 8 if parent process creates some child

I have a simple code which works fine on Win 2003: proc = subprocess.Popen('<some python script which runs another process>', stdout = subprocess.PIPE, stderr = subprocess.PIPE, stdin = ...
0
votes
0answers
20 views

Python : Subprocess, command waiting for input [duplicate]

I do the following: p=subprocess.Popen(["apt-get","upgrade"],stdout=subprocess.PIPE,stdin=subprocess.PIPE,stderr=subprocess.STDOUT) while p.poll() == None : line = p.stdout.readline() print ...
0
votes
0answers
28 views

How to improve the IPC through the pipes?

Help improve this code - the IPC through the pipes. I think that use function replace("\n", "\()") is unsafe, because string pickle.dumps(data) may include symbols "\()". Are there any sensible ways? ...
0
votes
1answer
37 views

Piping into a subprocess.call

What I want to do is something very similar to the accepted answer in this question, however with a slight change. The last line: print p3.communicate()[0] prints the output of p3. I would like to ...
-1
votes
2answers
34 views

Capture mongo shell output using subprocess.Popen

I am trying the following: #!/usr/bin/python import os, subprocess func = 'print("Hello World")' x = subprocess.Popen(['mongo', '--eval', func], stdout=subprocess.PIPE, ...
0
votes
3answers
51 views

how to kill all subprocess in python [closed]

In python I have opened 4 subprocess. Now I want to kill all previous process when new request is came in python script. I am using python 2.7 and windows 7 OS. Thanks,
1
vote
3answers
84 views

Python: running subprocess in parallel

I have the following code that writes the md5sums to a logfile for file in files_output: p=subprocess.Popen(['md5sum',file],stdout=logfile) p.wait() Will these be written in parallel? i.e. if ...
3
votes
2answers
127 views

Run R script from Python

I want to run an R-script from a Python script. The R-script is required for the projection of lat lon coordinates in a different coordinate system. I have considered two options to do this. In the ...
2
votes
1answer
33 views

virtualenv and subprocess.call() in mixed Python 2.7/3.3 environment

For some functional tests, I invoke a couple of utilities directly from the project directory, using Python's subprocess.call (or check_call which invokes the latter). This works well when the ...
0
votes
0answers
27 views

PyInstaller: using data files and subprocess

I have successfully bundled several of my python scripts into exe files using pyinstaller. However, I have hit a problem with a different python script that uses local data files. Using this question ...
1
vote
1answer
50 views

Python exec grep

I'm trying to grep a list of file from the "*.nasl" of "Openvas" which contains a certain port's number. I can make it directly in the terminal with the command : egrep --only-match '111' ...
0
votes
1answer
38 views

Execute ruby subprocess which requires interactive input

I need to start a subprocess from ruby, that takes over then returns control. This subprocess needs interactive input from the user, so it's io should be tied to stdin stdout and stderr. Further it ...
-2
votes
3answers
80 views

How do I run a Python method as a subprocess?

i need a help with a python project: Example: class MyFrame(wx.Frame): def __init__(self, parent, title): super(MyFrame, self).__init__(parent, title=title, size=(330, 300)) ...
0
votes
1answer
43 views

multiple “gnome-terminal” with python issue

I am writing a python program that runs the following: import subprocess import time def fun1(): terminal1 = ['gnome-terminal'] terminal1.extend(['-x', 'sh', '-c', '"roscore"']) pid = ...
0
votes
1answer
32 views

Python escaping sed and bash command with subprocess

Question: How do I use sed with python successfully? I have to run this command on a remote server to get a list of comma delimited hosts. When ran from bash I get what I want which is something like ...
0
votes
1answer
69 views

How to Clean Up subprocess.Popen Instances Upon Process Termination

I have a JavaScript application running on a Python / PyQt / QtWebKit foundation which creates subprocess.Popen objects to run external processes. Popen objects are kept in a dictionary and ...
0
votes
1answer
37 views

django (or wsgi) chain stdout from subprocess

I am writing a webservice in Django to handle image/video streams, but it's mostly done in an external program. For instance: client requests for /1.jpg?size=300x200 python code parse 300x200 in ...
0
votes
3answers
35 views

subprocess error while running an external python script

I am trying to execute a script "test.py" as below but running into the following error. import subprocess from subprocess import Popen, PIPE, STDOUT verifygerritscmd = ("python test.py ...
0
votes
1answer
32 views

Run an exe from python as a subprocess

I am trying to run the following command from python: C:\Program Files\Electric Cloud\ElectricCommander\bin\ectool --server server.domain.com login "username" "password" The command is not invoked ...
2
votes
2answers
46 views

Python - Limit amount of data subprocess.Popen can produce

I found lots of similar questions asking size of an object at run time in python. Some of the answers suggests to set a limit on amount of memory of sub-process. I don not want to set a limit on ...
0
votes
1answer
32 views

How can i display error if i use subprocess in python

I am using subprocess like this args = ['commandname', 'some args'] subprocess.check_output(args) sometimes i get this error command returned non-zero exit status 1 is there any way that if get ...
1
vote
1answer
30 views

subprocess.check_output quicker way

prules=subprocess.check_output("perl ruleFinder.pl "+datasetfile+" "+myrulepath, shell=True)##call a different program to produce a list of rules that predict contact I am using this code to call ...
0
votes
0answers
41 views

handling more than one subprocess with python and IDLE

I am trying to use a python script that should allow me to run some subprocesses and to extract some results. I have been looking around and I understood that using import os ...

1 2 3 4 5 34