# _*_ coding:utf-8 _*_
# name login_baidu.py
import urllib,urllib2,httplib,cookielib
def auto_login_hi(url,name,pwd):
url_hi="http://passport.baidu.com/?login"
#設置cookie
cookie=cookielib.CookieJar()
cj=urllib2.HTTPCookieProcessor(cookie)
#設置登錄參數(shù)
postdata=urllib.urlencode({'username':name,'password':pwd})
#生成請求
request=urllib2.Request(url_hi,postdata)
#登錄百度
opener=urllib2.build_opener(cj)
f=opener.open(request)
print f
#打開百度HI空間頁面
hi_html=opener.open(url)
return hi_html
if __name__=='__main__':
name='hjkll'
password='11111111'
url='http://hi.baidu.com/ewayfly'
h=auto_login_hi(url,name,password)
print h.read()
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com