An open API service indexing awesome lists of open source software.

https://github.com/elazarg/uncalled

Finding unused functions in Python projects
https://github.com/elazarg/uncalled

linter python unused variables

Last synced: 8 months ago
JSON representation

Finding unused functions in Python projects

Awesome Lists containing this project

README

          

``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.