《抓取免费的代理IP供自己使用》【第二章】抓取快代理

首发于:https://mp.weixin.qq.com/s/O00A2FnYgcgThoEwdZTPaw

如何使用ip

既然我们找到了免费的代理ip,我们要使用,怎么用呢,总不能一个个的复制吧,这不就太憨了嘛

我们使用爬虫技术,把这些免费的代理ip抓下来就是了

抓下来放进数据库,后面用的时候直接使用程序提取数据库中的代理ip,不就可以了嘛

思路还是简单清晰的把

下面就是开始爬取各网站的代理ip......

抓取快代理

准备

  • 网址:https://www.kuaidaili.com/free/
  • 系统:windows
  • 浏览器:Google
  • 语言:python
  • 版本:3.x
  • 数据库:MongoDB

分析网址

先打开网址看下:https://www.kuaidaili.com/free/

file

我们来点击第二页

file

看下网址


file

网址变化了,比较大可能是get请求,我们按下F12,打开开发者模式

我们再点击第一页

file

在看下面的图片,根据图片里的步骤来

file

我们可以发现

file

这个就是我们想要的网址

代码实现

import requests
from lxml import etree
import pymongo
import time
class get_ip:
    def __init__(self):
        _mongo = pymongo.MongoClient(host="127.0.0.1",port=27017)
        db = _mongo.IPS
        self.ip_table = db["ip_table"]

    def get_html(self,page):
        headers = {
            'Connection': 'keep-alive',
            'sec-ch-ua': '"Google Chrome";v="87", " Not;A Brand";v="99", "Chromium";v="87"',
            'sec-ch-ua-mobile': '?0',
            'Upgrade-Insecure-Requests': '1',
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',
            'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
            'Sec-Fetch-Site': 'same-origin',
            'Sec-Fetch-Mode': 'navigate',
            'Sec-Fetch-User': '?1',
            'Sec-Fetch-Dest': 'document',
            'Referer': f'https://www.kuaidaili.com/free/inha/{page}/',
            'Accept-Language': 'zh-CN,zh-TW;q=0.9,zh;q=0.8,en;q=0.7',
        }

        response = response = requests.get(f'https://www.kuaidaili.com/free/inha/{page}/', headers=headers)
        html = etree.HTML(response.text)
        trs = html.xpath('//div[@id="list"]//table/tbody/tr')
        print(trs)
        print(response)
        for tr in trs:
            ip = tr.xpath('td[@data-title="IP"]/text()')[0]
            port = tr.xpath('td[@data-title="PORT"]/text()')[0]
            print(f"{ip}:{port}")
            _find = self.ip_table.find_one({"ip":ip,"post":port})
            # 去重
            if not _find:
                print("ip不存在")
                self.ip_table.insert_one({"ip":ip,"post":port})
            else:
                print("ip已存在")
        
        
g = get_ip()
for i in range(1,9999):
    g.get_html(i)
    time.sleep(3)

关注我获取更多内容

你可能感兴趣的:(《抓取免费的代理IP供自己使用》【第二章】抓取快代理)