Multithreaded Downloading Through Proxies In Python
What would be the best library for multithreaded h开发者_开发百科arvesting/downloading with multiple proxy support? I've looked at Tkinter, it looks good but there are so many, does anyone have a specific recommendation? Many thanks!
Twisted
Is this something you can't just do by passing a URL to newly spawned threads and calling urllib2.urlopen in each one, or is there a more specific requirement?
Also take a look at http://scrapy.org/, which is a scraping framework built on top of twisted.
精彩评论