redis/redis-py

Redis Python client

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 5 minutes ago
Added to GitGenius on September 4th, 2026
Created on November 6th, 2009
Open Issues & Pull Requests: 81 (+0)
GitHub issues: Enabled
Number of forks: 2,730
Total Stargazers: 13,629 (+1)
Total Subscribers: 315 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 47.3 hours
Mean response time: 74.1 days
90th percentile: 365.5 days
Tracked items: 416

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 97% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "bug" is answered fastest, typically in about 24 hours, while "question" waits about 6 weeks. Only 4% of issues opened in the past year have been closed. Three people close 79% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 37
New in 7 days: 0
Closed in 7 days: 3
Avg open age: 369 days
Stale 30+ days: 26
Stale 90+ days: 11

Recent activity

Opened in 7 days: 0
Closed in 7 days: 2
Comments in 7 days: 3
Events in 7 days: 6

Top labels

  • stale (134)
  • bug (41)
  • question (18)
  • async (10)
  • feature (10)
  • need more info (9)
  • cluster (5)
  • waiting-for-response (5)

Detailed Description

redis-py is a Python client library for connecting to and interacting with Redis key-value stores.

The library solves the problem of communicating with Redis servers from Python applications. It provides a straightforward interface for executing Redis commands, handling the protocol details transparently. The client supports both synchronous operations and can work with different Redis protocol versions, including RESP3 support starting from version 5.0, with RESP3 becoming the default wire protocol in version 8.0 while maintaining backward compatibility with existing code through legacy response shapes.

Developers should choose redis-py if they need direct access to Redis commands from Python without additional abstraction layers. It suits projects ranging from simple caching scenarios to complex data structure operations. For applications requiring object mapping and higher-level abstractions, the README points to redis-om-python as an alternative. The library supports a wide range of Redis versions and offers optional performance improvements through hiredis integration, which provides a compiled response parser that typically requires no code changes when available.

The project maintains active support across multiple Python versions, dropping support for end-of-life Python releases in coordinated version updates. Development includes regular updates to align with new Redis server releases, as evidenced by support for multiple recent Redis versions. The tool provides comprehensive documentation and examples covering basic usage through advanced topics, with clear guidance on connection options and protocol configuration.