If you have scenario where you need to check whether you have one Django application installed in your project or not, you can use this simple trick :
from django.conf import settings if "app_name" in settings.INSTALLED_APPS: print "app_name install"
That’s it. Enjoy!
Related posts:
[...] This post was mentioned on Twitter by KomunitasWeb, Django Ireland. Django Ireland said: How to Check if An Application is Installed in Django | KomunitasWeb http://bit.ly/aoR1GG [...]