I have a file structure:
A
|
main.py
|_B
|a_funcs.py
A is the main folder while B is a sub-folder inside A. In my main.py filer, I have from B.a_funcs import *. This statement imports all functions from the a_func.py file. Is it possible to list out all the functions inside that a_func.py file`? How do I do that?
I tried dir(a_func) but that says a_func is not defined.