0
0
mirror of https://github.com/python/cpython.git synced 2024-11-25 01:20:47 +01:00
cpython/Demo/sockets/radio.py
1992-05-19 13:52:02 +00:00

14 lines
216 B
Python
Executable File

# Receive UDP packets transmitted by a broadcasting service
MYPORT = 50000
import sys
from socket import *
s = socket(AF_INET, SOCK_DGRAM)
s.bind('', MYPORT)
while 1:
data = s.recv(1500)
sys.stdout.write(data)