获取端口进程
作者:
S申松S | 来源:发表于
2019-11-22 14:27 被阅读0次
windows下获取网络端口进程号(pid)
# 行内代码示例
# windows下获取网络端口进程号
def get_python_server_pid(self):
while True:
result = os.popen('netstat -aon | findstr 8000').readlines()
if '127.0.0.1:8000' in ''.join(result):
for line in result:
if '127.0.0.1:8000' in line:
self.python_server_pid = line.split('LISTENING')[1].split('\n')[0].strip()
break
break
else:
time.sleep(0.5)
# 段落代码
val s = "hello Markdown"
println(s)
val s = "hello Markdown"
println(s)
本文标题:获取端口进程
本文链接:https://www.haomeiwen.com/subject/ztdfwctx.html
网友评论