uncalled

Find unused functions in Python projects


Keywords
linting, quality, linter, python, unused, variables
License
MIT
Install
pip install uncalled==0.1.4

Documentation

uncalled

Find unused functions in Python projects.

This tool uses either regular expressions (the default) or AST traversal. The regular expressions are fast and has surprisingly few false-positives. To further reduce false positives, there is a combined mode both.

Usage

$ uncalled path/to/project

for more options, see uncalled --help

vulture is a similar package.