PyCQA/pyflakes
A simple program which checks Python source files for errors observed · 2026-08-28
Health v2 · maintenance only
44/100
- Activity 27
- Release rhythm 35
- Longevity 100
Flags: no_releases
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4531
- days_rel: n/a
- days_push: 439
- n_releases_24m: 0
Adoption not part of the score
1455 stars · 188 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
Pyflakes is a fast, passive checker for Python source files that detects errors like undefined names and unused imports by parsing the AST rather than importing code. It deliberately never reports style issues and aims for zero false positives.
Use cases
- find bugs in python source files
- check for undefined names in my code
- detect unused imports in a python project
- lint python code without style complaints
- run a fast static analysis on python modules
- check code with side effects safely without importing it
When to choose
- you want fast, low-noise error checking with virtually no false positives
- your modules have side effects and are unsafe to import
- you want a minimal linter to combine with other tools like flake8
When to avoid
- you need PEP 8 style enforcement or configurable rules (use flake8 or pylint)
- you need project-wide or cross-file analysis
- you need auto-fixing of issues
Facets
cli-tool · maturity active
linter parser static-site-generator developer-tools programming-languages testing python cli cross-platform static-analysis code-quality false-positive-free flake8 python
3 sources
- readme: https://github.com/PyCQA/pyflakes · fetched 2026-08-28 · ec53d5d224c5
- homepage: https://pypi.org/project/pyflakes · fetched 2026-08-29 · 4b4e8fead74a
- registry_pypi: https://pypi.org/pypi/pyflakes/json · fetched 2026-08-29 · 3d10d1f86231
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| PyCQA/pyflakes | main | 44 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem