importalias
Import aliasing is a feature in many programming languages that allows a programmer to rename an imported module, package, or symbol for use within a local scope. The primary goal is to shorten long paths, resolve naming conflicts, or align imported names with local conventions. Aliases are typically local to a file or module and do not alter the original exports.
In practice, several language families implement aliasing with different syntax. In Python, the as keyword is
Aliases are primarily a convenience for name resolution and readability, and they do not change runtime behavior