python爬取xici的免费代理、并验证(重点、清楚)

举报
橙子园 发表于 2022/05/25 22:41:14 2022/05/25
【摘要】 网上爬取xici的帖子很多,但是验证都说的不是很清楚,这里我会认真给大家解释 这里我写了一个代理类proxy,写了四个方法(个人写法不必在意),get_user_agent(得到随机use-agent,请求头中最重要的一个)、get_proxy(爬取代理IP)、test_proxy(验证代理可用性)、store_txt(将可用的代理保...

网上爬取xici的帖子很多,但是验证都说的不是很清楚,这里我会认真给大家解释

这里我写了一个代理类proxy,写了四个方法(个人写法不必在意),get_user_agent(得到随机use-agent,请求头中最重要的一个)、get_proxy(爬取代理IP)、test_proxy(验证代理可用性)、store_txt(将可用的代理保存到txt文件中。

1.爬取:headers是请求头,choice是可以选择是爬取Http代理还是https代理,first、end为开始和结束的页码(结束不包含最后一页)


  
  1. def get_proxy(self, headers, choice='http', first=1, end=2):
  2. """
  3. 获取代理
  4. :param choice:
  5. :param first: 开始爬取的页数
  6. :param end: 结束爬取的后一页
  7. :return:
  8. """
  9. ip_list = []
  10. base_url = None
  11. # 选择爬取的网站,一个是http、一个是https的
  12. if choice == 'http':
  13. base_url = 'http://www.xicidaili.com/wt/'
  14. elif choice == 'https':
  15. base_url = 'http://www.xicidaili.com/wn/'
  16. # 控制页码用正则匹配,并将爬取的IP和端口号用:链接
  17. for n in range(first, end):
  18. actual_url = base_url + str(n)
  19. html = requests.get(url=actual_url, headers=headers).text
  20. pattern = '(\d+\.\d+\.\d+\.\d+)</td>\s*<td>(\d+)'
  21. re_list = re.findall(pattern, html)
  22. for ip_port in re_list:
  23. ip_port = ip_port[0] + ':' + ip_port[1]
  24. ip_list.append(ip_port)
  25. return ip_list

 2. 验证:网上大部分是用request直接请求一个网址看是否通过或者看状态码是否是200, 但是有一个问题是即使你设置了代理IP。可能会通过,但通过的不是用你设置的代理IP而是用你自己公网下的IP(大部分时候我们用ifconfig查询的是我们所在局域网下的IP,及私网IP)。

linux下你可以用这些命令的其中任何一个查看你的公网IP:


  
  1. curl icanhazip.com
  2. curl ifconfig.me
  3. curl curlmyip.com
  4. curl ip.appspot.com
  5. curl ipinfo.io/ip
  6. curl ipecho.net/plain
  7. curl www.trackip.net/i

注意:那这样要怎么办,其实我们可以向上述命令一样先用你爬下的代理IP访问 http://icanhazip.com/, 它可以返回你电脑发送请求时的公网IP(此时如果你设置代理IP了就会是返回你所发送请求的代理IP),然后你将它爬取下来(直接获取返回的值的文本就可以了),并和你发送请求时的代理IP作比较,如果不相等说明此代理IP不能用,因为虽然你设置了代理Ip,但是电脑在你代理IP请求不同的情况下,直接又使用了你公网的IP去请求,当然成功了,但不代表你的代理IP可以用。如果相等,那就证明此网站就是你所用的代理IP访问请求成功的,所以此IP可用。


  
  1. def test_proxy(self, ip_port, choice='http'):
  2. """
  3. 测试代理是否能用
  4. :param ip_port:
  5. :param choice:
  6. :return:
  7. """
  8. proxies = None
  9. # 这个网站可以返回你公网下的IP,如果你加代理请求后,返回的就是你代理的IP(这样做是防止你虽然用的是代理IP,但实际是用你自己的公网IP访问的请求)
  10. tar_url = "http://icanhazip.com/"
  11. # 获取随机User-agent
  12. user_agent = self.get_user_agent()
  13. # 将user-agent放在headers中
  14. headers = {'User-Agent': user_agent}
  15. # 选择验证的是http、还是https
  16. if choice == 'http':
  17. proxies = {
  18. "http": "http://"+ip_port,
  19. }
  20. elif choice == 'https':
  21. proxies = {
  22. "https": "https://" + ip_port,
  23. }
  24. try:
  25. # 将IP从IP和端口号连起来的分出来
  26. thisIP = "".join(ip_port.split(":")[0:1])
  27. res = requests.get(tar_url, proxies=proxies, headers=headers, timeout=8)
  28. # 爬取下来返回的值,一定要用strip去除空格
  29. proxyIP = res.text.strip()
  30. # 三个状态,如过直接通不过,那就返回false,如果通过但是不是代理的IP,也返回false
  31. if proxyIP == thisIP:
  32. return proxyIP
  33. else:
  34. return False
  35. except:
  36. return False

 最后附上整段代码:


  
  1. import requests
  2. import re
  3. import random
  4. import codecs
  5. from urllib import parse
  6. class proxy:
  7. """
  8. 代理类
  9. """
  10. def __init__(self):
  11. pass
  12. def get_user_agent(self):
  13. """
  14. 得到随机user-agent
  15. :return:
  16. """
  17. user_agents = [
  18. "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; AcooBrowser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
  19. "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)",
  20. "Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.5; AOLBuild 4337.35; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
  21. "Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)",
  22. "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
  23. "Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
  24. "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
  25. "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN) AppleWebKit/523.15 (KHTML, like Gecko, Safari/419.3) Arora/0.3 (Change: 287 c9dfb30)",
  26. "Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/527+ (KHTML, like Gecko, Safari/419.3) Arora/0.6",
  27. "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2pre) Gecko/20070215 K-Ninja/2.1.1",
  28. "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/20080705 Firefox/3.0 Kapiko/3.0",
  29. "Mozilla/5.0 (X11; Linux i686; U;) Gecko/20070322 Kazehakase/0.4.5",
  30. "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6",
  31. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
  32. "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1036.7 Safari/535.20",
  33. "Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; fr) Presto/2.9.168 Version/11.52",
  34. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.11 TaoBrowser/2.0 Safari/536.11",
  35. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71 Safari/537.1 LBBROWSER",
  36. "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; LBBROWSER)",
  37. "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E; LBBROWSER)",
  38. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.84 Safari/535.11 LBBROWSER",
  39. "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)",
  40. "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; QQBrowser/7.0.3698.400)",
  41. "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)",
  42. "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; QQDownload 732; .NET4.0C; .NET4.0E; 360SE)",
  43. "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)",
  44. "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)",
  45. "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1",
  46. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1",
  47. "Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; zh-cn) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5",
  48. "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:2.0b13pre) Gecko/20110307 Firefox/4.0b13pre",
  49. "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:16.0) Gecko/20100101 Firefox/16.0",
  50. "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11",
  51. "Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10"
  52. ]
  53. user_agent = random.choice(user_agents)
  54. return user_agent
  55. def get_proxy(self, headers, choice='http', first=1, end=2):
  56. """
  57. 获取代理
  58. :param choice:
  59. :param first: 开始爬取的页数
  60. :param end: 结束爬取的后一页
  61. :return:
  62. """
  63. ip_list = []
  64. base_url = None
  65. if choice == 'http':
  66. base_url = 'http://www.xicidaili.com/wt/'
  67. elif choice == 'https':
  68. base_url = 'http://www.xicidaili.com/wn/'
  69. for n in range(first, end):
  70. actual_url = base_url + str(n)
  71. html = requests.get(url=actual_url, headers=headers).text
  72. pattern = '(\d+\.\d+\.\d+\.\d+)</td>\s*<td>(\d+)'
  73. re_list = re.findall(pattern, html)
  74. for ip_port in re_list:
  75. ip_port = ip_port[0] + ':' + ip_port[1]
  76. ip_list.append(ip_port)
  77. return ip_list
  78. def test_proxy(self, ip_port, choice='http'):
  79. """
  80. 测试代理是否能用
  81. :param ip_port:
  82. :param choice:
  83. :return:
  84. """
  85. proxies = None
  86. # 这个网站可以返回你公网下的IP,如果你加代理请求后,返回的就是你代理的IP(这样做是防止你虽然用的是代理IP,但实际是用你自己的公网IP访问的请求)
  87. tar_url = "http://icanhazip.com/"
  88. user_agent = self.get_user_agent()
  89. headers = {'User-Agent': user_agent}
  90. if choice == 'http':
  91. proxies = {
  92. "http": "http://"+ip_port,
  93. }
  94. elif choice == 'https':
  95. proxies = {
  96. "https": "https://" + ip_port,
  97. }
  98. try:
  99. thisIP = "".join(ip_port.split(":")[0:1])
  100. res = requests.get(tar_url, proxies=proxies, headers=headers, timeout=8)
  101. proxyIP = res.text.strip()
  102. if proxyIP == thisIP:
  103. return proxyIP
  104. else:
  105. return False
  106. except:
  107. return False
  108. def store_txt(self, choice='http', first=1, end=2):
  109. """
  110. 将测试通过的ip_port保存为txt文件
  111. :param choice:
  112. :param first:
  113. :param end:
  114. :return:
  115. """
  116. user_agent = self.get_user_agent()
  117. headers = {'User-Agent': user_agent}
  118. ip_list = self.get_proxy(headers=headers, choice=choice, first=first, end=end)
  119. with codecs.open("Http_Agent.txt", 'a', 'utf-8') as file:
  120. for ip_port in ip_list:
  121. ip_port = self.test_proxy(ip_port, choice=choice)
  122. print(ip_port)
  123. if ip_port:
  124. file.write('\'' + ip_port + "\'\n")

 

文章来源: blog.csdn.net,作者:橙子园,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/Chenftli/article/details/86701563

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。