def __init__(self, url): threading.Thread.__init__(self) self.setDaemon(True) self.url = url self.cookie = cookielib.CookieJar() self.opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(self.cookie))