Tag

Requests

1 views collected around this technical thread.

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
Jun 4, 2025 · Backend Development

How to Scrape JD.com Product Reviews with Python and Save to CSV

This tutorial explains how to use Python to scrape product reviews from JD.com via its AJAX comment API, extract fields such as nickname, score, content, and image count, and save the collected data into a CSV file using the requests and csv modules.

CSVData ExtractionJD.com
0 likes · 7 min read
How to Scrape JD.com Product Reviews with Python and Save to CSV
Python Programming Learning Circle
Python Programming Learning Circle
May 29, 2025 · Big Data

Common Python Web Scraping Techniques for E‑commerce Data Collection

This article introduces ten practical Python-based web scraping methods—including requests, Selenium, Scrapy, Crawley, PySpider, aiohttp, asks, vibora, Pyppeteer, and Fiddler‑plus‑Node reverse engineering—explaining their use cases, advantages, and code examples for efficiently gathering e‑commerce and app data.

PythonRequestsScrapy
0 likes · 8 min read
Common Python Web Scraping Techniques for E‑commerce Data Collection
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
Python Programming Learning Circle
Python Programming Learning Circle
May 12, 2025 · Fundamentals

Basic Python Web Scraping Techniques and Tips

This article introduces beginner-friendly Python web‑scraping methods, covering the simplest urllib/requests approach, adding request headers, inspecting network traffic for hidden data, handling dynamically loaded content with Selenium, and provides links to deeper tutorials for each technique.

PythonRequestsSelenium
0 likes · 4 min read
Basic Python Web Scraping Techniques and Tips
Code Mala Tang
Code Mala Tang
May 4, 2025 · Backend Development

Mastering API Calls in Python: SOAP, REST, and GraphQL Explained

Learn how Python can interact with the three major API types—SOAP, REST, and GraphQL—by understanding their core concepts, differences, and practical code examples using libraries like zeep and requests, empowering you to build robust integrations across diverse services.

APIGraphQLPython
0 likes · 9 min read
Mastering API Calls in Python: SOAP, REST, and GraphQL Explained
php中文网 Courses
php中文网 Courses
Apr 25, 2025 · Backend Development

Understanding HTTP Protocol and Using Python requests Library

This article introduces the fundamentals of the HTTP protocol, explains its request and response structures, and provides a comprehensive guide to using Python's requests library for sending GET, POST, PUT, DELETE requests, handling headers, parameters, JSON responses, timeouts, and exceptions.

HTTPNetwork ProgrammingPython
0 likes · 9 min read
Understanding HTTP Protocol and Using Python requests Library
Python Programming Learning Circle
Python Programming Learning Circle
Apr 1, 2025 · Backend Development

Implementing Local QR Code Login for QQ Music Using Python

This tutorial walks through building a Python script that fetches a QQ Music QR code, displays it locally, monitors its status, extracts required encrypted parameters from cookies, and completes the login process by repeatedly polling the authentication endpoint to obtain a session.

PythonQR LoginRequests
0 likes · 13 min read
Implementing Local QR Code Login for QQ Music Using Python
Test Development Learning Exchange
Test Development Learning Exchange
Mar 25, 2025 · Backend Development

API Automation Testing with Pytest, Requests, and Allure: A Step‑by‑Step Guide

This guide walks through setting up a Python environment, organizing a test project, writing reusable request utilities and data‑driven Pytest cases, generating Allure reports, and extending tests with token handling and database verification for robust backend API automation.

API testingAllureRequests
0 likes · 6 min read
API Automation Testing with Pytest, Requests, and Allure: A Step‑by‑Step Guide
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
Python Programming Learning Circle
Python Programming Learning Circle
Mar 25, 2025 · Backend Development

Comprehensive Python Guide to Download Files from the Web, S3, and Other Sources

This tutorial walks through multiple Python techniques for downloading regular files, web pages, Amazon S3 objects, and other resources, covering basic requests, wget, handling redirects, chunked large‑file downloads, parallel downloads, progress bars, urllib, urllib3, proxy usage, boto3 for S3, and asynchronous downloads with asyncio.

PythonRequestsasyncio
0 likes · 8 min read
Comprehensive Python Guide to Download Files from the Web, S3, and Other Sources
Test Development Learning Exchange
Test Development Learning Exchange
Mar 20, 2025 · Backend Development

Python Requests Tutorial for API Chained Calls and Automated Testing

This article demonstrates how to use Python's requests library to perform chained API calls—login, create user, retrieve user details, and update user information—while handling exceptions, logging, and environment configuration for robust automated testing.

BackendRequestsapi-testing
0 likes · 7 min read
Python Requests Tutorial for API Chained Calls and Automated Testing
Test Development Learning Exchange
Test Development Learning Exchange
Mar 18, 2025 · Backend Development

How to Set and Inspect HTTP Request Headers with Python requests

This guide explains why request headers are needed, shows how to set them using Python's requests library—including basic headers and authentication tokens—and demonstrates how to view both request and response headers along with common header usage tips.

APIHTTPPython
0 likes · 5 min read
How to Set and Inspect HTTP Request Headers with Python requests
Test Development Learning Exchange
Test Development Learning Exchange
Mar 17, 2025 · Backend Development

Python Requests Library: Core Modules, Methods, Parameters, and Usage Examples

This tutorial explains the Python requests library, covering its core modules, HTTP methods (GET, POST, PUT, DELETE), key parameters, session management, and exception handling with practical code examples for API interaction and best practices.

APIException HandlingHTTP
0 likes · 5 min read
Python Requests Library: Core Modules, Methods, Parameters, and Usage Examples
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.

BeautifulSoupRequestsTutorial
0 likes · 19 min read
Python Web Crawling Tutorial: From Basics to a Full‑Scale Novel Scraper
Test Development Learning Exchange
Test Development Learning Exchange
Feb 6, 2025 · Backend Development

Comprehensive Python API Testing Examples with Requests and Pytest

This article provides a collection of practical Python snippets demonstrating how to send GET and POST requests, validate status codes, response bodies, JSON schemas, handle headers, query parameters, file uploads, redirects, timeouts, sessions, authentication, rate limiting, and parameterized testing using the requests library and pytest framework.

API testingHTTPPython
0 likes · 14 min read
Comprehensive Python API Testing Examples with Requests and Pytest
Test Development Learning Exchange
Test Development Learning Exchange
Jan 25, 2025 · Backend Development

HttpRunner Overview: Features, Sample Test Cases, and Integration with Requests

This article introduces the open‑source HttpRunner API testing tool, outlines its key features such as YAML/JSON test definitions, parameterization, assertions, reporting and performance testing, and provides step‑by‑step Python examples showing how to write, run, and integrate HttpRunner tests with existing requests‑based projects.

API testingHttpRunnerPython
0 likes · 7 min read
HttpRunner Overview: Features, Sample Test Cases, and Integration with Requests
Python Programming Learning Circle
Python Programming Learning Circle
Jan 8, 2025 · Backend Development

Downloading Bilibili Videos with Python: A Step‑by‑Step Guide Using Fiddler and Requests

This tutorial explains how to capture Bilibili video streams with Fiddler, extract the necessary request headers and URLs, and use a concise Python script based on the requests library to download videos, handling header nuances and batch‑fetching video lists from an uploader’s page.

BilibiliFiddlerRequests
0 likes · 6 min read
Downloading Bilibili Videos with Python: A Step‑by‑Step Guide Using Fiddler and Requests