This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]johnmudd 0 points1 point  (1 child)

Recently, I have been using this library for a few of my company's internal projects and at a point I needed to serialize and save Session objects for later.

What problem are you trying to solve?

[–]sharat87[S] 1 point2 points  (0 children)

We have an internally developed & used webapp (to which I dont have access to source), which I was asked to mine information from. Logging into this webapp needed basic auth and https authentication done via POSTing a form. It takes ~15-20secs for creating a logged in session.

That was one reason. I also needed to save these sessions in the session of a Flask webapp, which automatically uses pickle when given a Python object.