I’m writing a quick Django module and want to check for another module. Is there’s a shortcut to check if another module is in the INSTALLED_APPS list in Django’s settings?
I’m writing a quick Django module and want to check for another module. Is
Share
And this way is somewhat how Django itself does. Also check the
load_appmethod on the linked page.