mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 22:49:54 +08:00
1初识-送分题
This commit is contained in:
parent
e4f08adf49
commit
67627e9e2d
57
猿人学Web端爬虫攻防刷题平台二/1初识-送分题/main.py
Normal file
57
猿人学Web端爬虫攻防刷题平台二/1初识-送分题/main.py
Normal file
@ -0,0 +1,57 @@
|
||||
import requests
|
||||
|
||||
|
||||
def get_s(page):
|
||||
data = {"page": page}
|
||||
url = f"http://127.0.0.1:3005/match2023_21"
|
||||
session = requests.session()
|
||||
headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}
|
||||
session.headers = headers
|
||||
response = session.request("POST", url, data=data)
|
||||
return response.text.split(',')
|
||||
|
||||
|
||||
def challenge21(page, token, now):
|
||||
url = "https://match2023.yuanrenxue.cn/api/match2023/1"
|
||||
payload = f"page={page}&token={token}&now={now}"
|
||||
session = requests.session()
|
||||
headers = {
|
||||
'content-length': '63',
|
||||
'pragma': 'no-cache',
|
||||
'cache-control': 'no-cache',
|
||||
'sec-ch-ua': '"Google Chrome";v="113", "Chromium";v="113", "Not-A.Brand";v="24"',
|
||||
'accept': 'application/json, text/javascript, */*; q=0.01',
|
||||
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
||||
'x-requested-with': 'XMLHttpRequest',
|
||||
'sec-ch-ua-mobile': '?0',
|
||||
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36',
|
||||
'sec-ch-ua-platform': '"Windows"',
|
||||
'origin': 'https://match2023.yuanrenxue.cn',
|
||||
'sec-fetch-site': 'same-origin',
|
||||
'sec-fetch-mode': 'cors',
|
||||
'sec-fetch-dest': 'empty',
|
||||
'referer': 'https://match2023.yuanrenxue.cn/topic/1',
|
||||
'accept-encoding': 'gzip, deflate, br',
|
||||
'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8',
|
||||
'cookie': 'Hm_lvt_2a795944b81b391f12d70da5971ba616=1684122188,1684157555,1684362633,1684504363'
|
||||
}
|
||||
session.headers = headers
|
||||
response = session.request("POST", url, data=payload)
|
||||
return response.json()
|
||||
|
||||
|
||||
def run():
|
||||
data_num = 0
|
||||
for page in range(1, 6):
|
||||
token, now = get_s(page)
|
||||
print(token, now)
|
||||
response_json = challenge21(page, token, now)
|
||||
print(response_json)
|
||||
data_list = response_json.get('data')
|
||||
for data in data_list:
|
||||
data_num += int(data.get('value'))
|
||||
print(data_num)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
run()
|
Loading…
x
Reference in New Issue
Block a user