How do I read back all of the cookies in Python without knowing their names?
This may be exactly what you are looking for.
Python 3.4
import requests r = requests.get('http://www.about.com/') c = r.cookies i = c.items() for name, value in i: print(name, value)