I am ready to run this code but before I want to fix the exception handling:
for l in bios: OpenThisLink = url + l try: response = urllib2.urlope
Try is actually way more powerful than that. You can use the else block here too:
try: stuff except Exception: print "oh no a exception" else: print "oh yay no exception" finally: print "leaving the try block"