This simple script performs auto login action. It can run on my Linux box (Python 2.7) and laptop (Mac OSX Python2.5), but I encounter problems on windows xp (both Python 2.6/2.7)
Traceback (most recent call last):
File "E:\workspace\python\login_baidu.py", line 22, in <module>
h=auto_login_hi(url,name,password)
File "E:\workspace\python\login_baidu.py", line 12, in auto_login_hi
opener=urllib2.build_opener(request,cj)
File "C:\Python27\lib\urllib2.py", line 477, in build_opener
opener.add_handler(h)
File "C:\Python27\lib\urllib2.py", line 311, in add_handler
type(handler))
TypeError: expected BaseHandler instance, got <type 'instance'>
My script:
import urllib,urllib2,httplib,cookielib
def auto_login_hi(url,name,pwd):
url_hi="http://passport.baidu.com/?login"
cookie=cookielib.CookieJar()
cj=urllib2.HTTPCookieProcessor(cookie)
postdata=urllib.urlencode({'username':name,'password':pwd})
request=urllib2.Request(url_hi,postdata)
opener=urllib2.build_opener(request,cj)
f=opener.open(request)
print f
hi_html=opener.open(url)
return hi_html
if __name__=='__main__':
name='myusername'
password='mypasswd'
url='http://hi.baidu.com/leemzoon'
h=auto_login_hi(url,name,password)
print h.read()