# re pattern from http://stackoverflow.com/questions/8035900
         content_disposition = response.info().getheader('Content-Disposition').strip()
         filename = re.findall("filename=(\S+)", content_disposition)[0]
         # re pattern from http://stackoverflow.com/questions/8035900
         content_disposition = response.info().getheader('Content-Disposition').strip()
         filename = re.findall("filename=(\S+)", content_disposition)[0]