1 Star 0 Fork 0

唐宋/PyTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
proxies.py 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
唐宋 提交于 2024-07-07 12:08 . 代理IP的使用
"""
使用免费的代理IP访问测试网站,并确认IP
"""
"""
以下是代理代码
# 代理网站,免费的不稳定,花钱可用 https://www.kuaidaili.com/
import requests
url = 'http//httpbin.org/get'
# url = 'https://www.baidu.com/'
headers = {'User_Agent':'Mozilla/5.0'}
proxies = {
'http':'http://117.42.94.142:17446',
'https':'https://117.42.94.142:17446',
}
# html = requests.get(url=url,headers=headers).text #不用代理
html = requests.get(url=url,proxies=proxies,headers=headers).text
print(html)
"""
"""
下面是独享和私密代码的示例代码
"""
import requests
url = 'http//httpbin.org/get'
headers = {'User_Agent':'Mozilla/5.0'}
# 309435365:szayclhp@这个表示购买的独享或私密代理IP的用户名和密码,购买后在管理里面可以看到,@后面填写IP和端口
proxies = {
'http':'http://309435365:szayclhp@116.255.166.47:16819',
'https':'http://309435365:szayclhp@116.255.166.47:16819',
}
# html = requests.get(url=url,headers=headers).text #不用代理
html = requests.get(url=url,proxies=proxies,headers=headers).text
print(html)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liuqinsong/py-test.git
git@gitee.com:liuqinsong/py-test.git
liuqinsong
py-test
PyTest
master

搜索帮助