Fix #1474677, non-keyword argument following keyword.
[python.git] / Demo / sockets / README
blob21ed808cc3f5ee4f9c2768944f16e59792df7d7c
1 This directory contains some demonstrations of the socket module:
3 broadcast.py            Broadcast the time to radio.py.
4 echosvr.py              About the simplest TCP server possible.
5 finger.py               Client for the 'finger' protocol.
6 ftp.py                  A very simple ftp client.
7 gopher.py               A simple gopher client.
8 radio.py                Receive time broadcasts from broadcast.py.
9 telnet.py               Client for the 'telnet' protocol.
10 throughput.py           Client and server to measure TCP throughput.
11 unixclient.py           Unix socket example, client side
12 unixserver.py           Unix socket example, server side
13 udpecho.py              Client and server for the UDP echo protocol.
15 The following file is only relevant on SGI machines (or other systems
16 that support multicast):
18 mcast.py                A Python translation of
19                         /usr/people/4Dgifts/examples/network/mcast.c
20                         (Note that IN.py is in ../../lib/sgi.)
22 See also ../../lib/nntp.py for another example of socket code.