cpython/Demo/sockets/radio.py

15 lines
272 B
Python
Raw Normal View History

1992-05-19 13:52:02 +00:00
# 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:
1993-12-17 14:39:12 +00:00
data, wherefrom = s.recvfrom(1500, 0)
sys.stderr.write(`wherefrom` + '\n')
1992-05-19 13:52:02 +00:00
sys.stdout.write(data)