标签:use ons import class password res 登陆 设置 认证
1 #如果需要用户名和密码才能登陆网站,则需要认证设置auth=() 2 import requests 3 response = requests.get(url,auth=(‘user‘,‘password‘)) 4 5 #或者 6 from requests.auth import HTTPBasicAuth 7 response = requests.get(url,auth=HTTPBasicAuth(‘user‘,‘password‘))
标签:use ons import class password res 登陆 设置 认证
原文地址:http://www.cnblogs.com/themost/p/6843461.html