-
vulture finds unused code in Python programs. It is useful for cleaning up and finding errors in large code bases.
Testing
Typing Checker
Lint Python Scripts
ruff
ruff is an extremely fast Python linter, written in Rust. It is preferred to other …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
uvx ty check
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
See IDEs With AI Coding Assists .
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
There are 3 different ways to import Python modules.
import module_name
import module_name as alias
from module import pkg_mod_or_fun
The module importlib.resources (since Python 3.7+) leverages …