惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
D
DataBreaches.Net
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Recent Announcements
Recent Announcements
Jina AI
Jina AI
G
Google Developers Blog
腾讯CDC
博客园_首页
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Mastering the "requests" Library in Python
MEROLINE LIZ · 2026-05-15 · via DEV Community

The requests library is probably the most commonly used library in Python, having been used in countless applications to retrieve data from an API, scrape a website, or send data to a server. It's one of the most downloaded Python packages of all time and for good reason. In this article, you will learn all the important things to know to use it with confidence.

What is requests?

requests is a third-party Python library that makes the sending of HTTP requests super easy. There is a standard library module called urllib in Python, but it's a bit cumbersome to use and has a lot of words. requests will do everything that urllib can do but put all of that into a user-friendly but clean API.

According to its own tagline, the library is HTTP for Humans.

Installation

pip install requests

Enter fullscreen mode Exit fullscreen mode

That's it. Once installed, import it in your script:

import requests

Enter fullscreen mode Exit fullscreen mode

Making Your First Request

GET Request

The most common HTTP method. Use it to retrieve data.

import requests

response = requests.get("https://jsonplaceholder.typicode.com/posts/1")

print(response.status_code)  # 200
print(response.json())       # Parsed JSON response

Enter fullscreen mode Exit fullscreen mode

Response Object

Every request returns a Response object packed with useful attributes:

response = requests.get("https://jsonplaceholder.typicode.com/posts/1")

print(response.status_code)   # HTTP status code (200, 404, 500, etc.)
print(response.text)          # Response body as a string
print(response.json())        # Response body parsed as JSON (dict/list)
print(response.headers)       # Response headers (dict-like)
print(response.url)           # Final URL after redirects
print(response.elapsed)       # Time taken for the request

Enter fullscreen mode Exit fullscreen mode

HTTP Methods

requests supports all standard HTTP methods:

# GET — Retrieve data
requests.get(url)

# POST — Send data to create a resource
requests.post(url, json={"name": "Alice"})

# PUT — Update an entire resource
requests.put(url, json={"name": "Alice Updated"})

# PATCH — Partially update a resource
requests.patch(url, json={"name": "Alice Patched"})

# DELETE — Remove a resource
requests.delete(url)

# HEAD — Like GET, but only fetches headers
requests.head(url)

# OPTIONS — Ask what methods a URL supports
requests.options(url)

Enter fullscreen mode Exit fullscreen mode

Query Parameters

Instead of manually building query strings, pass a params dict:

params = {
    "userId": 1,
    "completed": True
}

response = requests.get(
    "https://jsonplaceholder.typicode.com/todos",
    params=params
)

print(response.url)
# https://jsonplaceholder.typicode.com/todos?userId=1&completed=True

Enter fullscreen mode Exit fullscreen mode

Sending Data

JSON Body (most common for APIs)

payload = {
    "title": "My Post",
    "body": "Hello, world!",
    "userId": 1
}

response = requests.post(
    "https://jsonplaceholder.typicode.com/posts",
    json=payload  # Automatically sets Content-Type: application/json
)

print(response.status_code)  # 201
print(response.json())

Enter fullscreen mode Exit fullscreen mode

Form Data

response = requests.post(
    "https://httpbin.org/post",
    data={"username": "alice", "password": "secret"}
)

Enter fullscreen mode Exit fullscreen mode

Uploading Files

with open("document.pdf", "rb") as f:
    response = requests.post(
        "https://httpbin.org/post",
        files={"file": f}
    )

Enter fullscreen mode Exit fullscreen mode

Custom Headers

Many APIs will require headers, such as authentication tokens, content types, or custom metadata:

headers = {
    "Authorization": "Bearer YOUR_TOKEN_HERE",
    "Accept": "application/json",
    "X-Custom-Header": "my-value"
}

response = requests.get("https://api.example.com/data", headers=headers)

Enter fullscreen mode Exit fullscreen mode

Authentication

Basic Auth

from requests.auth import HTTPBasicAuth

response = requests.get(
    "https://httpbin.org/basic-auth/user/pass",
    auth=HTTPBasicAuth("user", "pass")
)
# Shorthand:
response = requests.get(url, auth=("user", "pass"))

Enter fullscreen mode Exit fullscreen mode

Token / Bearer Auth

headers = {"Authorization": "Bearer my-secret-token"}
response = requests.get("https://api.example.com/protected", headers=headers)

Enter fullscreen mode Exit fullscreen mode

API Key (as query param)

response = requests.get(
    "https://api.example.com/data",
    params={"api_key": "your-api-key"}
)

Enter fullscreen mode Exit fullscreen mode

Handling Timeouts

Always set a timeout:

try:
    response = requests.get("https://httpbin.org/delay/5", timeout=3)
except requests.exceptions.Timeout:
    print("The request timed out!")

Enter fullscreen mode Exit fullscreen mode

The timeout parameter accepts:

  • A single number (applies to both connect and read)
  • A tuple (connect_timeout, read_timeout)
response = requests.get(url, timeout=(2, 10))  # 2s to connect, 10s to read

Enter fullscreen mode Exit fullscreen mode

Error Handling

Checking Status Codes

response = requests.get("https://httpbin.org/status/404")

if response.status_code == 200:
    print("Success!")
elif response.status_code == 404:
    print("Not found.")
elif response.status_code == 500:
    print("Server error.")

Enter fullscreen mode Exit fullscreen mode

raise_for_status()

A cleaner approach — raises an HTTPError for 4xx and 5xx responses:

try:
    response = requests.get("https://httpbin.org/status/500")
    response.raise_for_status()
except requests.exceptions.HTTPError as e:
    print(f"HTTP error: {e}")

Enter fullscreen mode Exit fullscreen mode

Catching All Request Exceptions

try:
    response = requests.get("https://nonexistent.example.com", timeout=5)
    response.raise_for_status()
    data = response.json()
except requests.exceptions.ConnectionError:
    print("Failed to connect.")
except requests.exceptions.Timeout:
    print("Request timed out.")
except requests.exceptions.HTTPError as e:
    print(f"HTTP error: {e}")
except requests.exceptions.RequestException as e:
    print(f"Something went wrong: {e}")

Enter fullscreen mode Exit fullscreen mode

RequestException is the base class for all requests exceptions, a useful catch-all.

Sessions

For multiple requests to the same host use a Session. It can reuse the underlying tcp connection (higher performance) and allows to configure persistent headers, cookies or auth: (better performance)

with requests.Session() as session:
    session.headers.update({"Authorization": "Bearer my-token"})

    response1 = session.get("https://api.example.com/users")
    response2 = session.get("https://api.example.com/posts")
    response3 = session.post("https://api.example.com/posts", json={"title": "New"})

Enter fullscreen mode Exit fullscreen mode

Working with Cookies

# Send cookies
cookies = {"session_id": "abc123"}
response = requests.get("https://httpbin.org/cookies", cookies=cookies)

# Read cookies from response
print(response.cookies["my-cookie"])

Enter fullscreen mode Exit fullscreen mode

Redirects

By default, requests follows redirects automatically. To disable this:

response = requests.get("https://httpbin.org/redirect/3", allow_redirects=False)
print(response.status_code)  # 302

Enter fullscreen mode Exit fullscreen mode

SSL Verification

By default, SSL certificates are verified to skip verification though not recommended in production:

response = requests.get("https://self-signed.badssl.com/", verify=False)

Enter fullscreen mode Exit fullscreen mode

Streaming Large Responses

For large files, stream the response instead of loading it all into memory:

with requests.get("https://example.com/large-file.zip", stream=True) as response:
    response.raise_for_status()
    with open("large-file.zip", "wb") as f:
        for chunk in response.iter_content(chunk_size=8192):
            f.write(chunk)

Enter fullscreen mode Exit fullscreen mode

Putting It All Together: A Real-World Example

Here's a reusable API client using sessions and proper error handling and it is a production-ready system to fetch specific blog posts from a public API.

import requests
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry


def create_session(retries=3, backoff_factor=0.5):
    """Create a session with automatic retries."""
    session = requests.Session()
    retry = Retry(
        total=retries,
        backoff_factor=backoff_factor,
        status_forcelist=[429, 500, 502, 503, 504]
    )
    adapter = HTTPAdapter(max_retries=retry)
    session.mount("https://", adapter)
    session.mount("http://", adapter)
    return session


def fetch_posts(user_id: int) -> list[dict]:
    base_url = "https://jsonplaceholder.typicode.com"

    with create_session() as session:
        session.headers.update({"Accept": "application/json"})

        try:
            response = session.get(
                f"{base_url}/posts",
                params={"userId": user_id},
                timeout=10
            )
            response.raise_for_status()
            return response.json()

        except requests.exceptions.HTTPError as e:
            print(f"HTTP error {response.status_code}: {e}")
        except requests.exceptions.ConnectionError:
            print("Could not connect to the server.")
        except requests.exceptions.Timeout:
            print("Request timed out.")

    return []


posts = fetch_posts(user_id=1)
for post in posts[:3]:
    print(f"- {post['title']}")

Enter fullscreen mode Exit fullscreen mode

Quick Reference Cheat Sheet

Task Code
GET request requests.get(url)
POST with JSON requests.post(url, json=data)
Add headers requests.get(url, headers={"Auth": "..."})
Query params requests.get(url, params={"key": "val"})
Set timeout requests.get(url, timeout=5)
Basic auth requests.get(url, auth=("user", "pass"))
Check status response.raise_for_status()
Parse JSON response.json()
Get text response.text
Reuse connections requests.Session()

Conclusion

The requests library deserves to be in the top ten of Python's most favourite packages. Easy to use, well documented and cleanses the bumps from the road of HTTP. From making an API request to scraping data or even creating a CLI tool, requests is almost always the ideal solution.

Here are some important lessons to be learned:

  1. Set a timeout on all requests to avoid hanging requests
  2. Incorporate a cleanup behavior for errors: use the function raise_for_status()
  3. Use a Session for many requests to the same host
  4. When sending a JSON payload use json= (not data=)