python_socket

# socket_server.py



import socket

s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)

s.bind(('',8089))

while True:

# Receive up to 1,024 bytes in a datagram

data, addr = s.recvfrom(1024)

print "Received:", data, "from", addr

 

# socket_client.py



import socket

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

port = 8089

host = "localhost"

while True:

msg = raw_input('Enter message:')

s.sendto(msg, (host, port))

 

你可能感兴趣的:(python)