Async/Concurrent HTTP Requests

Marko Rauhamaa marko at pacujo.net
Thu Feb 12 13:55:07 EST 2015


Paul Rubin <no.email at nospam.invalid>:

> Event-driven i/o in Python 2.x was generally done with callback-based
> packages like Twisted Matrix (www.twistedmatrix.com). In Python 3
> there are some nicer mechanisms (coroutines) so the new asyncio
> package may be easier to use than Twisted. I haven't tried it yet.

I have successfully done event-driven I/O using select.epoll() and
socket.socket().


Marko



More information about the Python-list mailing list