.\" Text automatically generated by txt2man .TH vulture 1 "26 February 2023" "2.7" "vulture" .SH NAME \fBvulture \fP- searches for unused ("dead") code in a Python program \fB .SH SYNOPSIS .nf .fam C \fBvulture\fP [\fIoptions\fP] .fam T .fi .fam T .fi .SH DESCRIPTION Vulture scans for unused classes, functions and variables. .PP Due to Python's dynamic nature it's impossible to find all ununsed code for a static code analyzer, because it ignores scopes and scans only token names. Additionally, some dynamic items that are not explicitly called in the code may be incorrectly reported. .SH OPTIONS \fB-h\fP, \fB--help\fP .PP \fB--exclude\fP= .PP .nf .fam C comma-separated list of filename patterns to exclude (e.g. svn,external) .fam T .fi \fB-v\fP, \fB--verbose\fP .SH AUTHORS \fBvulture\fP was written by Jendrik Seipp