0
0
forked from flt/tools
Former-commit-id: 3beec1f80e66a86223b0f0f5c98a1e1405a90a29
Former-commit-id: 39d11dd75ed5b66095bb2603c54ca790236af6af
This commit is contained in:
2022-10-07 13:39:52 +08:00
parent 606861b3a1
commit 3356e36e73
5 changed files with 386 additions and 0 deletions

12
wjx/tmp.py Normal file
View File

@ -0,0 +1,12 @@
import requests
url = "https://www.wjx.cn/login.aspx"
payload={}
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)