Function call using import in web2py
问题 I have split the code into multiple files. I have imported all the functions from all other files into admin.py. Lets say I want to call a function XYZ. If I give path to function as admin/XYZ it gives me error as invalid function and for this I have to give the path as file_with_XYZ_function/XYZ . Is there a way to overcome this problem and simple call all the imported functions from one single file 回答1: NOTE: This might not be answering your question as I'm not sure I understand your