I'm a Python newbie, so I'm sure this is easy. Here's the code in my main.py:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
use_library('django', '1.1')
# Use django form library.
from django import forms
from django.shortcuts import render_to_response
The last line breaks with an ImportError. If I don't include that, then I get an error that "render_to_response" isn't available. What am I doing wrong?