*To install web.py (assuming unix):*
$ sudo easy_install pip
$ sudo pip install web.py


Now try:
python football_server.py
http://0.0.0.0:8080/football



=====

*The following folder contains a nice test server, to test it run*
$ python chat_example.py


*You should see a web address be printed: *

http://0.0.0.0:8080/

http://0.0.0.0:8080/foobar
-- from safari


able to see your page.I've created two examples, the first one can be seen
if you navigate to *
http://0.0.0.0:8080/foobar



*Any number of users can go to $YOUR_IP_ADDRESS:8080/foobarIf the users
type send the messages foo AND bar to the server, they will receive a
response. You can clean message history by typing 'clear'.*

*There is one more example, which is an extension of the system we used to
build foobar. Any users visiting*
http://0.0.0.0:8080/chat

*Will be placed in a live chat room! *


All the python code is fairly straightforward and located in chat_example.py
The javascript is embded on HTML pages in the templates folder

