import?requests
url?=?"http://www.ip181.com/"
proxies?=?{"https":"175.8.27.130:808",
???????????"https":"175.8.27.130:999"}
response?=?requests.get(url,proxies?=?proxies)
print?response.text上述中,proxies中的參數必須都是"https"開頭才能正常訪問網站proxies = {"http":"175.8.27.130:808", ? ? ? ? ? "https":"175.8.27.130:999"}? ? ? 會報錯而在訪問百度頁面時(以下代碼部分),proxies中的參數必須都是"http"開頭才能正常訪問網站import?requests
proxies=?{
????"http":"http://175.8.27.130:808",
????"http":"http://175.8.27.130:999"
}
response??=?requests.get("https://www.baidu.com",proxies=proxies)
print?response.textproxies = {"http":"175.8.27.130:808",? ? ? ? ? "https":"175.8.27.130:999"}? ? ? 會報錯而將訪問百度的代碼改成proxies= {"http":"http://175.8.27.130:808"} 單獨一條也能正常訪問上述報錯內容如下圖:1.? proxies里的參數? 什么時候該填寫"http",什么時候該填寫"https" ?2.? 為什么? ? ? ?proxies = {"http":"175.8.27.130:808",? ? ? ? ? ? ? ? ? ? ? "https":"175.8.27.130:999"}? ? ? ? ? ? ? ? ?一個"http",一個"https"會報錯?? ? ? ? ? (我看到網上很多教程都是 一個"http",一個"https")??
添加回答
舉報
0/150
提交
取消