#-*- coding:utf-8 -*- ...
#-*- coding:utf-8 -*-
import requests #導入模塊
html = requests.get(url).text #get請求
html = requests.post(url,data = postdata).text # post表單請求
設置socket 代理
proxies = { 'http':'sock5://127.0.0.1:8080', 'http':'sock5://127.0.0.1:7070' } # 添加代理ip 作為參數傳入
response = requests.get("https://www.taobao.com",proxies=proxies)
print(response.status_code) #列印網頁返回狀態