Importing modules:
*PEP8 rules for Imports
Some recommended PEP8 style guidelines for imports:
from math import sqrt, ceil # Not recommended
from math import sqrt # Recommended
from math import ceil
> - Standard library imports
> - Related third party imports
> - Local application/library specific imports
from module import *, it can be unclear if a specific name in your code comes from module or not. This is doubly true if you have multiple from module import *-type statements.