I'm trying to make a python script that will access a website with the cookies in Firefox. cookielib.MozillaCookieJar would work if it supported Firefox 3. Is there a way to access Firefox 3 cookies inside of python?

I see that there are two files under [home]/.mozilla/firefox/[randomletters].default/ called cookies.sqlite and cookies-nontor.xml. The .xml file looks like it would be easy to write a function that will return a CookieJar from it, but if there's already a module that does this, then I'd like to avoid re-inventing the wheel.

link|improve this question
feedback

1 Answer

Here's a recipe for accessing the SQLite cookies in FF 3. There's a patch at the Python bug Tracker and Mechanize also supports this.

link|improve this answer
Thanks for the reply! Is there an example of using mechanize to get the browser cookies? I saw an example in the documentation for the old cookies.txt, but not for the new cookies.sqlite. – Hempage Jan 5 '11 at 16:55
I was able to find this early explanation: osdir.com/ml/python.wwwsearch.general/2008-02/msg00012.html – TryPyPy Jan 5 '11 at 23:06
After trying mechanize quite a bit, I had no luck... But after using the recipe you linked to, I've had great success. – Hempage Jan 6 '11 at 23:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.