I have a common utils named utils.py, which is shared across different target (dataset, for example). So, I have to define some target specific attributes, like function and variables.
I have try to do something like this
def setup(name):
    if ...:
        var = val
        import module
    elif ...:
        do something
But from module import * is prohibited within function.
Is there any good practice or any elegant way to do this?
