首页 > 代码库 > python之socket运用之执行命令

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 = http://www.mamicode.com/conn.recv(10)"utf-8")
    print(a,type(a))
    temp = subprocess.Popen(a,stdout=subprocess.PIPE)
    server_data = http://www.mamicode.com/temp.stdout.read()>

 

 

客户端代码

import socket
HOST = "127.0.0.1"
PORT = 5001
ip_bind = (HOST,PORT)
client = socket.socket()
client.connect(ip_bind)
while True:
    client_data = http://www.mamicode.com/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运用之执行命令