Instead of adding it to PYTHONPATH, which you should do on every machine you install your project on, you can add it to django settings (mysite / settings.py) in the INSTALLED_APPS variable:
INSTALLED_APPS=(myapp, utils)
This leads to adding utils to the python path, so you can do things like:
from utils import shortcuts
source
share