vote up 0 vote down star

Mechanize (Python) is failing with 401 for me to open http digest URLs. I googled and tried debugging but no success.

My code looks like this.

import mechanize

project = "test"
baseurl = "http://trac.somewhere.net"
loginurl = "%s/%s/login" % (baseurl, project)
b = mechanize.Browser()
b.add_password(baseurl, "user", "secret", "some Realm")
b.open(loginurl)
flag
What does failing mean? Is it failing with a 403? Some other error or condition? – ars Jul 8 at 11:22
Is trac configured to check with HTTP authentication? Or do you have to login over a simple HTML form? – unbeknown Jul 8 at 11:54
Something looks odd - you appear to be navigating to a login page, which one normally wouldn't expected to be protected. With basic/digest auth you go straight to the protected resource, providing your credentials in the HTTP headers (which mechanize does for you, of course). – Vinay Sajip Jul 8 at 12:04

2 Answers

vote up 1 vote down

Mechanize claims that the parameters should be uri, username and password as parameters, but you have four parameters. Four parameters are correct for urllib2.add_password, but then the first parameter should be the realm, not the uri.

http://wwwsearch.sourceforge.net/mechanize/

I'd try to change that first.

Does trac require digest? if not a next step could be to try using basic auth, as a test to see if that works, since you can add that with just addHeader:

browser = Browser()
browser.addHeader('Authorization', 'Basic %s:%s' % (user, pwd))
link|flag
The last parameter is optional: realm, defaulting to None. – Vinay Sajip Jul 8 at 12:03
Ah, OK. Never seen that one, and docs doesn't mention it... But anyway, you catched the fact that he was only opening the login screen, so this is in fact not an authentication error at all. – Lennart Regebro Jul 8 at 12:27
help -> add_password(self, url, user, password, realm=None) method of mechanize._mechanize.Browser instance Secondly similar script using Twill works well. Twill in turn uses mechanize only. – Pythonic Jul 8 at 12:39
vote up 0 vote down

Depending on how complex your web automation project is, consider using iMacros. Unlike Mechanize it runs in the web browser, so it works with most websites out of the box.

I use both the free Firefox addon via a command line (on our Linux server) and the iMacros Scripting Edition via COM object (on a Windows VMware for sites with Flash and Java).

Command line (freeware & open source): http://wiki.imacros.net/iMacros_for_Firefox#Command_Line_Support

COM object (paid version required): wiki.imacros.net/Python

Tim

link|flag
Interesting, however by the requirement, I need something executed within existing python program. – Pythonic Jul 8 at 12:28

Your Answer

Get an OpenID
or

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