HOME/Articles/

socket example udpSocket (snippet)

Article Outline

Python socket example 'udpSocket'

Modules used in program:

  • import socket

python udpSocket

Python socket example: udpSocket

import socket
target_host = "127.0.0.1"
target_port = 80
# create a socket object 
client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
# send some data 
client.sendto("AAABBBCCC",(target_host,target_port))
# receive some data 
data, addr = client.recvfrom(4096)
print(data )