8 lines
309 B
Python
8 lines
309 B
Python
import socket
|
|
|
|
client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
client.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
|
client.sendto(b'hello server this is ivan', ('172.20.10.15', 10001))
|
|
#data, _ = client.recvfrom(1024)
|
|
#print(f"Ответ от сервера: {data.decode()}")
|
|
client.close() |