
代理
木下瞳
这个作者很懒,什么都没留下…
展开
-
几种常用代理设置
了解更多关注微信公众号“木下学Python”吧~代理都是以字典形式传入1.requests"""import requestsproxy = '127.0.0.1:9743'#代理认证#proxy = 'user:password@127.0.0.1:9743'proxies = { 'http': 'http://' + proxy, 'h...原创 2018-10-28 09:57:48 · 2914 阅读 · 0 评论 -
免费代理池维护
链接:https://pan.baidu.com/s/1IDsFsR6awH4Wlph8SE2NKA 提取码:omwn原创 2018-10-28 10:01:08 · 226 阅读 · 0 评论 -
付费代理使用
了解更多关注微信公众号“木下学Python”吧~阿布云登陆网址:https://center.abuyun.com/loginpython 代码接入格式import requests# 要访问的目标页面targetUrl = "http://test.abuyun.com"#targetUrl = "http://proxy.abuyun.com/switch-ip...原创 2018-11-07 21:38:14 · 1138 阅读 · 0 评论 -
测试代理是否可用
import requestsimport randomurl = 'http://icanhazip.com'headers = {'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537....原创 2019-04-14 21:47:12 · 2529 阅读 · 0 评论