Re: Best book on Python?

2004-12-12 Thread Adil Hasan
hello, Just my 2 farthings worth... Although Python and Tkinter is a good book it was written at the time of Python 1.5 (so there may be some transformation that needs to be done on some of the examples) you may want to take a look at Python in a Nutshell by A. Martelli published by

Re: Python mascot proposal

2004-12-13 Thread Adil Hasan
Would a parrot on it's back be better? adil On Mon, 13 Dec 2004, Alex Stapleton wrote: > Well the most well known Flying Circus snake related sketch is probably > the one eyed trouser snake one, which is er-, probably less than a good > idea for a logo. The Snake with some sort of Monty Pytho

SocketServer class examples

2004-12-11 Thread Adil Hasan
Hello Fred, I just ran across your question. I think that the following code will work: - SERVER CODE -- import SocketServer import time class GreetingHandler(SocketServer.BaseRequestHandler): '''Class to handle sending a greeting to a client ''' def handle(self):