I was doing some beginner AppEngine dev on a Windows box and installed Eclipse for that. I liked the autocompletion I got with the objects and functions.
I moved my dev environment over to my Macbook, and installed Eclipse Ganymede. I installed the AppEngine SDK and Eclipse plug in. However, when I am typing out code now, the autocomplete isn’t functioning. Did I miss a step?
UPDATE
Just to add to this:
the line:
import cgi
appears to give me what I need. When I type “cgi.” I get all of the auto complete. However, the lines:
from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext import db
don’t give me any auto complete. If I type “users.” there is no auto complete.
I found the answer from a poster on the Google App Engine forum. I will blog the experience later, but this one gets a FAIL for GOOG. You need to click on the download link for “Linux/Other” to get the ZIP file with the right files. You can then point your PYTHONPATH at the directory on your local machine.
The fail here is that the Mac SDK download gives you the AppEngineLauncher, but not these files. Nowhere on the AppEngine site, or in the directions GOOG publishes, do they suggest that as a Mac developer that you should download these “other” files. Very, very, very annoying.