Basically I have a Python With
function that does a site login. Everything else I do needs to fall under a With
function, so I can continue having the site connection.
As you guessed, I have multiple functions that needing to start with a With
function. It gets really redundant. But if I just do a normal function wrap, I would lose the site connection.
I need to figure out a way to proper wrap a With
function.