I/O Multiplexing and non blocking socket

2006-12-01 Thread Salvatore Di Fazio
Hi guys, I'm looking for a tutorial to make a client with a i/o multiplexing and non blocking socket. Anybody knows where is a tutorial? Tnx -- http://mail.python.org/mailman/listinfo/python-list

Re: I/O Multiplexing and non blocking socket

2006-12-01 Thread Jean-Paul Calderone
On 1 Dec 2006 06:07:28 -0800, Salvatore Di Fazio [EMAIL PROTECTED] wrote: Hi guys, I'm looking for a tutorial to make a client with a i/o multiplexing and non blocking socket. Anybody knows where is a tutorial? http://twistedmatrix.com/projects/core/documentation/howto/clients.html Jean-Paul

Re: I/O Multiplexing and non blocking socket

2006-12-01 Thread Bjoern Schliessmann
Salvatore Di Fazio wrote: I'm looking for a tutorial to make a client with a i/o multiplexing and non blocking socket. Anybody knows where is a tutorial? Perhaps a bit of an overkill, but try this: http://twistedmatrix.com/projects/core/documentation/howto/clients.html Regards, Björn

Re: I/O Multiplexing and non blocking socket

2006-12-01 Thread Salvatore Di Fazio
Jean-Paul Calderone ha scritto: On 1 Dec 2006 06:07:28 -0800, Salvatore Di Fazio [EMAIL PROTECTED] wrote: Hi guys, I'm looking for a tutorial to make a client with a i/o multiplexing and non blocking socket. Anybody knows where is a tutorial? http://twistedmatrix.com/projects/core

Re: I/O Multiplexing and non blocking socket

2006-12-01 Thread Bjoern Schliessmann
Salvatore Di Fazio wrote: Thank you guys, but I would like to use the standard libraries Then I suggest you read a good book about Unix programming, especially about the workings of read(), write() and select(). If you've understood this doing it with python's read/write/select will be easy.

Re: I/O Multiplexing and non blocking socket

2006-12-01 Thread Paul Boddie
Bjoern Schliessmann wrote: Salvatore Di Fazio wrote: Thank you guys, but I would like to use the standard libraries Then I suggest you read a good book about Unix programming, especially about the workings of read(), write() and select(). If you've understood this doing it with python's