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
- Host: GitHub
- URL: https://github.com/elazarg/uncalled
- Owner: elazarg
- License: mit
- Created: 2016-10-21T13:13:14.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2023-07-02T14:02:03.000Z (almost 3 years ago)
- Last Synced: 2024-04-27T22:43:15.616Z (about 2 years ago)
- Topics: linter, python, unused, variables
- Language: Python
- Size: 38.1 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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.