2
我打算使用Python將UDP字符串廣播到本地網絡。什麼是最直接的方式呢?使用Python廣播UDP字符串
我打算使用Python將UDP字符串廣播到本地網絡。什麼是最直接的方式呢?使用Python廣播UDP字符串
您可以使用socket
Python模塊
請參見下面的代碼UdpComminication維基
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))
謝謝你最直接的答案。但是,腳本返回: 'Traceback(最近呼叫的最後一個): sock.sendto(MESSAGE,(UDP_IP),第12行,第13行,文件「C:\ Users \ Adriano \ Google Drive \ python \ socketTest.py」 ,UDP_PORT)) TypeError:'str'不支持緩衝接口 ' – aag 2014-10-27 07:51:16
我應該補充:它是Python 3.4,操作系統是Windows 8.1 – aag 2014-10-27 07:51:45
請粘貼完整的回溯。 – Nilesh 2014-10-27 08:14:48