4👍
✅
It will slow down startup (actually, whatever loads the file containing those imports the first time will be slowed down).
Assuming django does not do that for every request but only once, it is not an issue at all.
3👍
Only the first time they’re imported in the process. After that, all that happens is that a reference is copied to the local scope.
Source:stackexchange.com