Did not you forget about dot notation?
if you import like that:
import your_module_name
# suppose you have func_1 and func_2 in the module
# you need to call them using dot notation
your_module_name.func_1()
your_module_name.func_2()
?!
Also, the context of the problem is short, next time provide it little bit widely