How to Install and Uninstall python3-vulture Package on openSUSE Leap

Last updated: May 19,2024

1. Install "python3-vulture" package

This is a short guide on how to install python3-vulture on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-vulture

2. Uninstall "python3-vulture" package

Here is a brief guide to show you how to uninstall python3-vulture on openSUSE Leap:

$ sudo zypper remove python3-vulture

3. Information about the python3-vulture package on openSUSE Leap

Information for package python3-vulture:
----------------------------------------
Repository : Main Repository
Name : python3-vulture
Version : 1.4-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 132.9 KiB
Installed : No
Status : not installed
Source package : python-vulture-1.4-bp155.2.12.src
Upstream URL : https://github.com/jendrikseipp/vulture
Summary : Python module for finding dead code
Description :
Vulture finds unused code in Python programs. This is useful for
cleaning up and finding errors in code bases. Running Vulture
on both the library and test suite, untested code can be found.
Due to Python's dynamic nature, static code analyzers like Vulture are
likely to miss some dead code. Also, code that is only called implicitly
may be reported as unused.
Features:
* static code analysis
* only one module
* tests itself and has complete test coverage
* complements pyflakes and has the same output syntax
* sorts unused classes and functions by size with ``--sort-by-size``
* supports Python 2.6, 2.7 and 3.x