Python 官方文档:入门教程 => 点击学习
以下为简单示例: import requests import re import telnetlib url='Http://www.66ip.cn/nmtq.PHP?getnu
以下为简单示例:
import requests
import re
import telnetlib
url='Http://www.66ip.cn/nmtq.PHP?getnum=100000&isp=0&anonymoustype=4&start=&ports=&export=&ipaddress=&area=2&proxytype=0&api=66ip'
header = {'User-agent':'xxxxxxxxxxx','Connection':'close'}
page_text = requests.get(url=url,headers=header).text
#用于匹配ip:port的正则表达式
p = r'(?:((?:\d|[1-9]\d|1\d{2}|2[0-5][0-5])\.(?:\d|[1-9]\d|1\d{2}|2[0-5][0-5])\.(?:\d|[1-9]\d|1\d{2}|2[0-5][0-5])\.(?:\d|[1-9]\d|1\d{2}|2[0-5][0-5]))\D+?(6[0-5]{2}[0-3][0-5]|[1-5]\d{4}|[1-9]\d{1,3}|[0-9]))'
#匹配出所有的ip与端口,放入列表
iplist = re.findall(p,page_text)
# 判断爬取的代理ip是否可用
for i in iplist:
ip = i[0]+':'+i[1]+'\n'
try:
# 使用代理ip访问指定网站,能访问说明代理可用
# requests.get('http://www.baidu.com', proxies={"http": ip})
# 使用telnet测试代理是否可用
telnetlib.Telnet(i[0], port=i[1], timeout=3)
except:
print('connect failed')
else:
print(ip)
with open('ip.txt', 'a+', encoding='utf-8') as fp:
fp.write(ip)
到此这篇关于python构建简单可以代理池的文章就介绍到这了,更多相关Python构建简单代理池内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: python简单构建可用IP代理池
本文链接: https://lsjlt.com/news/138641.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0