[Answered ]-Django package and app name

2👍

You can’t have app names clashing with names of python packages and django will warn you about that when creating app using ./manage.py startapp.

It can’t be avoided because apps are imported like any other packages.

Leave a comment