[Python] Newbie II
Sub-Zero
sub-zero a fastwebnet.it
Dom 10 Set 2006 21:49:38 CEST
import SocketServer
class EchoRequestHandler(SocketServer.BaseRequestHandler):
def handle(self):
print 'Connesso!'
while 1:
msg = self.request.recv(1024)
if not msg:
break
print 'Ricevuto:',msg
self.request.send(msg)
print 'Disconnesso'
server = SocketServer.ThreadingTCPServer(('127.0.0.1',7777),EchoRequestHandler)
server.handle_request()
Il vero problema lo incontro quando mi connetto: tutto cio' che scrivo viene spedito un carattere alla volta e poi è visto come una stringa e nn come un comando, in sostanza dovrei fare in modo che il comando venga interpretato ed eseguito alla pressione del tasto 'enter' e non alla pressione di un qualunque tasto e poi, come faccio a far eseguire il comando ricevuto ?
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: http://lists.python.it/pipermail/python/attachments/20060910/c0454c87/attachment.html
Maggiori informazioni sulla lista
Python