Simple UDP server

James Mills prologic at shortcircuit.net.au
Wed Sep 10 21:32:59 EDT 2008


On Thu, Sep 11, 2008 at 10:36 AM, Nick Craig-Wood <nick at craig-wood.com> wrote:
> For UDP I wouldn't thread or, fork, I'd use select and run
> asynchronously.
>
>  http://docs.python.org/lib/module-select.html
>
> Actually if I really had to do this I'd use twisted.  Right tool for
> the job!

For anyone interested, pymills is an
event-driven, asynchronous library
geared towards Component architectures.

It currently uses select for it's socket
components, TCPServer, TCPClient,
and it's UDP counter-parts.

cheers
James

-- 
--
-- "Problems are solved by method"



More information about the Python-list mailing list