python實現人人網的自動登入

來源:互聯網
上載者:User

python實現人人網的自動登入

學習了一個多星期的python,寫一個自動登入人人網的指令碼練習一下,我使用的版本為Python 3.2.2。

上網搜了下,有許多樣本,不過基本上都是Python 2.x寫的,琢磨了好久終於登入成功了,代碼如下:

import urllib.requestimport urllib.parseimport http.cookiejarclass LoginRenren():            def __init__(self):        """log in www.renren.com"""        #self.origURL = "http://www.renren.com/home"        #self.domain = "renren.com"        self.log_url = "http://www.renren.com/PLogin.do"        self.cj = http.cookiejar.CookieJar()        self.opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(self.cj))        urllib.request.install_opener(self.opener) #Installing an opener is only necessary if you want urlopen to use that opener          def login(self, email, password):        self.email = email        self.password = password        params = {"email":self.email, "password":self.password}#, "origURL":self.origURL, "domain":self.domain}        params = urllib.parse.urlencode(params)        params = params.encode('utf-8')         #response = self.opener.open(self.log_url,params)        response = urllib.request.urlopen(self.log_url, params)        file = open("d:\\renren.html", "wb")        file.write(response.read())def login(email = "myemail@163.com", password = "mypassword" ):        renren = LoginRenren()    renren.login(email, password)

一些解釋

1.查看到登入介面的源碼,擷取表單內容,經過測試發現,只有email、password兩項是必需的。

2.提交表單,有兩個可選的函數
self.opener.open(self.log_url,params)
urllib.request.urlopen(self.log_url, params)
兩個函數均返回一個http.client.HTTPResponse對象
注意,使用這種方法時,前面必需調用函數urllib.request.install_opener(self.opener)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.