python接口自动化43- 使用代理proxies 发送请求
Posted 上海-悠悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python接口自动化43- 使用代理proxies 发送请求相关的知识,希望对你有一定的参考价值。
前言
如何在 requests 模块中使用代理发送请求
requests 使用代理
在requests模块中使用代理示例
# 作者-上海悠悠 微信/QQ交流:283340479
# blog地址 https://www.cnblogs.com/yoyoketang/
url = "https://www.baidu.com"
proxies =
"http": "http://代理ip:端口",
"https": "https://代理ip:端口"
r = requests.get(url, proxies=proxies)
print(r.text)
使用需要账号和密码的代理
import requests
url = "https://www.baidu.com"
proxies =
"http": "http://username:password@ip:端口号",
"https": "https://username:password@ip:端口号"
r = requests.get(url, proxies=proxies)
print(r.text)
session 会话使用代理
在session会话中可以设置全局管理代理
# 作者-上海悠悠 微信/QQ交流:283340479
# blog地址 https://www.cnblogs.com/yoyoketang/
import requests
url = "https://www.baidu.com"
s = requests.Session()
s.proxies =
"http": "http://代理ip:端口",
"https": "https://代理ip:端口"
r = s.get(url)
print(r.text)
以上是关于python接口自动化43- 使用代理proxies 发送请求的主要内容,如果未能解决你的问题,请参考以下文章