psf/requests

A simple, yet elegant, HTTP library.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 17 minutes ago
Added to GitGenius on August 31st, 2026
Created on February 13th, 2011
Open Issues & Pull Requests: 236 (+0)
GitHub issues: Enabled
Number of forks: 10,116
Total Stargazers: 54,270 (-1)
Total Subscribers: 1,313 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 3.4 hours
Mean response time: 81.1 days
90th percentile: 91.0 days
Tracked items: 397

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 98% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 8% of issues opened in the past year have been closed. Three people close 89% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 53
New in 7 days: 4
Closed in 7 days: 3
Avg open age: 1,524 days
Stale 30+ days: 43
Stale 90+ days: 36

Recent activity

Opened in 7 days: 3
Closed in 7 days: 2
Comments in 7 days: 1
Events in 7 days: 5

Top labels

  • Question/Not a bug (36)
  • actions/autoclose-qa (28)
  • Feature Request (23)
  • actions/autoclose-feat (15)
  • Bug (9)
  • Propose Close (8)
  • Documentation (7)
  • Planned (7)

Detailed Description

Requests is a Python HTTP client library that simplifies sending HTTP requests with an intuitive API.

Requests solves the friction of working with HTTP in Python by eliminating boilerplate code. Instead of manually constructing query strings, form-encoding request bodies, or managing connection details, developers call simple methods like `requests.get()` or `requests.post()` with straightforward parameters. The library handles URL encoding, JSON serialization, connection pooling, and session management transparently, allowing developers to focus on application logic rather than HTTP mechanics.

Requests suits any Python project that needs to communicate over HTTP, from simple scripts to large applications. It is particularly well-suited for web scraping, API clients, and microservices. The library provides production-grade features including keep-alive connections, cookie persistence across requests, TLS/SSL verification, multiple authentication schemes, proxy support including SOCKS, streaming downloads, and chunked request handling. Developers building robust HTTP-speaking applications will find these capabilities ready to use without additional configuration.

The project maintains steady activity with regular maintenance and bug fixes. The codebase receives ongoing attention to compatibility and reliability. Development remains focused on supporting current Python versions while preserving the library's core design principle of simplicity. The project continues to address issues and incorporate improvements that keep it aligned with modern HTTP practices and Python ecosystem standards.