Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 459 Bytes

README.rst

File metadata and controls

22 lines (12 loc) · 459 Bytes

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.