2021-05-09
Posted J哥。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-05-09相关的知识,希望对你有一定的参考价值。
代理:
IP 直接从网页上搜索就行 有免费的 最好使用 透密的
#不到万不得已不用 原理:通过第三方的机器发出请求
#http://106.14.250.116:8080
import requests
proxies = {
'https' : 'https://191.96.42.80:8080'
}
requests.packages.urllib3.disable_warnings()
'https://106.14.250.116:8080'
rsep = requests.get("https://www.baidu.com",proxies=proxies,verify=False)
rsep.encoding = 'utf-8'
print(rsep.text)
以上是关于2021-05-09的主要内容,如果未能解决你的问题,请参考以下文章