Is there a way to get a list of all the project-specific apps in a Django project? settings.INSTALLED_APPS will give me a list of all apps I have installed, but that includes things like django.contrib.auth. I just want the apps I have generated using the createapp command.
As a follow up question, is there a way to dynamically get a list of every module in a given app?