I know it's possible to import everything in a file into another file like this:
from app1.models import * 
But I want to do something like this:
from *.models import *
It means import everything inside models file from any directory.
for example in this file structure
/module
    /app1
        /models.py
    /app2
        /models.py
    /allModels.py
I want to import all models.py files into allModels.py
Is it possible? Do we have such syntax?
