Staging
v0.5.1
https://github.com/python/cpython
Revision 922887c437defa08e66a75a93a94785e1e6cc091 authored by Fred Drake on 29 March 2002, 21:23:40 UTC, committed by Fred Drake on 29 March 2002, 21:23:40 UTC
1 parent 919c066
Raw File
Tip revision: 922887c437defa08e66a75a93a94785e1e6cc091 authored by Fred Drake on 29 March 2002, 21:23:40 UTC
Set version info for the emergency "Don't Kill Opera" documentation
Tip revision: 922887c
radio.py
# 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, wherefrom = s.recvfrom(1500, 0)
	sys.stderr.write(`wherefrom` + '\n')
	sys.stdout.write(data)
back to top