I have heard that "import *" is not considered good practice.
So for example, in a Django app, I have created 5 models, and I want an admin page for each, is this still considered bad practice an my admin.py file?
from myapp.models import *
edit: Its my own code, I know that I want to import everything from the file.