我有什么方法可以通过Python中的进程名称获取PID?
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
3110 meysam 20 0 971m 286m 63m S 14.0 7.9 14:24.50 chrome
例如,我需要3110
获取chrome
。
答案 0 :(得分:48)
您可以使用pidof
到subprocess.check_output按名称获取流程的pid:
from subprocess import check_output
def get_pid(name):
return check_output(["pidof",name])
In [5]: get_pid("java")
Out[5]: '23366\n'
check_output(["pidof",name])
将以"pidof process_name"
运行命令,如果返回代码非零,则会引发CalledProcessError。
要处理多个条目并转换为整数:
from subprocess import check_output
def get_pid(name):
return map(int,check_output(["pidof",name]).split())
在[21]中:get_pid(“chrome”)
Out[21]:
[27698, 27678, 27665, 27649, 27540, 27530, 27517, 14884, 14719, 13849, 13708, 7713, 7310, 7291, 7217, 7208, 7204, 7189, 7180, 7175, 7166, 7151, 7138, 7127, 7117, 7114, 7107, 7095, 7091, 7087, 7083, 7073, 7065, 7056, 7048, 7028, 7011, 6997]
或者通过-s
标志获得单个pid:
def get_pid(name):
return int(check_output(["pidof","-s",name]))
In [25]: get_pid("chrome")
Out[25]: 27698
答案 1 :(得分:7)
对于posix(Linux,BSD等...只需要挂载/ proc目录),它更容易使用/ proc中的os文件。 它纯粹的python,不需要在外面调用shell程序。
适用于python 2和3(唯一的区别(2to3)是异常树,因此" 除了异常",我不喜欢但保持兼容性。也可以创建自定义异常。)
#!/usr/bin/env python
import os
import sys
for dirname in os.listdir('/proc'):
if dirname == 'curproc':
continue
try:
with open('/proc/{}/cmdline'.format(dirname), mode='rb') as fd:
content = fd.read().decode().split('\x00')
except Exception:
continue
for i in sys.argv[1:]:
if i in content[0]:
print('{0:<12} : {1}'.format(dirname, ' '.join(content)))
示例输出(它的工作方式类似于pgrep):
phoemur ~/python $ ./pgrep.py bash
1487 : -bash
1779 : /bin/bash
答案 2 :(得分:6)
您还可以使用pgrep
,在prgep
中您还可以为匹配提供模式
import subprocess
child = subprocess.Popen(['pgrep','program_name'], stdout=subprocess.PIPE, shell=True)
result = child.communicate()[0]
你也可以像这样使用awk
和
ps aux | awk '/name/{print $2}'
答案 3 :(得分:4)
改进Padraic的答案:当check_output
返回非零代码时,它会引发CalledProcessError。当进程不存在或未运行时会发生这种情况。
我要做的就是抓住这个例外:
#!/usr/bin/python
from subprocess import check_output, CalledProcessError
def getPIDs(process):
try:
pidlist = map(int, check_output(["pidof", process]).split())
except CalledProcessError:
pidlist = []
print 'list of PIDs = ' + ', '.join(str(e) for e in pidlist)
if __name__ == '__main__':
getPIDs("chrome")
输出:
$ python pidproc.py
list of PIDS = 31840, 31841, 41942
答案 4 :(得分:1)
您可以使用psutil
软件包:
安装
pip install psutil
用法:
import psutil
process_name = "chrome"
pid = None
for proc in psutil.process_iter():
if process_name in proc.name():
pid = proc.pid
答案 5 :(得分:0)
如果您的操作系统基于Unix,请使用以下代码:
import os
def check_process(name):
output = []
cmd = "ps -aef | grep -i '%s' | grep -v 'grep' | awk '{ print $2 }' > /tmp/out"
os.system(cmd % name)
with open('/tmp/out', 'r') as f:
line = f.readline()
while line:
output.append(line.strip())
line = f.readline()
if line.strip():
output.append(line.strip())
return output
然后调用它,并将其传递给进程名称以获取所有PID。
>>> check_process('firefox')
['499', '621', '623', '630', '11733']
答案 6 :(得分:0)
自Python 3.5起,推荐subprocess.run()胜过subprocess.check_output():
>>> int(subprocess.run(["pidof", "-s", "your_process"], stdout=subprocess.PIPE).stdout)
此外,从Python 3.7开始,您可以使用capture_output=true
参数捕获stdout和stderr:
>>> int(subprocess.run(["pidof", "-s", "your process"], capture_output=True).stdout)
答案 7 :(得分:0)
如果您使用的是 Windows, 您可以使用以下代码获取进程/应用程序的 PID 及其映像名称:
from subprocess import Popen, PIPE
def get_pid_of_app(app_image_name):
final_list = []
command = Popen(['tasklist', '/FI', f'IMAGENAME eq {app_image_name}', '/fo', 'CSV'], stdout=PIPE, shell=False)
msg = command.communicate()
output = str(msg[0])
if 'INFO' not in output:
output_list = output.split(app_image_name)
for i in range(1, len(output_list)):
j = int(output_list[i].replace("\"", '')[1:].split(',')[0])
if j not in final_list:
final_list.append(j)
return final_list
它会返回你所有的应用程序的PID,比如firefox或chrome,例如
>>> get_pid_of_app("firefox.exe")
[10908, 4324, 1272, 6936, 1412, 2824, 6388, 1884]
如果有帮助请告诉我
答案 8 :(得分:0)
在 Unix 上,您可以使用 pyproc2
包。
actionButton("show", "Show modal dialog"),
server <- function(input, output) {
observeEvent(input$show, {
showModal(modalDialog(
title = "Somewhat important message",
"This is a somewhat important message.",
easyClose = TRUE,
footer = NULL
))
})
}
pip install pyproc2