I need to donwload concurrently, this code works, but doesn't go concurrently, what am i missing?
#coding: utf8
import time, os, eventlet, StringIO, gzip
from eventlet.green import urllib2
def fetch_url(url):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1',
'Accept-Language': 'en-us',
'Accept-Encoding': 'gzip',
'Keep-Alive': '300',
'Connection': 'keep-alive',
'Cache-Control': 'max-age=0',
}
req = urllib2.Request(url, None, headers)
try:
response = urllib2.urlopen(req)
except urllib2.URLError, e:
if hasattr(e, 'reason'):
print 'We failed to reach a server.'
print 'Reason: ', e.reason
elif hasattr(e, 'code'):
print e.code,'>the server couldn\'t fulfill the request.'
#handle_err(e.code, url)
else:
html_str = response.read()
server_headers = response.info()
# Create uncompressed version
if ('Content-Encoding' in server_headers.keys() and server_headers['Content-Encoding']=='gzip') or \
('content-encoding' in server_headers.keys() and server_headers['content-encoding']=='gzip'):
html_str_gz = html_str
# StringIO = workaround
gz = gzip.GzipFile(fileobj=StringIO.StringIO(html_str), mode='rb')
html_str = gz.read()
gz.close()
if '<some tag>0</' not in html_str:
return html_str_gz
def save_file(data, filepath, filename, mode='w'):
'''Appends or writes to specified location'''
if not os.path.exists(filepath):
os.makedirs(filepath)
try:
f = open( os.path.join(filepath, filename), mode )
f.write(data)
except IOError, e:
print e
finally:
if f:
f.close()
def fetch_save_url(urls, filenames):
filepath = '/home/mark'
html_str = fetch_url(urls)
if html_str:
save_file(html_str, filepath, filenames)
print 'done #' + str(urls)
def work_manager(start, end):
base_url = 'http://www.url.com/'
urls = list()
filenames = list()
for tmdb_id in xrange(start, end):
urls.append( '%s%s' % (base_url, page_id))
filenames.append( '%s.xml.gz' % (page_id))
pool = eventlet.GreenPool(4)
for html_str in pool.imap(fetch_save_url, urls, filenames):
print 'Processed'
work_manager(1, 51)