Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
2k views

Python - urllib2 & cookielib

I am trying to open the following website and retrieve the initial cookie and use it for the second url-open BUT if you run the following code it outputs 2 different cookies. How do I use the initial ...
5
votes
2answers
1k views

How to pickle a CookieJar?

I have an object with a CookieJar that I want to pickle. However as you all probably know, pickle chokes on objects that contain lock objects. And for some horrible reason, a CookieJar has a lock ...
2
votes
1answer
304 views

urllib & cookielib - downloading images

this is what i got so far: import urllib, urllib2, cookielib jar = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar)) login_data = urllib.urlencode({'User' : ...
2
votes
2answers
418 views

Storing cookielib cookies in a database

I'm using the cookielib module to handle HTTP cookies when using the urllib2 module in Python 2.6 in a way similar to this snippet: import cookielib, urllib2 cj = cookielib.CookieJar() opener = ...
2
votes
1answer
186 views

How to display specific cookie?

I'm using ActivePython 2.5.1 and the cookielib package to retrieve web pages. I'd like to display a given cookie from the cookiejar instead of the whole thing: #OK to display all the cookies for ...
2
votes
1answer
3k views

How to add cookie to existing cookielib CookieJar instance in Python?

I have a CookieJar that's being used with mechanize that I want to add a cookie to. How can I go about doing this? make_cookie() and set_cookie() weren't clear enough for me. br = mechanize.Browser() ...
1
vote
2answers
58 views

Cookiejar use in an opener

I have the following code at the moment: tw_jar = cookielib.CookieJar() tw_jar.set_cookie(c1) tw_jar.set_cookie(c2) o = urllib2.build_opener( urllib2.HTTPCookieProcessor(tw_jar) ) ...
1
vote
0answers
61 views

Get cookie from CookieJar by name

I know that I can iterate through the cookies in a cookiejar, and this would allow me to find a cookie with a particular name - but does the CookieJar object itself have any methods I can call to get ...
1
vote
0answers
84 views

Python cookielib and urllib2 max connections?

I have made a URL scanner that relies on cookielib and urllib2 to scan webpages. I have noticed that every time I reach 100 connections that the program just stops with no error. I am assuming the ...
1
vote
1answer
122 views

How do I manually put cookies in a jar?

I'm using python with urllib2 & cookielib and such to open a url. This url set's one cookie in it's header and two more in the page with some javascript. It then redirects to a different page. I ...
0
votes
1answer
43 views

Fetching cookies from a file with python

I'm using mechanize and python to log into a site. I've created two functions. The first one logs in and the second one searches the site. How exactly do I store the cookies from the login so when I ...
0
votes
1answer
60 views

python SimpleCookie distinguish error

When i use python SimpleCookie object to pick up cookie from http headers, some exception occurs: cookiestr = "a_em=[BU]co|12345678-901234567[DG]; Expires=Sat, 31 Dec 2016 17:09:50 GMT; ...
0
votes
0answers
138 views

check whether a session cookie is still alive (Python)

Please take a look at the following python code snippet : import cookielib, urllib, urllib2 def login(username, password): cookie_jar = cookielib.LWPCookieJar() opener = ...
0
votes
1answer
142 views

Submitting search form using urllib2 (python)

I am trying to search for courses in my school's system and logging in works with my login info import urllib, urllib2, cookielib,re username = 'user' password = 'pass' # Login main site cj = ...
0
votes
2answers
197 views

why i cant login this site using python in a post method

this is my code to login a site using python : import urllib2, cookielib cookie_support= urllib2.HTTPCookieProcessor(cookielib.CookieJar()) opener = urllib2.build_opener(cookie_support, ...
0
votes
0answers
178 views

Re: How to use Python to login to a webpage and retrieve cookies for later usage?

I am grateful for the earlier exchange on this topic here: How to use Python to login to a webpage and retrieve cookies for later usage? Here is my version of the code (virtually the same as that ...
0
votes
2answers
672 views

cookielib and form authentication woes in Python

InstaMapper is a GPS tracking service that updates the device's position more frequently when the device is being tracked live on the InstaMapper webpage. I'd like to have this happen all the time so ...