CookieJar for browsers
Project description
browsercookiejar is a Python CookieJar set for Chrome, Firefox and MSIE.
Requirements
pycrypto for Chrome on Linux
Setup
$ pip install browsercookiejar
Usage
Run this code, logging in to Google on Chrome:
import re
import urllib2
import browsercookiejar
cj = browsercookiejar.ChromeCookieJar()
cj.load()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
body = opener.open('http://www.google.com').read()
account = re.search(r'>([^>]+@gmail\.com)', body).group(1)
print 'Your account is', account
Changelog
0.1 (2014-08-30)
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
browsercookiejar-0.1.tar.gz
(4.9 kB
view details)