def save_session(self):
"""Persists the session, e.g. generates Cookie file"""
with open(self.session_file, 'w') as handle:
pickle.dump(
utils.dict_from_cookiejar(self._session.cookies),
handle)
文章目录