I want to capture the name of ALL non-built-in functions from a specific module and put them into a list.
Let's say I wrote func_1() and func_2() inside the module test.py. Then, from inside another module, I want to do something like:
import test
my_list_of_functions = all_funcs_from(test)
Dir() returns built-in functions together, and I wasn't able to do the tricky with help()