當前位置:首頁 » 編程語言 » python獲取進程id

python獲取進程id

發布時間: 2022-07-29 17:41:53

python subprocess怎樣才能 popen的進程

在收集snmp數據的過程中用到了subprocess這個模塊,本來想用其他python裡面關於snmp的庫,還是覺得麻煩就直接調用snmpwalk來收集數據。

最開始想用subprocess.call()這個函數,然而這個函數沒有和其他進程通信的功能就放棄了

google了一下找到subprocess.Popen()這個函數,具體用法後面會貼一個別人寫的帖子

其中subprocess.PIPE類似於pipe()系統調用,不過不需要指定PID,只需要把stdout,stdin,error指定為subprocess.PIPE就可以了

我寫的這個小腳本裡面有參數shell=True,意思是通過shell執行命令而不是直接的execvp()

#!/usr/bin/env python
# gathering snmp data
import subprocess
import os

cmd="snmpwalk -v 2c ip -c group"
fd=open("/home/user/snmptest","w")
data=subprocess.Popen(cmd,stdout=subprocess.PIPE,shell=True)
fd.write(data.stdout.read())
fd.close()

執行之後snmptest裡面就寫入了收集來的snmp數據

另外貼一個別人總結的subprocess的使用方法

Python模塊學習 ---- subprocess 創建子進程

最近,我們老大要我寫一個
守護者程序,對伺服器進程進行守護。如果伺服器不幸掛掉了,守護者能即時的重啟應用程序。上網Google了一下,發現Python有很幾個模塊都可以創
建進程。最終我選擇使用subprocess模塊,因為在Python手冊中有這樣一段話:

This mole intends to replace several
other, older moles and functions, such as:
os.system、os.spawn*、os.popen*、popen2.*、commands.*

subprocess被用來替換一些老的模塊和函數,如:os.system、 os.spawn*、os.popen*、popen2.*、commands.*。可見,subprocess是被推薦使用的模塊。

下面是一個很簡單的例子,創建一個新進程,執行app1.exe,傳入相當的參數,並列印出進 程的返回值:

import subprocess

returnCode = subprocess.call('app1.exe -a -b -c -d')
print 'returncode:', returnCode

#----- 結果 --------
#Python is powerful
#app1.exe
#-a
#-b
#-c
#-d
returncode: 0

app1.exe是一個非常簡單的控制台程序,它只列印出傳入的參數,代碼如下:

#include
using namespace std;

int main(int argc, const char *argv[])
{
cout << "Python is powerful" << endl;
for (int i = 0; i < argc; i++)
{
cout << argv[i] << endl;
}

return 0;
}

閑話少說,下面開始詳細介紹subprocess模塊。subprocess模塊中只定義 了一個類: Popen。可以使用Popen來創建進程,並與進程進行復雜的交互。它的構造函數如下:

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)
參數args可以是字元串或者序列類型(如:list,元組),用於指定進程的可執行文件及其參數。如果是序列類型,第一個元素通常是可執行文件的路
徑。我們也可以顯式的使用executeable參數來指定可執行文件的路徑。在windows操作系統上,Popen通過調用
CreateProcess()來創建子進程,CreateProcess接收一個字元串參數,如果args是序列類型,系統將會通過
list2cmdline()函數將序列類型轉換為字元串。
參數bufsize:指定緩沖。我到現在還不清楚這個參數的具體含義,望各個大牛指點。
參數executable用於指定可執行程序。一般情況下我們通過args參數來設置所要運行的程序。如果將參數shell設為 True,executable將指定程序使用的shell。在windows平台下,默認的shell由COMSPEC環境變數來指定。
參數stdin, stdout, stderr分別表示程序的標准輸入、輸出、錯誤句柄。他們可以是PIPE,文件描述符或文件對象,也可以設置為None,表示從父進程繼承。
參數preexec_fn只在Unix平台下有效,用於指定一個可執行對象(callable object),它將在子進程運行之前被調用。
參數Close_sfs:在windows平台下,如果close_fds被設置為True,則新創建的子進程將不會繼承父進程的輸入、輸出、錯誤管
道。我們不能將close_fds設置為True同時重定向子進程的標准輸入、輸出與錯誤(stdin, stdout, stderr)。
如果參數shell設為true,程序將通過shell來執行。
參數cwd用於設置子進程的當前目錄。
參數env是字典類型,用於指定子進程的環境變數。如果env = None,子進程的環境變數將從父進程中繼承。
參數Universal_newlines:不同操作系統下,文本的換行符是不一樣的。如:windows下用'\r\n'表示換,而linux下用 '\n'。如果將此參數設置為True,Python統一把這些換行符當作'\n'來處理。
參數startupinfo與createionflags只在windows下用效,它們將被傳遞給底層的CreateProcess()函數,用 於設置子進程的一些屬性,如:主窗口的外觀,進程的優先順序等等。

subprocess.PIPE
在創建Popen對象時,subprocess.PIPE可以初始化stdin, stdout或stderr參數。表示與子進程通信的標准流。

subprocess.STDOUT
創建Popen對象時,用於初始化stderr參數,表示將錯誤通過標准輸出流輸出。

Popen的方法:

Popen.poll()
用於檢查子進程是否已經結束。設置並返回returncode屬性。

Popen.wait()
等待子進程結束。設置並返回returncode屬性。

Popen.communicate(input=None)
與子進程進行交互。向stdin發送數據,或從stdout和stderr中讀取數據。可選參數input指定發送到子進程的參數。
Communicate()返回一個元組:(stdoutdata,
stderrdata)。注意:如果希望通過進程的stdin向其發送數據,在創建Popen對象的時候,參數stdin必須被設置為PIPE。同樣,如
果希望從stdout和stderr獲取數據,必須將stdout和stderr設置為PIPE。

Popen.send_signal(signal)
向子進程發送信號。

Popen.terminate()
停止(stop)子進程。在windows平台下,該方法將調用Windows API TerminateProcess()來結束子進程。

Popen.kill()
殺死子進程。

Popen.stdin
如果在創建Popen對象是,參數stdin被設置為PIPE,Popen.stdin將返回一個文件對象用於策子進程發送指令。否則返回None。

Popen.stdout
如果在創建Popen對象是,參數stdout被設置為PIPE,Popen.stdout將返回一個文件對象用於策子進程發送指令。否則返回 None。

Popen.stderr
如果在創建Popen對象是,參數stdout被設置為PIPE,Popen.stdout將返回一個文件對象用於策子進程發送指令。否則返回 None。

Popen.pid
獲取子進程的進程ID。

Popen.returncode
獲取進程的返回值。如果進程還沒有結束,返回None。

下面是一個非常簡單的例子,來演示supprocess模塊如何與一個控制項台應用程序進行交 互。

import subprocess

p = subprocess.Popen("app2.exe", stdin = subprocess.PIPE, \
stdout = subprocess.PIPE, stderr = subprocess.PIPE, shell = False)

p.stdin.write('3\n')
p.stdin.write('4\n')
print p.stdout.read()

#---- 結果 ----
input x:
input y:
3 + 4 = 7

app2.exe也是一個非常簡單的控制台程序,它從界面上接收兩個數值,執行加操作,並將結 果列印到控制台上。代碼如下:

#include
using namespace std;

int main(int argc, const char *artv[])
{
int x, y;
cout << "input x: " << endl;
cin >> x;
cout << "input y: " << endl;
cin >> y;
cout << x << " + " << y << " = " << x + y << endl;

return 0;
}

supprocess模塊提供了一些函數,方便我們用於創建進程。

subprocess.call(*popenargs, **kwargs)
運行命令。該函數將一直等待到子進程運行結束,並返回進程的returncode。文章一開始的例子就演示了call函數。如果子進程不需要進行交 互,就可以使用該函數來創建。

subprocess.check_call(*popenargs, **kwargs)
與subprocess.call(*popenargs, **kwargs)功能一樣,只是如果子進程返回的returncode不為0的話,將觸發CalledProcessError異常。在異常對象中,包 括進程的returncode信息。

② python中怎麼根據進程號獲取進程名

安裝第三方庫

pipinstallpsutil

使用如下,假設進程號為3213

importpsutil
proc=psutil.Process(pid=3213)
printproce.name()

③ Linux SHELL 獲取進程ID

slp後無論加不加& ,pid中獲取到的實際進程ID和main進程ID始終是一樣的,因為slp函數是在當前腳本進程中運行。除非你調用外部腳本。

你可以在 slp & 這句後加一句 ps >/tmp/log
然後看看slp後加&和不加&的情況下/tmp/log中顯示的進程列表有何不同,就應該明白了。區別僅在於 $! 有值和沒有值。

④ python函數返回值為」id「:「23」,如何獲取23

最近遇到os.system()執行系統命令的情況,上網搜集了一下資料,整理如下,以備不時之需,同時也希望能幫到某些人。

一、python中的 os.system(cmd)的返回值與linux命令返回值(具體參見本文附加內容)的關系
大家都習慣用os.systemv()函數執行linux命令,該函數的返回值十進制數(分別對應一個16位的二進制數)。該函數的返回值與 linux命令返回值兩者的轉換關系為:該函數的返回值(十進制)轉化成16二進制數,截取其高八位(如果低位數是0的情況下,有關操作系統的錯誤碼共 131個,所以低位都是零),然後轉乘十進制數即為 linux命令返回值0。
例如:
os.system()返回值為0 linux命令返回值也為0.
os.system()返回值為256,十六位二進制數示為:00000001,00000000,高八位轉乘十進制為 1 對應 linux命令返回值 1
os.system()返回值為512,十六位二進制數示為:00000010,00000000,高八位轉乘十進制為 2 對應 linux命令返回值 2
......其它同理
os.system()返回值為32512,十六位二進制數示為:01111111,00000000,高八位轉乘十進制為 127 對應 linux命令返回值 127

........

/**********************************************************************************************************************/
問題:/bin/xxx.py是一個返回碼為1的程序。當python 程序使用os.system(」./bin/xxx.py」) 這樣調用的時候, 成功運行後os.system 的返回值出現了問題,變成了256 ,也就是0×100。而不是正常應該返回的1。

解決:查閱了文檔發現os.system()的返回為:
On Unix, the return value is the exit status of the process encoded in the format specified for wait().
而os.wait()的返回為:
a 16-bit number, whose low byte is the signal number that killed the process, and whose high byte is the exit status (if the signal number
is zero);
os.system的返回值並不是執行程序的返回結果。而是一個16位的數,它的高位才是返回碼。也就是說os.system()返回256即 0×0100,返回碼應該是其高位0×01即1。所以要獲取程序運行退出的值(比如C的main函數中的return 0),需要處理一下。
ret = os.system('./a.out')
ret >>= 8
這樣才能獲取到正確的返回值。另外還要注意:python獲取到的值是無符號整數,所以返回負值的時候,列印出來是很大的正值。比如返回-1,python 會獲取到255,-2則254,以此類推。所以最好就判斷是否為0就可以了,實在要判斷自己寫的c程序返回值,建議返回0,1,2,3等值,出錯返回 -1。
另外,我遇到一次明明處理好了返回值,c程序調試信息提示也該返回值0了,結果python獲取到的是 -1,而且無論c程序返回多少,python都獲取-1。後來排查c程序的問題,發現原來是因為我這個python程序本身是由另一個C程序調用的,而調 用它的那個C程序中將SIGCLD信號忽略了(這表明python是根據子進程退出時產生的信號來獲取返回值的),我將那個C程序的SIGCLD綁定到函 數,即使那個函數什麼也不做,python也能獲取到正確的返回值了。

/**********************************************************************************************************************/
linux命令執行後無論成功與否都有一個返回值:
如果為 0,則表示命令執行成功,其它值則表示錯誤,具體的錯誤碼含義如下:
"OS error code 1: Operation not permitted"
"OS error code 2: No such file or directory"
"OS error code 3: No such process"
"OS error code 4: Interrupted system call"
"OS error code 5: Input/output error"
"OS error code 6: No such device or address"
"OS error code 7: Argument list too long"
"OS error code 8: Exec format error"
"OS error code 9: Bad file descriptor"
"OS error code 10: No child processes"
"OS error code 11: Resource temporarily unavailable"
"OS error code 12: Cannot allocate memory"
"OS error code 13: Permission denied"
"OS error code 14: Bad address"
"OS error code 15: Block device required"
"OS error code 16: Device or resource busy"
"OS error code 17: File exists"
"OS error code 18: Invalid cross-device link"
"OS error code 19: No such device"
"OS error code 20: Not a directory"
"OS error code 21: Is a directory"
"OS error code 22: Invalid argument"
"OS error code 23: Too many open files in system"
"OS error code 24: Too many open files"
"OS error code 25: Inappropriate ioctl for device"
"OS error code 26: Text file busy"
"OS error code 27: File too large"
"OS error code 28: No space left on device"
"OS error code 29: Illegal seek"
"OS error code 30: Read-only file system"
"OS error code 31: Too many links"
"OS error code 32: Broken pipe"
"OS error code 33: Numerical argument out of domain"
"OS error code 34: Numerical result out of range"
"OS error code 35: Resource deadlock avoided"
"OS error code 36: File name too long"
"OS error code 37: No locks available"
"OS error code 38: Function not implemented"
"OS error code 39: Directory not empty"
"OS error code 40: Too many levels of symbolic links"
"OS error code 42: No message of desired type"
"OS error code 43: Identifier removed"
"OS error code 44: Channel number out of range"
"OS error code 45: Level 2 not synchronized"
"OS error code 46: Level 3 halted"
"OS error code 47: Level 3 reset"
"OS error code 48: Link number out of range"
"OS error code 49: Protocol driver not attached"
"OS error code 50: No CSI structure available"
"OS error code 51: Level 2 halted"
"OS error code 52: Invalid exchange"
"OS error code 53: Invalid request descriptor"
"OS error code 54: Exchange full"
"OS error code 55: No anode"
"OS error code 56: Invalid request code"
"OS error code 57: Invalid slot"
"OS error code 59: Bad font file format"
"OS error code 60: Device not a stream"
"OS error code 61: No data available"
"OS error code 62: Timer expired"
"OS error code 63: Out of streams resources"
"OS error code 64: Machine is not on the network"
"OS error code 65: Package not installed"
"OS error code 66: Object is remote"
"OS error code 67: Link has been severed"
"OS error code 68: Advertise error"
"OS error code 69: Srmount error"
"OS error code 70: Communication error on send"
"OS error code 71: Protocol error"
"OS error code 72: Multihop attempted"
"OS error code 73: RFS specific error"
"OS error code 74: Bad message"
"OS error code 75: Value too large for defined data type"
"OS error code 76: Name not unique on network"
"OS error code 77: File descriptor in bad state"
"OS error code 78: Remote address changed"
"OS error code 79: Can not access a needed shared library"
"OS error code 80: Accessing a corrupted shared library"
"OS error code 81: .lib section in a.out corrupted"
"OS error code 82: Attempting to link in too many shared libraries"
"OS error code 83: Cannot exec a shared library directly"
"OS error code 84: Invalid or incomplete multibyte or wide character"
"OS error code 85: Interrupted system call should be restarted"
"OS error code 86: Streams pipe error"
"OS error code 87: Too many users"
"OS error code 88: Socket operation on non-socket"
"OS error code 89: Destination address required"
"OS error code 90: Message too long"
"OS error code 91: Protocol wrong type for socket"
"OS error code 92: Protocol not available"
"OS error code 93: Protocol not supported"
"OS error code 94: Socket type not supported"
"OS error code 95: Operation not supported"
"OS error code 96: Protocol family not supported"
"OS error code 97: Address family not supported by protocol"
"OS error code 98: Address already in use"
"OS error code 99: Cannot assign requested address"
"OS error code 100: Network is down"
"OS error code 101: Network is unreachable"
"OS error code 102: Network dropped connection on reset"
"OS error code 103: Software caused connection abort"
"OS error code 104: Connection reset by peer"
"OS error code 105: No buffer space available"
"OS error code 106: Transport endpoint is already connected"
"OS error code 107: Transport endpoint is not connected"
"OS error code 108: Cannot send after transport endpoint shutdown"
"OS error code 109: Too many references: cannot splice"
"OS error code 110: Connection timed out"
"OS error code 111: Connection refused"
"OS error code 112: Host is down"
"OS error code 113: No route to host"
"OS error code 114: Operation already in progress"
"OS error code 115: Operation now in progress"
"OS error code 116: Stale NFS file handle"
"OS error code 117: Structure needs cleaning"
"OS error code 118: Not a XENIX named type file"
"OS error code 119: No XENIX semaphores available"
"OS error code 120: Is a named type file"
"OS error code 121: Remote I/O error"
"OS error code 122: Disk quota exceeded"
"OS error code 123: No medium found"
"OS error code 124: Wrong medium type"
"OS error code 125: Operation canceled"
"OS error code 126: Required key not available"
"OS error code 127: Key has expired"
"OS error code 128: Key has been revoked"
"OS error code 129: Key was rejected by service"
"OS error code 130: Owner died"
"OS error code 131: State not recoverable"

⑤ python怎麼獲得進程的pid

#-*-encoding:UTF-8-*-
importos
importsys
importstring
importpsutil
importre

defget_pid(name):
process_list=psutil.get_process_list()
regex="pid=(d+),sname='"+name+"'"
printregex
pid=0
forlineinprocess_list:
process_info=str(line)
ini_regex=re.compile(regex)
result=ini_regex.search(process_info)
ifresult!=None:
pid=string.atoi(result.group(1))
printresult.group()
break
defmain(argv):<br>name=argv[1]<br>get_pid(name)

if__name__=="__main__":
main(sys.argv)

⑥ python 中os.system和commands.getoutput的區別

1. 使用os.system("cmd")

這是最簡單的一種方法,特點是執行的時候程序會打出cmd在linux上執行的信息。使用前需要import os。

[python]

os.system("ls")

2. 使用Popen模塊產生新的process

現在大部分人都喜歡使用Popen。Popen方法不會列印出cmd在linux上執
行的信息。的確,Popen非常強大,支持多種參數和模式。使用前需要from subprocess import Popen,
PIPE。但是Popen函數有一個缺陷,就是它是一個阻塞的方法。如果運行cmd時產生的內容非常多,函數非常容易阻塞住。解決辦法是不使用
wait()方法,但是也不能獲得執行的返回值了。

Popen原型是:

[python]

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)

參數bufsize:指定緩沖。我到現在還不清楚這個參數的具體含義,望各個大牛指點。

參數executable用於指定可執行程序。一般情況下我們通過args參數來設置所要運行的程序。如果將參數shell設為 True,executable將指定程序使用的shell。在windows平台下,默認的shell由COMSPEC環境變數來指定。

參數stdin, stdout, stderr分別表示程序的標准輸入、輸出、錯誤句柄。他們可以是PIPE,文件描述符或文件對象,也可以設置為None,表示從父進程繼承。

參數preexec_fn只在Unix平台下有效,用於指定一個可執行對象(callable object),它將在子進程運行之前被調用。

參數Close_sfs:在windows平台
下,如果close_fds被設置為True,則新創建的子進程將不會繼承父進程的輸入、輸出、錯誤管
道。我們不能將close_fds設置為True同時重定向子進程的標准輸入、輸出與錯誤(stdin, stdout, stderr)。

如果參數shell設為true,程序將通過shell來執行。

參數cwd用於設置子進程的當前目錄。

參數env是字典類型,用於指定子進程的環境變數。如果env = None,子進程的環境變數將從父進程中繼承。

參數Universal_newlines:不同操作系統下,文本的換行符是不一樣的。如:windows下用』/r/n』表示換,而Linux下用 『/n』。如果將此參數設置為True,Python統一把這些換行符當作』/n』來處理。

參數startupinfo與createionflags只在windows下用效,它們將被傳遞給底層的CreateProcess()函數,用 於設置子進程的一些屬性,如:主窗口的外觀,進程的優先順序等等。

subprocess.PIPE
在創建Popen對象時,subprocess.PIPE可以初始化stdin, stdout或stderr參數,表示與子進程通信的標准流。

subprocess.STDOUT
創建Popen對象時,用於初始化stderr參數,表示將錯誤通過標准輸出流輸出。

Popen的方法:

Popen.poll()
用於檢查子進程是否已經結束。設置並返回returncode屬性。

Popen.wait()
等待子進程結束。設置並返回returncode屬性。

Popen.communicate(input=None)
與子進程進行交互。向stdin發送數據,或從stdout和stderr中讀取數據。可選參數input指定發送到子進程的參數。
Communicate()返回一個元組:(stdoutdata,
stderrdata)。注意:如果希望通過進程的stdin向其發送數據,在創建Popen對象的時候,參數stdin必須被設置為PIPE。同樣,如
果希望從stdout和stderr獲取數據,必須將stdout和stderr設置為PIPE。

Popen.send_signal(signal)
向子進程發送信號。

Popen.terminate()
停止(stop)子進程。在windows平台下,該方法將調用Windows API TerminateProcess()來結束子進程。

Popen.kill()
殺死子進程。

Popen.stdin
如果在創建Popen對象是,參數stdin被設置為PIPE,Popen.stdin將返回一個文件對象用於策子進程發送指令。否則返回None。

Popen.stdout
如果在創建Popen對象是,參數stdout被設置為PIPE,Popen.stdout將返回一個文件對象用於策子進程發送指令。否則返回 None。

Popen.stderr
如果在創建Popen對象是,參數stdout被設置為PIPE,Popen.stdout將返回一個文件對象用於策子進程發送指令。否則返回 None。

Popen.pid
獲取子進程的進程ID。

Popen.returncode
獲取進程的返回值。如果進程還沒有結束,返回None。

例如:

[python]

p = Popen("cp -rf a/* b/", shell=True, stdout=PIPE, stderr=PIPE)
p.wait()
if p.returncode != 0:
print "Error."
return -1

3. 使用commands.getstatusoutput方法
這個方法也不會列印出cmd在linux上執行的信息。這個方法唯一的優點是,它不是一個阻塞的方法。即沒有Popen函數阻塞的問題。使用前需要import commands。

例如:

[python]

status, output = commands.getstatusoutput("ls")

還有隻獲得output和status的方法:

[python]

commands.getoutput("ls")
commands.getstatus("ls")

⑦ Python裡面的進城id用id()方法和get.pid()方法得到的id不一樣,哪個是真的啊

pid是進程,id不是

⑧ python中的os.getpid是什麼,pid有什麼用

getpid是獲得當前進程的進程號。系統每開辟一個新進程就會為他分配一個進程號。在多進程的時候會用到吧好像。

⑨ Python如何判斷一個進程是否存在

subprocess包專門搞進程
如果你用這個模塊觸發一個新進程,它會拿到一個句柄,你可以通過句柄查看那個進程的狀態,發送信號量,標准輸入輸出
博客比較多,需要自己嘗試一下

熱點內容
c語言時間變數 發布:2025-01-24 10:40:24 瀏覽:868
ppiandroid 發布:2025-01-24 10:25:50 瀏覽:1000
兒童壓縮機 發布:2025-01-24 10:25:09 瀏覽:74
蘋果的允許訪問在哪裡 發布:2025-01-24 10:24:32 瀏覽:31
橡皮艇存儲 發布:2025-01-24 10:21:56 瀏覽:771
360的新機什麼配置 發布:2025-01-24 10:04:22 瀏覽:951
榮耀10方舟編譯器不卡頓了 發布:2025-01-24 09:59:59 瀏覽:502
章魚腳本助手 發布:2025-01-24 09:55:10 瀏覽:334
手游腳本論壇 發布:2025-01-24 09:54:20 瀏覽:30
沈陽螺桿空氣壓縮機 發布:2025-01-24 09:54:09 瀏覽:594