Table of Contents
I. Setting Up Your Environment
1.1 Installing Python
1.2 Installing Essential Libraries
II. Crafting Your Crawler
2.1 Sending HTTP Requests
2.2 Parsing HTML
2.3 Bypassing Anti-Crawler Measures
III. Data Storage and Processing
3.1 Data Persistence
Home Backend Development Python Tutorial Building a Web Crawler with Python: Extracting Data from Web Pages

Building a Web Crawler with Python: Extracting Data from Web Pages

Jan 21, 2025 am 10:10 AM

Building a Web Crawler with Python: Extracting Data from Web Pages

A web spider, or web crawler, is an automated program designed to navigate the internet, gathering and extracting specified data from web pages. Python, renowned for its clear syntax, extensive libraries, and active community, has emerged as the preferred language for building these crawlers. This tutorial provides a step-by-step guide to creating a basic Python web crawler for data extraction, including strategies for overcoming anti-crawler measures, with 98IP proxy as a potential solution.

I. Setting Up Your Environment

1.1 Installing Python

Ensure Python is installed on your system. Python 3 is recommended for its superior performance and broader library support. Download the appropriate version from the official Python website.

1.2 Installing Essential Libraries

Building a web crawler typically requires these Python libraries:

  • requests: For sending HTTP requests.
  • BeautifulSoup: For parsing HTML and extracting data.
  • pandas: For data manipulation and storage (optional).
  • Standard libraries like time and random: For managing delays and randomizing requests to avoid detection by anti-crawler mechanisms.

Install these using pip:

pip install requests beautifulsoup4 pandas
Copy after login
Copy after login

II. Crafting Your Crawler

2.1 Sending HTTP Requests

Use the requests library to fetch web page content:

import requests

url = 'http://example.com'  # Replace with your target URL
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}  # Mimics a browser
response = requests.get(url, headers=headers)

if response.status_code == 200:
    page_content = response.text
else:
    print(f'Request failed: {response.status_code}')
Copy after login

2.2 Parsing HTML

Use BeautifulSoup to parse the HTML and extract data:

from bs4 import BeautifulSoup

soup = BeautifulSoup(page_content, 'html.parser')

# Example: Extract text from all <h1> tags.
titles = soup.find_all('h1')
for title in titles:
    print(title.get_text())
Copy after login

2.3 Bypassing Anti-Crawler Measures

Websites employ anti-crawler techniques like IP blocking and CAPTCHAs. To circumvent these:

  • Set Request Headers: Mimic browser behavior by setting headers like User-Agent and Accept, as demonstrated above.
  • Utilize Proxy IPs: Mask your IP address using a proxy server. Services like 98IP Proxy offer numerous proxy IPs to help avoid IP bans.

Using 98IP Proxy (Example):

Obtain a proxy IP and port from 98IP Proxy. Then, incorporate this information into your requests call:

proxies = {
    'http': f'http://{proxy_ip}:{proxy_port}',  # Replace with your 98IP proxy details
    'https': f'https://{proxy_ip}:{proxy_port}',  # If HTTPS is supported
}

response = requests.get(url, headers=headers, proxies=proxies)
Copy after login

Note: For robust crawling, retrieve multiple proxy IPs from 98IP and rotate them to prevent single-IP blocks. Implement error handling to manage proxy failures.

  • Introduce Delays: Add random delays between requests to simulate human browsing.
  • CAPTCHA Handling: For CAPTCHAs, explore OCR (Optical Character Recognition) or third-party CAPTCHA solving services. Be mindful of website terms of service.

III. Data Storage and Processing

3.1 Data Persistence

Store extracted data in files, databases, or cloud storage. Here's how to save to a CSV:

pip install requests beautifulsoup4 pandas
Copy after login
Copy after login

The above is the detailed content of Building a Web Crawler with Python: Extracting Data from Web Pages. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How to solve permission issues when using python --version command in Linux terminal? How to solve permission issues when using python --version command in Linux terminal? Apr 02, 2025 am 06:36 AM

Using python in Linux terminal...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to get news data bypassing Investing.com's anti-crawler mechanism? How to get news data bypassing Investing.com's anti-crawler mechanism? Apr 02, 2025 am 07:03 AM

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

Python 3.6 loading pickle file error ModuleNotFoundError: What should I do if I load pickle file '__builtin__'? Python 3.6 loading pickle file error ModuleNotFoundError: What should I do if I load pickle file '__builtin__'? Apr 02, 2025 am 06:27 AM

Loading pickle file in Python 3.6 environment error: ModuleNotFoundError:Nomodulenamed...

What is the reason why pipeline files cannot be written when using Scapy crawler? What is the reason why pipeline files cannot be written when using Scapy crawler? Apr 02, 2025 am 06:45 AM

Discussion on the reasons why pipeline files cannot be written when using Scapy crawlers When learning and using Scapy crawlers for persistent data storage, you may encounter pipeline files...

See all articles