How do I get a process list of all running processes from Python, on Unix, containing then name of the command/process and process id, so I can filter and kill processes.

link|improve this question

47% accept rate
Are you filtering for anything specific in the process name? or just filtering for the process ids that match the process name? – nik Jul 7 '09 at 10:05
I need to match up some streaming session in Darwin Streaming Server that doesn't have any current listeners, with the process providing the stream. Some one mentioned pgrep/pkill which also would be useful, but I think I'll use krawyoti and do os.kill from python, I'm just more comfortable writing python code then using shell commands. – Johan Carlsson Jul 7 '09 at 17:24
feedback

3 Answers

up vote 2 down vote accepted

On linux, the easiest solution is probably to use the external ps command:

>>> import os
>>> data = [(int(p), c) for p, c in [x.rstrip('\n').split(' ', 1) \
...        for x in os.popen('ps h -eo pid:1,command')]]

On other systems you might have to change the options to ps.

Still, you might want to run man on pgrep and pkill.

link|improve this answer
pgrep/pkill looks like a good solution for what I need (at least this time). I've always missed a built in ps function in Python, so that's part of the reason I posted this question. Cheers – Johan Carlsson Jul 7 '09 at 11:32
1  
os.popen is deprecated. Use the subprocess module. – nosklo Jul 8 '09 at 11:35
1  
Huh, this is interesting. It's worth a question on its own: stackoverflow.com/questions/1098257 – krawyoti Jul 8 '09 at 13:59
feedback

On Linux, with a suitably recent Python which includes the subprocess module:

from subprocess import Popen, PIPE

process = Popen(['ps', '-eo' ,'pid,args'], stdout=PIPE, stderr=PIPE)
stdout, notused = process.communicate()
for line in stdout.splitlines():
    pid, cmdline = line.split(' ', 1)
    #Do whatever filtering and processing is needed

You may need to tweak the ps command slightly depending on your exact needs.

link|improve this answer
feedback

Why Python?
You can directly use killall on the process name.

link|improve this answer
he said he would filter and then kill – Umair Ahmed Jul 7 '09 at 9:55
Good observation, but why filter the ps output for the command name, gather process id values and then kill, when the killall does it for you? – nik Jul 7 '09 at 9:57
because I need to match up the processes with other data. – Johan Carlsson Jul 7 '09 at 11:29
I am retaining this answer because it highlights the need for a ithin-python solution. The question has no need for the kill part; it can be simply, how do I get the process list in Python? – nik Jun 30 '11 at 13:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.