asynchronous downloading
Richard Baron Penman
richardbp at gmail.com
Thu Feb 23 08:50:34 EST 2012
More information about the Python-list mailing list
Thu Feb 23 08:50:34 EST 2012
- Previous message (by thread): asynchronous downloading
- Next message (by thread): asynchronous downloading
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>> I want to download content asynchronously. This would be >> straightforward to do threaded or across processes, but difficult >> asynchronously so people seem to rely on external libraries (twisted >> / gevent / eventlet). > > > Exactly - the fact it's difficult is why those tools compete. It is difficult in Python because the async libraries do not offer much. Straightforward in some other languages. Do you know why there is little support for asynchronous execution in the standard libraries? For large scale downloading I found thread pools do not scale well. Richard
- Previous message (by thread): asynchronous downloading
- Next message (by thread): asynchronous downloading
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list