Example #1
0
 def load_cookies(self):
     """Load cookies from disk"""
     if not os.path.exists(self.cookies_path):
         logger.warning("No cookies found in %s, please authenticate first", self.cookies_path)
         return
     cookiejar = WebkitCookieJar(self.cookies_path)
     cookiejar.load()
     return cookiejar
Example #2
0
 def load_cookies(self):
     """Load cookies from disk"""
     logger.debug("Loading cookies from %s", self.cookies_path)
     if not os.path.exists(self.cookies_path):
         logger.debug("No cookies found, please authenticate first")
         return
     cookiejar = WebkitCookieJar(self.cookies_path)
     cookiejar.load()
     return cookiejar
Example #3
0
 def load_cookies(self):
     """Load cookies from disk"""
     logger.debug("Loading cookies from %s", self.cookies_path)
     if not os.path.exists(self.cookies_path):
         logger.debug("No cookies found, please authenticate first")
         return
     cookiejar = WebkitCookieJar(self.cookies_path)
     cookiejar.load()
     return cookiejar