kongyan 发表于 2020-7-10 23:58:10

设置了代理,打开网站的时候用的还是自己的ip。

import re
import urllib.request

proxy_support = urllib.request.ProxyHandler({'http':'113.195.225.101:9999'})
opener = urllib.request.build_opener(proxy_support)

opener.addheaders = [('User_Agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1')]

urllib.request.install_opener(opener)

html=urllib.request.urlopen('https://tool.lu/ip/').read().decode('utf-8')

print(html)

html=re.findall(r'value="(.*?)"/>',html)    #提取IP地址
print(html)
怎么会这样{:5_94:}
以下是小甲鱼视频里的代码
https://wwa.lanzous.com/iWZa1ehyukf




Twilight6 发表于 2020-7-11 10:08:46



你的 IP 不行的了,建议用这url查IP:http://httpbin.org/get


Twilight6 发表于 2020-7-11 10:12:04


刚刚测试 成功爬了一次,如果又报错,说明我找的IP又失效了:

import re
import urllib.request

proxy_support = urllib.request.ProxyHandler({'http':'27.43.191.134:9999'})
opener = urllib.request.build_opener(proxy_support)

opener.addheaders = [('User_Agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1')]

urllib.request.install_opener(opener)
html=urllib.request.urlopen('http://httpbin.org/get').read().decode('utf-8')


#print(html)

html=re.findall(r'"origin": "(.*?)"',html)    #提取IP地址
print(html)
大致知道这样可以设置 IP 代理就行,现在网上找的 IP 没一个稳的




kongyan 发表于 2020-7-11 15:50:50

Twilight6 发表于 2020-7-11 10:12
刚刚测试 成功爬了一次,如果又报错,说明我找的IP又失效了:




用你建议的url,换了一个代理ip,成功看到自己的ip和代理ip。谢谢你!

Twilight6 发表于 2020-7-11 15:51:55

kongyan 发表于 2020-7-11 15:50
用你建议的url,换了一个代理ip,成功看到自己的ip和代理ip。谢谢你!


客气了
页: [1]
查看完整版本: 设置了代理,打开网站的时候用的还是自己的ip。