Former-commit-id: 3beec1f80e66a86223b0f0f5c98a1e1405a90a29 Former-commit-id: 39d11dd75ed5b66095bb2603c54ca790236af6af
12 lines
334 B
Python
12 lines
334 B
Python
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) |