All items tagged as “django python path”

  • Easily Add Directory Path for Django Apps

    Sometimes you just need to add a path so Python can find your Django apps that you are including in your project. For instance, we commonly place a folder inside a Django project that is named “apps”. We would place project specific apps in that folder so we can keep them loosely coupled without having to put them directly on our python path. But python needs to find them somehow…