python之socket运用之执行命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之socket运用之执行命令相关的知识,希望对你有一定的参考价值。
服务端的代码
import socket import subprocess HOST = "127.0.0.1" PORT = 5001 ip_bind = (HOST,PORT) server = socket.socket() server.bind(ip_bind) server.listen(1) print("server is waiting for connected........") conn, add = server.accept() print("client is already connected,address is [%s]" % (add[1])) while True: client_data = conn.recv(10) print(client_data,type(client_data)) a = str(client_data, encoding="utf-8") print(a,type(a)) temp = subprocess.Popen(a,stdout=subprocess.PIPE) server_data = temp.stdout.read() print(server_data,type(server_data)) conn.sendall(server_data)
客户端代码
import socket HOST = "127.0.0.1" PORT = 5001 ip_bind = (HOST,PORT) client = socket.socket() client.connect(ip_bind) while True: client_data = input("client:") client.sendall(bytes(client_data,encoding="utf-8")) server_reply = client.recv(10) # print(server_reply,type(server_reply)) print(str(server_reply))
以上是关于python之socket运用之执行命令的主要内容,如果未能解决你的问题,请参考以下文章
python基础之socket编程-------基于tcp的套接字实现远程执行命令的操作