python import module starting with code example
Example 1: import all from library python
from something import *
Example 2: using python function by import
(in python3) ---
from .filename import function_name
from something import *
(in python3) ---
from .filename import function_name