[Django]-Django: How to handle imports in a reusable app

4👍

You should update your Python path with the directory containing your apps.

This way you just have to :

from app.models import MyModel

Leave a comment