PEP 221 -- Import As | Python.org
https://www.python.org/dev/peps/pep-0221This PEP proposes an extension of Python syntax regarding the import and from <module> import statements. These statements load in a module, and either bind that module to a local name, or binds objects from that module to a local name. However, it is sometimes desirable to bind those objects to a different name, for instance to avoid name clashes.
Import module in Python - GeeksforGeeks
https://www.geeksforgeeks.org/import-module-python10.11.2016 · Python modules can get access to code from another module by importing the file/function using import. The import statement is the most common way of invoking the import machinery, but it is not the only way. import module_name. When the import is used, it searches for the module initially in the local scope by calling __import__ () function.