Mechanize (Python) 无法打开 http 摘要 URL,出现 401。我用谷歌搜索并尝试调试但没有成功。
我的代码看起来像这样。
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)