bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

PythonRequests模擬登錄實現圖書館座位自動預約-創新互聯

本文實例為大家分享了Python實現圖書館座位自動預約的具體代碼,供大家參考,具體內容如下

創新互聯從2013年成立,是專業互聯網技術服務公司,擁有項目成都做網站、網站建設網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元紅橋做網站,已為上家服務,為紅橋各地企業和個人服務,聯系電話:13518219792

配置

通過公網主機定時運行腳本,并發送郵件到自己的qq郵箱,這樣在微信就會有消息提示是否預約成功

vim /etc/crontab

設置每到早上7:01自動運行腳本即可

程序流程

(以yuyue.juneberry.cn網站為例)

  • get訪問登錄頁面,獲取cookie和表單里面的隱藏post字段
  • 構造登錄post數據,加入從表單里面拿到的隱藏post字段
  • post構造后的數據,模擬登錄,激活cookie(使cookie有登入權限)
  • get訪問座位預約界面,激活cookie(使cookie有預約座位權限)
  • post預約請求,實現預約座位
  • 解析返回結果,判斷是否成功,并郵件提醒

要點

  • requests庫中的requests.session() 能夠創建可傳遞cookies的會話
  • 拿到<input type=hidden>的數據并傳遞到post的數據中
  • 抓包判斷網站邏輯,篩選出各個請求的參數,并在程序中實現

函數解釋

  • class FUCK()主類
  • _get_date_str(self):獲取當前日期,并加上一天,用這個函數構造url的特征字段(圖書館設置提前一天預約座位)
  • def _get_order_url(self):構造"預約座位"的post目標url
  • def _get_static_post_attr:這個函數解析get請求的返回頁面,并從中提取出<input type=hidden>的字段,用于之后的構造post數據
  • def login(self):實現登錄功能
  • def run(self):實現座位預約功能
  • def _is_success(self, text):判斷預約結果
  • def error_log_once(self, text='default error (once)'):
  • def error_log(self, text='default error'):這兩個函數設置程序狀態為"已經出錯"或者"未出錯"狀態(用于自動化運行的時候避免將重復的錯誤信息寫入日志)
  • def error_log(self, text='default error'):單次將錯誤信息寫入本地日志
  • sendmail.send_mail()郵件發送模塊

代碼及注釋

# /bin/python
# -*- coding:utf-8 -*-
import time
import sys
import requests
from bs4 import BeautifulSoup
from mail import sendmail

__author__ = 'xy'

# 主類
class FUCK():
 def __init__(self, username, password, seatNO, mailto):
 """
  以四個參數初始化,用戶名,密碼,要預約的座位號,接受預約結果提醒郵件的郵箱
 """
  self.username = username
  self.password = password
  self.seatNO = seatNO
  self.mailto = mailto
  self.base_url = 'http://yuyue.juneberry.cn'
  self.login_url = 'http://yuyue.juneberry.cn'
  self.order_url = self._get_order_url()

  self.login_content = ''
  self.middle_content = ''
  self.final_content = ''

  self.s = requests.session() # 創建可傳遞cookies的會話

  # post data for login
  self.data1 = {
   'subCmd': 'Login',
   'txt_LoginID': self.username, # S+學號
   'txt_Password': self.password, # 密碼
   'selSchool': 60, # 60表示北京交通大學
  }

  # post data for order a seat
  self.data2 = {
   'subCmd': 'query',
  }

  # 自定義http頭,然而我在程序里并沒有使用
  self.headers = {
   'Connection': 'keep-alive',
   'Content-Type': 'application/x-www-form-urlencoded',
  }

  self.login()
  self.run()
  self._is_success(self.final_content)

  # 懷疑程序出錯時,取消下行注釋,可打印一些參數
  # self._debug()

 def _get_date_str(self):
  s = time.localtime(time.time())
  ########333
  date_str = str(s.tm_year) + '%2f' + str(s.tm_mon) + '%2f' + str(s.tm_mday + 1)
  date_str = date_str.replace('%2f1%2f32', '%2f2%2f1') \
   .replace('%2f2%2f29', '%2f3%2f1') \
   .replace('%2f3%2f32', '%2f4%2f1') \
   .replace('%2f4%2f31', '%2f5%2f1') \
   .replace('%2f5%2f32', '%2f6%2f1') \
   .replace('%2f6%2f31', '%2f7%2f1') \
   .replace('%2f7%2f32', '%2f8%2f1') \
   .replace('%2f8%2f32', '%2f9%2f1') \
   .replace('%2f9%2f31', '%2f10%2f1') \
   .replace('%2f10%2f32', '%2f11%2f1') \
   .replace('%2f11%2f31', '%2f12%2f1') \
   .replace('%2f12%2f32', '%2f1%2f1')
  return date_str

 def _get_order_url(self):
  return "http://yuyue.juneberry.cn/BookSeat/BookSeatMessage.aspx?seatNo=101001" + self.seatNO + "&seatShortNo=01" + self.seatNO + "&roomNo=101001&date=" + self._get_date_str()

 def _get_static_post_attr(self, page_content, data_dict):
  """
  拿到<input type='hidden'>的post參數,并添加到post_data中
  """
  soup = BeautifulSoup(page_content, "html.parser")
  for each in soup.find_all('input'):
   if 'value' in each.attrs and 'name' in each.attrs:
    data_dict[each['name']] = each['value'] # 添加到login的post_data中
    # self.data2[each['name']] = each['value'] # 添加到order的post_data中
  return data_dict

 def _debug(self):

  print self.order_url
  print self.data1
  print self.data2
  print self.headers
  print self.s.cookies

  # print self.login_content
  # print self.middle_content
  print self.final_content

 def login(self):
  homepage_content = self.s.get(self.base_url).content
  self.data1 = self._get_static_post_attr(homepage_content, self.data1)
  r = self.s.post(self.login_url, self.data1)
  self.login_content = r.content

 def run(self):

  # 這個get的意思是:原先的cookie沒有預約權限,
  # 訪問這個get之后,會使cookie擁有預約權限,從而執行下一個post
  self.middle_content = self.s.get('http://yuyue.juneberry.cn/BookSeat/BookSeatListForm.aspx').content

  # 經測試,這個post只需要一個subCmd的參數就可以正常返回,因此不必根據get內容更新post參數
  # self.data2 = self._get_static_post_attr(middle_content, self.data2)

  # 這個post請求完成了預約功能!
  r = self.s.post(self.order_url, self.data2)

  self.final_content = r.content

 def _is_success(self, text):
  """
  接受最終的html內容,判斷是否成功,并觸發日志記錄和郵件提醒
  """
  if '<h6 id="MessageTip">已經存在有效的預約記錄。</h6>' in text:
   self.clear_error_once('[done!] You already ordered a seat!')
  elif '<h6 id="MessageTip">選擇的日期不允許預約。</h6>' in text:
   self.clear_error_once('[done!] Date is wrong!')
  elif '<h6 id="MessageTip">所選座位已經被預約。</h6>' in text:
   self.clear_error_once('[done!] This seat is not available, maybe taken by others!')
  elif '<h6 id="MessageTip">座位預約成功' in text:
   self.clear_error_once('[done!] Success! An email is sending to you!')
   sendmail.send_mail('BJTU Library Seat_NO:' + self.seatNO + 'ordered!',
        'Sending by robot. Do not reply this mail!', self.mailto)
  else:
   self.error_log_once('Error! 302 to login page')

 def error_log_once(self, text='default error (once)'):
  try:
   is_error_file = open('./isopen_xy.txt', 'r')
  except:
   is_error_file = open('./isopen_xy.txt', 'w')
  if '1' not in is_error_file.read():
   print 'writting error to log...'
   self.error_log(text)
  else:
   print 'already written to log'
  is_error_file.close()
  sendmail.send_mail('BJTU_Library system error once !', 'error text!')

 def error_log(self, text='default error'):
  is_error_file = open('./isopen_xy.txt', 'w')
  is_error_file.write('1\n')
  is_error_file.close()

  f = open("./log_xy.txt", 'a')
  f.write(time.strftime("%Y-%m-%d %X", time.localtime()) + text + '\n')
  f.close()

 def clear_error_once(self, text='success'):
  print text
  is_error_file = open('./isopen_xy.txt', 'w')
  is_error_file.write('0\n')
  is_error_file.close()


if __name__ == '__main__':
 if len(sys.argv) < 5:
  print 'Usage: python library.py [username] [password] [seat_NO] [email]'
  print 'eg. python library.py S13280001 123456 003 XXXX@qq.com\n'
  print 'Any problems, mail to: i[at]cdxy.me'
  print '#-*- Edit by cdxy 16.03.24 -*-'
  sys.exit(0)
 else:
  FUCK(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4])

另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

網站名稱:PythonRequests模擬登錄實現圖書館座位自動預約-創新互聯
轉載來源:http://vcdvsql.cn/article12/cdejgc.html

成都網站建設公司_創新互聯,為您提供App開發網站內鏈外貿網站建設定制開發App設計品牌網站設計

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

商城網站建設