IP代理
Posted renshaoqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IP代理相关的知识,希望对你有一定的参考价值。
import requests # 定义爬取url地址 base_url = ‘https://www.baidu.com/‘ # 定义代理IP地址 proxies = {‘http‘:‘http://121.31.193.38:8123‘} # 使用代理获取想要的页面 response = requests.request(‘get‘, base_url, proxies=proxies) print(response.content.decode(‘utf-8‘))
以上是关于IP代理的主要内容,如果未能解决你的问题,请参考以下文章