zl程序教程

您现在的位置是:首页 >  其它

当前栏目

5.01-requests_auth

requests auth
2023-09-11 14:21:24 时间
import requests

# 发送post请求
data = {

}
response = requests.post(url, data=data)


# 内网 需要 认证
auth = (user,pwd)
response = requests.get(url,auth=auth)