Is it possible to take an existing logged in session (say in Chrome) and pipe that session to a python script to perform an https request?
To be clear on what I want to
This might help
jar = requests.cookies.RequestsCookieJar([
{
"domain": ".stackoverflow.com",
"expirationDate": "1427212131.77312",
"hostOnly": "false",
"httpOnly": "true",
"name": "usr",
"path": "/",
"secure": "false",
"session": "false",
"storeId": "0",
"value": "SOMEVALUE",
"id": "5"
}]
requests.get(url, headers=headers, cookies=jar)
@Stupid.Fat.Cat Let me know what worked for you