Prospector

1.18.0 · active · verified Tue Apr 14

Prospector is a comprehensive Python code analysis tool that aggregates results from various static analysis tools like Pylint, Mypy, and Flake8. It offers a unified interface for code quality checks, supporting configurable profiles and output formats. Currently at version 1.18.0, Prospector maintains an active development pace with frequent releases addressing dependency updates, bug fixes, and minor feature enhancements.

Warnings

Install

Imports

Quickstart

Run Prospector from the command line on a specified file or directory. For more control, use a configuration file like `.prospector.yml`.

# Run Prospector on a Python file or directory
# This will use default profiles and output to console.
prospector my_module.py

# Run with strict checks and a zero exit code on success
prospector --strict --zero-exit my_package/

view raw JSON →