您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“python怎么實現(xiàn)自動登陸Discuz論壇打卡簽到”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“python怎么實現(xiàn)自動登陸Discuz論壇打卡簽到”吧!
# -*- coding: utf-8 -*- import requests import hashlib import re username = '' ###賬號### password = ''###密碼### UA = "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) \ Chrome/27.0.1453.116 Safari/537.36" headers = { "User-Agent": UA, "Host": "bbs.hshy.net" } class hshy(object): def __init__(self, username, password, number = None, login_url = 'http://bbs.hshy.net/member.php', checkin_url = 'http://bbs.hshy.net/plugin.php'): self.username = username.decode('UTF-8').encode('GBK') self.password = hashlib.md5(password).hexdigest() self.number = number self.login_url = login_url self.checkin_url = checkin_url self.hshy_session = requests.Session() def try_login(self): rqs = self.hshy_session.get(self.login_url,params = {"referer":'', "mod": "logging", "action":"login"},headers = headers).text loginhash = re.search(r'<div id="main_messaqge_(.+?)">',rqs).group(1).encode('ascii') formhash = re.search(r'<input type="hidden" name="formhash" value="(.+?)" />',rqs).group(1).encode('ascii') post_data = {'answer':'', 'formhash':formhash, 'loginfield':'username', 'password':self.password, 'questionid':0, 'referer':'http://bbs.hshy.net/./', 'username':self.username} postrqs = self.hshy_session.post(self.login_url,params = {'mod':'logging', 'action':'login', 'loginsubmit':'yes', 'loginhash':loginhash, 'inajax':1},data = post_data,headers = headers) if re.search(u'現(xiàn)在將轉(zhuǎn)入登錄前頁面',postrqs.text): return 'login successful' else: self.notify() exit() #獲取打卡post的formhash參數(shù) def checkinformhash(self): checkinformhash = self.hshy_session.get(self.checkin_url,params = {'id': "dsu_amupper:ppering", "infloat": "yes", "handlekey":"pper", "referer": "http://bbs.hshy.net/", "inajax": 1, "ajaxtarget": "fwin_content_pper"},headers = headers).text return re.search(r'pper&ppersubmit=true&formhash=(.+?)\'',checkinformhash).group(1).encode('ascii') #失敗發(fā)送短信提醒 def notify(self): """ 使用nexmo發(fā)送提醒短信,如若使用需注冊nexmo服務(wù),將得到key和secret以調(diào)用其API~~ """ if self.number: key = '' ###你的Key secret = '' ###你的Secret data = {'api_key': key, 'api_secret': secret, 'from': 'anywhere', 'to': self.number, 'type': 'unicode', 'text': u'登陸或領(lǐng)取失敗,請手動領(lǐng)取' } rps = requests.post('https://rest.nexmo.com/sms/json',data = data) return rps.text else: pass def checkin(self): self.try_login() params = { 'id':'dsu_amupper:pper', 'ppersubmit':'true', 'formhash':self.checkinformhash(), 'infloat':'yes', 'handlekey' :'dsu_amupper', 'referer': 'http://bbs.hshy.net/', 'inajax':1, 'ajaxtarget': 'fwin_content_dsu_amupper'} checkin = self.hshy_session.get(self.checkin_url,params = params ,headers = headers) if re.search(u'恭喜',checkin.text): print u'checkin successful' else: print u'checkin failed' self.notify() if __name__ == '__main__': hshy(username,password).checkin()
到此,相信大家對“python怎么實現(xiàn)自動登陸Discuz論壇打卡簽到”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。