I am looking to implement the threading solution suggested here: What is the fastest way to send 100,000 HTTP requests in Python?
My question is, if my "do something" after making the URL call is going to be appending a new row to a list (using data.append) - will this cause any issues?
Also, I will also be Python 2 and using urllib2 -- would the recommended solution change at all if it was urllib2 instead of httplib?