How do I import every module and every method in project folder?
(Note: This is not production code, it's for debugging.)
Example:
How do I make this:
from views.display_hot_keys import display_hot_keys
from views.display_zones import display_zones
from controllers.api_key_controller import all_api_keys_nicknames
from models.api_data_standardizer import single_balance_standardizer
..become something like this...
from controllers.* import *
from views.* import *
from models.* import *
Edit: Perhaps I'm missing something, but I don't see how this question is answered in How can I get a list of locally installed Python modules??