Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python udp receive

import socket

IP = '0.0.0.0'  # Receive any incoming UDP packet on this port
PORT = 1151  # Example port
ADDRESS = (IP, PORT)

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

while True:
    data, address = s.recvfrom(4096)
    print("Received: ", data.decode('utf-8'), "
")

# You can also still send UDP packets from the socket, even if it's bound already.
 
PREVIOUS NEXT
Tagged: #python #udp #receive
ADD COMMENT
Topic
Name
9+9 =