manage.py with magic python path

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

# magic python path
from os.path import abspath, dirname
import sys
sys.path.insert(0, dirname(dirname(abspath(__file__))))

from django.core.management import execute_manager
try:
    import settings # Assumed to be in the same directory.
except ImportError:
    import sys
    sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
    sys.exit(1)

if __name__ == "__main__":
    execute_manager(settings)

More like this

  1. All Imports Checker by madhav.bnk 2 years, 2 months ago
  2. invoke pyflakes via manage.py by mpasternacki 2 years, 3 months ago
  3. Deep package test runner by eternicode 11 months, 1 week ago
  4. Command Line Script Launcher by dakrauth 3 years, 7 months ago
  5. Database cleanup by skyjur 1 year, 6 months ago

Comments

renanro (on July 20, 2010):

This was so perfect, my application don't work of any form.

But, after i put the code of magic python path, my application run perfectly.

Thank you

I'm from Brazil

Renan Roberto Oliveira

#

(Forgotten your password?)