I\'m trying to use the Django ORM in some standalone screen scraping scripts. I know this question has been asked before, but I\'m unable to figure out a good solution for my pa
Are you sure it shouldn't be:
sys.path.append(os.path.join(os.path.abspath('..'), 'web'))
Also, make sure there's an __init__.py file (empty is fine) in project/web/django_project.
__init__.py
project/web/django_project
P.S. I'd recommend feeding os.path.join's output to os.path.abspath instead of the other way.
os.path.join
os.path.abspath