Tag

BeautifulSoup

1 views collected around this technical thread.

DataFunTalk
DataFunTalk
Jun 11, 2025 · Backend Development

Master Modern Web Scraping: From Classic Tools to DeepSeek AI Integration

This article provides a comprehensive overview of web‑scraping technologies, compares popular tools such as requests, BeautifulSoup and Selenium, introduces AI‑assisted crawling with DeepSeek, and walks through practical steps for using BrightData’s platform to collect industry data, complete with ready‑to‑run Python code.

BeautifulSoupBrightDataDeepSeek
0 likes · 13 min read
Master Modern Web Scraping: From Classic Tools to DeepSeek AI Integration
Python Programming Learning Circle
Python Programming Learning Circle
Jun 10, 2025 · Backend Development

How to Scrape Beike Real‑Estate Listings with Python: A Complete Guide

This tutorial walks you through building a Python web‑scraper for Beike (Lianjia) second‑hand property listings, covering session spoofing, dynamic parameters, pagination, multithreaded detail fetching, data cleaning, and exporting results to Excel in a step‑by‑step manner.

BeautifulSoupData ExtractionPython
0 likes · 18 min read
How to Scrape Beike Real‑Estate Listings with Python: A Complete Guide
Python Programming Learning Circle
Python Programming Learning Circle
Jun 7, 2025 · Backend Development

Master Python Web Scraping: From Requests to Selenium and Scrapy

Learn how to efficiently scrape web pages using Python by exploring multiple approaches—including simple requests with BeautifulSoup, fast parsing with lxml, dynamic content extraction with Selenium, and large‑scale crawling with Scrapy—complete with installation steps, code snippets, and detailed explanations.

BeautifulSoupPythonRequests
0 likes · 10 min read
Master Python Web Scraping: From Requests to Selenium and Scrapy
Python Programming Learning Circle
Python Programming Learning Circle
May 28, 2025 · Backend Development

Using Proxy IPs for Web Scraping with Python: A Practical Guide

This article explains why proxy IPs are essential for reliable web crawling, compares dynamic and static residential proxies, and provides step‑by‑step Python code to scrape product titles, prices and links from Snapdeal while demonstrating how to integrate proxies for improved efficiency and security.

BeautifulSoupData ExtractionPython
0 likes · 12 min read
Using Proxy IPs for Web Scraping with Python: A Practical Guide
php中文网 Courses
php中文网 Courses
May 14, 2025 · Backend Development

Python Advantages for Web Scraping and Core Library Guide

This article outlines Python's advantages for web crawling, introduces core libraries such as Requests, BeautifulSoup, and Scrapy, details a step-by-step development workflow, provides practical code examples for extracting news titles, and highlights important considerations and advanced techniques for robust scraper implementation.

BeautifulSoupData ExtractionPython
0 likes · 5 min read
Python Advantages for Web Scraping and Core Library Guide
Code Mala Tang
Code Mala Tang
Apr 19, 2025 · Fundamentals

Master HTML Parsing in Python: BeautifulSoup, lxml, and html.parser Compared

Learn why HTML parsing is essential for web scraping, explore three popular Python libraries—BeautifulSoup, lxml, and the built‑in html.parser—covering installation, core usage, advanced techniques, and a comparative analysis to help you choose the right tool for your project.

BeautifulSoupHTML parsingPython
0 likes · 11 min read
Master HTML Parsing in Python: BeautifulSoup, lxml, and html.parser Compared
Python Programming Learning Circle
Python Programming Learning Circle
Mar 25, 2025 · Backend Development

Python Script for Scraping and Converting Anime Images from Huashi6

This article explains how to use Python's requests, BeautifulSoup, and Pillow libraries to crawl high‑resolution anime pictures from the Huashi6 website, extract their webp URLs via regex, download them, and convert the images to the more common png format for personal use.

BeautifulSoupRequestsimage-processing
0 likes · 8 min read
Python Script for Scraping and Converting Anime Images from Huashi6
DataFunSummit
DataFunSummit
Feb 13, 2025 · Big Data

E‑commerce Data Scraping: Fundamentals, Tools, Python Scripts, and Challenges

This tutorial explains e‑commerce web scraping fundamentals, covering definitions, tool types, data categories, step‑by‑step Python script creation with Requests, BeautifulSoup, and Selenium, provides sample code for Amazon, Walmart, and eBay, discusses challenges like dynamic pages and anti‑scraping measures, and recommends using specialized scraping APIs.

BeautifulSoupBright DataData Extraction
0 likes · 15 min read
E‑commerce Data Scraping: Fundamentals, Tools, Python Scripts, and Challenges
Python Programming Learning Circle
Python Programming Learning Circle
Feb 7, 2025 · Backend Development

Python Web Crawling Tutorial: From Basics to a Full‑Scale Novel Scraper

This article introduces web crawling fundamentals, demonstrates how to inspect HTML elements, walks through simple examples using urllib, requests, and BeautifulSoup, and culminates in a complete Python script that extracts chapter links and contents from a novel website, saving them to a text file.

BeautifulSoupRequestscrawler
0 likes · 19 min read
Python Web Crawling Tutorial: From Basics to a Full‑Scale Novel Scraper
Python Programming Learning Circle
Python Programming Learning Circle
Nov 7, 2024 · Backend Development

11 Efficient Python Web Scraping Tools and a Practical News‑Site Example

This article introduces eleven powerful Python libraries for web scraping—including Requests, BeautifulSoup, Scrapy, Selenium, PyQuery, Lxml, Pandas, Pyppeteer, aiohttp, Faker, and ProxyPool—explains their key features, provides ready‑to‑run code snippets, and demonstrates a real‑world news‑site crawling case study.

BeautifulSoupPythonRequests
0 likes · 13 min read
11 Efficient Python Web Scraping Tools and a Practical News‑Site Example
Python Programming Learning Circle
Python Programming Learning Circle
Aug 28, 2024 · Backend Development

Python Web Scraper for Downloading Online Comics

This article explains how to build a Python script that searches a comic website, extracts chapter links and image URLs using requests and BeautifulSoup, and downloads the images into organized folders with multithreaded support, while outlining required modules and potential improvements.

BeautifulSoupManga DownloaderRequests
0 likes · 8 min read
Python Web Scraper for Downloading Online Comics
Python Programming Learning Circle
Python Programming Learning Circle
Mar 18, 2024 · Backend Development

A Quick Introduction to Python Web Scraping for Recipe Websites

This article walks through a five‑minute Python web‑scraping tutorial that fetches recipe pages, parses HTML with urllib and BeautifulSoup, extracts titles and images, and wraps the workflow into a simple console application for random meal selection.

BeautifulSoupConsole ApplicationHTTP Requests
0 likes · 12 min read
A Quick Introduction to Python Web Scraping for Recipe Websites
Python Programming Learning Circle
Python Programming Learning Circle
Dec 8, 2023 · Backend Development

Python Script for Retrieving Google Search Rankings Using Requests and BeautifulSoup

This article explains how to automate Google SEO keyword rank checking by writing a Python script that sends HTTP requests, parses the search results with BeautifulSoup, iterates through results to find a target domain, and handles errors, providing a free alternative to costly SEO tools.

BeautifulSoupRequestsgoogle-search
0 likes · 7 min read
Python Script for Retrieving Google Search Rankings Using Requests and BeautifulSoup
Python Programming Learning Circle
Python Programming Learning Circle
Dec 1, 2023 · Backend Development

Batch Download Images from a Webpage Using Python

This tutorial explains how to use Python with requests and BeautifulSoup to locate image URLs in a webpage's HTML, extract them via regular expressions, and programmatically download all images to a local folder in an automated batch process.

BeautifulSoupImage DownloadRequests
0 likes · 6 min read
Batch Download Images from a Webpage Using Python
Python Programming Learning Circle
Python Programming Learning Circle
May 29, 2023 · Backend Development

Python Web Scraping Tutorial: Downloading Emoji Images from DouTuBa with Multithreading

This tutorial demonstrates how to crawl the DouTuBa emoji website using Python, extract image URLs with regular expressions and BeautifulSoup, and download tens of thousands of images efficiently through a multithreaded downloader.

BeautifulSoupImage Downloadmultithreading
0 likes · 5 min read
Python Web Scraping Tutorial: Downloading Emoji Images from DouTuBa with Multithreading
Test Development Learning Exchange
Test Development Learning Exchange
May 15, 2023 · Backend Development

Fetching Movie Information from IMDb Using Python Requests and BeautifulSoup

This tutorial demonstrates how to use Python's requests and BeautifulSoup libraries to query IMDb for movie details such as title, director, cast, rating, and summary, illustrated with a sample lookup for the film Inception.

BeautifulSoupMovie DataPython
0 likes · 4 min read
Fetching Movie Information from IMDb Using Python Requests and BeautifulSoup
Python Programming Learning Circle
Python Programming Learning Circle
Sep 30, 2022 · Backend Development

Scraping Douban Top 250 Movies with Python and Analyzing Yearly Distribution

This tutorial demonstrates how to use Python's requests and BeautifulSoup libraries to scrape the titles and release years of the 250 movies listed on Douban, clean the extracted data, output it for Excel, and then create a pivot table and chart to visualize the yearly distribution of top films.

BeautifulSoupExcelPivot Table
0 likes · 7 min read
Scraping Douban Top 250 Movies with Python and Analyzing Yearly Distribution
Python Programming Learning Circle
Python Programming Learning Circle
Aug 17, 2022 · Backend Development

Python Script to Scrape and Download Images from Divnil.com

This article explains how to use Python's requests and BeautifulSoup libraries to crawl Divnil.com, extract image detail page URLs, parse each page for high‑resolution image links, and download the images into a local folder with a complete, runnable script.

BeautifulSoupPythonRequests
0 likes · 7 min read
Python Script to Scrape and Download Images from Divnil.com
Python Programming Learning Circle
Python Programming Learning Circle
Aug 13, 2022 · Fundamentals

How to Crawl Static Web Pages and Retrieve Historical Weather Data with Python

This tutorial explains the fundamentals of web crawling by distinguishing static and dynamic pages, outlining a four‑step process for scraping static sites, and providing a complete Python example that extracts historical weather data, parses HTML with BeautifulSoup, and stores results in CSV files.

BeautifulSoupCSVData Extraction
0 likes · 14 min read
How to Crawl Static Web Pages and Retrieve Historical Weather Data with Python
Python Programming Learning Circle
Python Programming Learning Circle
Aug 10, 2022 · Backend Development

Python Web Scraping Tutorial: Using requests and BeautifulSoup to Extract Weather Data

This article demonstrates how to use Python's requests library and BeautifulSoup to inspect webpage source, set request headers, fetch weather page HTML, parse it with CSS selectors, extract daytime and nighttime temperatures, and extend the script to handle multiple cities, providing complete code examples.

BeautifulSoupHTML parsingRequests
0 likes · 7 min read
Python Web Scraping Tutorial: Using requests and BeautifulSoup to Extract Weather Data