使用Python广播UDP字符串

时间:2014-10-27 07:43:30

标签: python udp broadcast

我打算使用Python将UDP字符串广播到本地网络。最简单的方法是什么?

1 个答案:

答案 0 :(得分:2)

您可以使用socket python模块

请参阅以下UdpComminication wiki

中的代码
import socket

UDP_IP = "127.0.0.1"
UDP_PORT = 5005
MESSAGE = "Hello, World!"

print "UDP target IP:", UDP_IP
print "UDP target port:", UDP_PORT
print "message:", MESSAGE

sock = socket.socket(socket.AF_INET, # Internet
                     socket.SOCK_DGRAM) # UDP
sock.sendto(MESSAGE.encode(), (UDP_IP, UDP_PORT))