Dodgy: Python Code Linter for Sensitive Information

0.2.1 · abandoned · verified Mon Apr 13

Dodgy is a basic static analysis tool designed to scan Python codebases for 'dodgy' looking values. It uses simple regular expressions to detect patterns such as accidentally committed SCM diffs, hardcoded passwords, or secret keys. While initially developed for open-source projects to prevent public exposure of sensitive data, it can also be used in private projects, though its configurability is limited. The project appears to be inactive since its last release in 2019.

Warnings

Install

Quickstart

Run Dodgy from the command line against your project directory to scan for problematic patterns. It's often recommended to integrate this as a pre-commit hook.

dodgy /path/to/your/project

view raw JSON →