I\'m trying to log in to the http://www.steampowered.com website using the cookies I\'ve got from my Chrome session.
Once I\'ve grabbed all the cookie tabl
cookie
I created a module to load cookies from Firefox.
Example usage with requests:
import requests import browser_cookie cj = browser_cookie.firefox() r = requests.get(url, cookies=cj)