0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Demo/sockets/radio.py

14 lines
216 B
Python
Raw Normal View History

1992-05-19 15:52:02 +02: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:
data = s.recv(1500)
sys.stdout.write(data)