microsoft/pyright

Static Type Checker for Python

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 48 minutes ago
Added to GitGenius on September 3rd, 2026
Created on March 12th, 2019
Open Issues & Pull Requests: 341 (+0)
GitHub issues: Enabled
Number of forks: 1,808
Total Stargazers: 15,624 (+0)
Total Subscribers: 130 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 1.3 hours
Mean response time: 3.7 days
90th percentile: 4.8 days
Tracked items: 1,512

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 93% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "question" is answered fastest, typically in under an hour, while "spec compliance" waits about 4 days. 83% of tracked open issues have had no activity in three months, so the open count overstates what is actively being worked. Only 9% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 269
New in 7 days: 2
Closed in 7 days: 1
Avg open age: 291 days
Stale 30+ days: 249
Stale 90+ days: 226

Recent activity

Opened in 7 days: 2
Closed in 7 days: 1
Comments in 7 days: 0
Events in 7 days: 1

Top labels

  • bug (1,261)
  • as designed (697)
  • addressed in next version (365)
  • enhancement request (309)
  • regression (52)
  • spec compliance (27)
  • question (13)
  • needs decision (7)

Detailed Description

Pyright is a static type checker for Python that performs full-featured, standards-based type analysis and is designed for high performance on large codebases.

Pyright addresses the problem of catching type errors in Python before runtime by performing static analysis without executing code. It works by parsing Python source files, building a type model of the codebase, and checking that operations are consistent with declared or inferred types. The tool includes both a command-line interface for integration into build systems and a Visual Studio Code extension for real-time feedback during development.

Teams working on large Python projects benefit most from Pyright, particularly those already using type hints or planning to adopt them. The tool suits codebases where type safety is a priority and where developers want IDE-level type checking integrated into their workflow. The availability of both a standalone command-line tool and an editor extension makes it flexible for different development environments and CI/CD pipelines.

The project maintains active engagement with its community through a dedicated discussions section for questions about type checking and Python annotations. Bug reports and feature requests are tracked across two repositories, with core type checking functionality managed in the main Pyright repository while language service features are associated with a companion project, though both are monitored by the same contributors. The project accepts external contributions and requires contributors to agree to a standard contributor license agreement before merging changes.