how to import one function from library python code example
Example 1: using python function by import
(in python3) ---
from .filename import function_name
Example 2: python import only one function
from my_module import func1
(in python3) ---
from .filename import function_name
from my_module import func1