README 628 Bytes
Newer Older
1
This directory contains some demonstrations of the socket module:
Guido van Rossum's avatar
Guido van Rossum committed
2

3
broadcast.py	 	Broadcast the time to radio.py.
Guido van Rossum's avatar
Guido van Rossum committed
4 5
echosvr.py		About the simplest TCP server possible.
finger.py		Client for the 'finger' protocol.
6 7
ftp.py			A very simple ftp client.
gopher.py		A simple gopher client.
8
mcast.py		IPv4/v6 multicast example
9
radio.py		Receive time broadcasts from broadcast.py.
Guido van Rossum's avatar
Guido van Rossum committed
10 11
telnet.py		Client for the 'telnet' protocol.
throughput.py		Client and server to measure TCP throughput.
12 13
unixclient.py		Unix socket example, client side
unixserver.py		Unix socket example, server side
Guido van Rossum's avatar
Guido van Rossum committed
14
udpecho.py		Client and server for the UDP echo protocol.