尝试从动态网页加载数据时,您的抓取工具是否卡住了?您是否对无限滚动或那些讨厌的“加载更多”按钮感到沮丧?
你并不孤单。如今,许多网站都实施这些设计来改善用户体验,但它们对于网络抓取工具来说可能具有挑战性。
本教程将指导您完成适合初学者的演练,使用 加载更多 按钮抓取演示页面。目标网页如下所示:
最后,您将学习如何:
让我们开始吧!
开始之前,请确保满足以下先决条件:
所需的图书馆:
您可以在终端中使用以下命令安装这些库:
pip install requests beautifulsoup4 selenium
在使用 Selenium 之前,您必须安装与您的浏览器匹配的网络驱动程序。在本教程中,我们将使用 Google Chrome 和 ChromeDriver。不过,您可以对 Firefox 或 Edge 等其他浏览器执行类似的步骤。
安装网络驱动程序
打开 Google Chrome 并导航至 帮助 >关于 Google Chrome 从三点菜单中查找 Chrome 版本。
下载 ChromeDriver:
访问 ChromeDriver 下载页面。
下载与您的 Chrome 版本匹配的驱动程序版本。
将 ChromeDriver 添加到您的系统路径:
解压下载的文件并将其放置在 /usr/local/bin (Mac/Linux) 或 C:WindowsSystem32 (Windows) 等目录中。
验证安装
在项目目录中初始化一个 Python 文件 scraper.py 并通过运行以下代码片段测试一切设置是否正确:
from selenium import webdriver driver = webdriver.Chrome() # Ensure ChromeDriver is installed and in PATH driver.get("https://www.scrapingcourse.com/button-click") print(driver.title) driver.quit()
您可以通过在终端上运行以下命令来执行上述文件代码:
pip install requests beautifulsoup4 selenium
如果上面的代码运行没有错误,它将启动浏览器界面并打开演示页面 URL,如下所示:
Selenium 随后将提取 HTML 并打印页面标题。你会看到这样的输出 -
from selenium import webdriver driver = webdriver.Chrome() # Ensure ChromeDriver is installed and in PATH driver.get("https://www.scrapingcourse.com/button-click") print(driver.title) driver.quit()
这将验证 Selenium 是否可以使用。安装所有要求并准备使用后,您可以开始访问演示页面的内容。
第一步是获取页面的初始内容,这将为您提供页面 HTML 的基线快照。这将帮助您验证连接并确保抓取过程的有效起点。
您将通过使用 Python 中的 Requests 库发送 GET 请求来检索页面 URL 的 HTML 内容。代码如下:
python scraper.py
上面的代码将输出包含前 12 个产品数据的原始 HTML。
HTML 的快速预览可确保请求成功并且您正在使用有效的数据。
要访问剩余的产品,您需要以编程方式单击页面上的“加载更多”按钮,直到没有更多产品可用。由于此交互涉及 JavaScript,因此您将使用 Selenium 来模拟按钮单击。
在编写代码之前,我们先检查一下页面以定位:
您将通过加载更多产品来获得所有产品,通过运行以下代码为您提供更大的数据集:
Load More Button Challenge to Learn Web Scraping - ScrapingCourse.com
此代码打开浏览器,导航到页面,并与“加载更多”按钮交互。然后提取更新后的 HTML(现在包含更多产品数据)。
如果你不希望Selenium每次运行这段代码时都打开浏览器,它还提供了无头浏览器功能。无头浏览器具有实际 Web 浏览器的所有功能,但没有图形用户界面 (GUI)。
您可以通过定义 ChromeOptions 对象并将其传递给 WebDriver Chrome 构造函数,在 Selenium 中启用 Chrome 的无头模式,如下所示:
import requests # URL of the demo page with products url = "https://www.scrapingcourse.com/button-click" # Send a GET request to the URL response = requests.get(url) # Check if the request was successful if response.status_code == 200: html_content = response.text print(html_content) # Optional: Preview the HTML else: print(f"Failed to retrieve content: {response.status_code}")
当您运行上述代码时,Selenium 将启动一个无头 Chrome 实例,因此您将不再看到 Chrome 窗口。这对于在服务器上运行抓取脚本时不想在 GUI 上浪费资源的生产环境来说是理想的选择。
现在已检索到完整的 HTML 内容,是时候提取有关每个产品的具体详细信息了。
在此步骤中,您将使用 BeautifulSoup 解析 HTML 并识别产品元素。然后,您将提取每个产品的关键详细信息,例如名称、价格和链接。
pip install requests beautifulsoup4 selenium
在输出中,您应该看到产品详细信息的结构化列表,包括名称、图像 URL、价格和产品页面链接,如下所示 -
from selenium import webdriver driver = webdriver.Chrome() # Ensure ChromeDriver is installed and in PATH driver.get("https://www.scrapingcourse.com/button-click") print(driver.title) driver.quit()
上面的代码将原始 HTML 数据组织成结构化格式,使其更容易使用和准备输出数据以进行进一步处理。
您现在可以将提取的数据组织到 CSV 文件中,这使得分析或共享变得更加容易。 Python 的 CSV 模块对此有所帮助。
python scraper.py
上述代码将创建一个新的 CSV 文件,其中包含所有必需的产品详细信息。
以下是概述的完整代码:
Load More Button Challenge to Learn Web Scraping - ScrapingCourse.com
上面的代码将创建一个 products.csv,如下所示:
import requests # URL of the demo page with products url = "https://www.scrapingcourse.com/button-click" # Send a GET request to the URL response = requests.get(url) # Check if the request was successful if response.status_code == 200: html_content = response.text print(html_content) # Optional: Preview the HTML else: print(f"Failed to retrieve content: {response.status_code}")
现在,假设您想要识别价格最高的前 5 个产品,并从其各个页面中提取其他数据(例如产品描述和 SKU 代码)。您可以使用以下代码来做到这一点:
from selenium import webdriver from selenium.webdriver.common.by import By import time # Set up the WebDriver (make sure you have the appropriate driver installed, e.g., ChromeDriver) driver = webdriver.Chrome() # Open the page driver.get("https://www.scrapingcourse.com/button-click") # Loop to click the "Load More" button until there are no more products while True: try: # Find the "Load more" button by its ID and click it load_more_button = driver.find_element(By.ID, "load-more-btn") load_more_button.click() # Wait for the content to load (adjust time as necessary) time.sleep(2) except Exception as e: # If no "Load More" button is found (end of products), break out of the loop print("No more products to load.") break # Get the updated page content after all products are loaded html_content = driver.page_source # Close the browser window driver.quit()
以下是概述的完整代码:
from selenium import webdriver from selenium.webdriver.common.by import By import time # instantiate a Chrome options object options = webdriver.ChromeOptions() # set the options to use Chrome in headless mode options.add_argument("--headless=new") # initialize an instance of the Chrome driver (browser) in headless mode driver = webdriver.Chrome(options=options) ...
此代码按价格降序对产品进行排序。然后,对于价格最高的前 5 个产品,脚本打开其产品页面并使用 BeautifulSoup 提取产品描述和 SKU。
上面代码的输出将是这样的:
from bs4 import BeautifulSoup # Parse the page content with BeautifulSoup soup = BeautifulSoup(html_content, 'html.parser') # Extract product details products = [] # Find all product items in the grid product_items = soup.find_all('div', class_='product-item') for product in product_items: # Extract the product name name = product.find('span', class_='product-name').get_text(strip=True) # Extract the product price price = product.find('span', class_='product-price').get_text(strip=True) # Extract the product link link = product.find('a')['href'] # Extract the image URL image_url = product.find('img')['src'] # Create a dictionary with the product details products.append({ 'name': name, 'price': price, 'link': link, 'image_url': image_url }) # Print the extracted product details for product in products[:2]: print(f"Name: {product['name']}") print(f"Price: {product['price']}") print(f"Link: {product['link']}") print(f"Image URL: {product['image_url']}") print('-' * 30)
上面的代码将更新 products.csv,它现在将具有如下信息:
Name: Chaz Kangeroo Hoodie Price: Link: https://scrapingcourse.com/ecommerce/product/chaz-kangeroo-hoodie Image URL: https://scrapingcourse.com/ecommerce/wp-content/uploads/2024/03/mh01-gray_main.jpg ------------------------------ Name: Teton Pullover Hoodie Price: Link: https://scrapingcourse.com/ecommerce/product/teton-pullover-hoodie Image URL: https://scrapingcourse.com/ecommerce/wp-content/uploads/2024/03/mh02-black_main.jpg ------------------------------ …
使用无限滚动或“加载更多”按钮抓取页面似乎具有挑战性,但使用 Requests、Selenium 和 BeautifulSoup 等工具可以简化该过程。
本教程展示了如何从演示页面检索和处理产品数据,并将其保存为结构化格式以便快速轻松地访问。
在此处查看所有代码片段。
以上是使用'加载更多”按钮抓取无限滚动页面:分步指南的详细内容。更多信息请关注PHP中文网其他相关文章!