Development Console Interactive Console#!/usr/bin/python import code import getpass import sys
from google.appengine.ext.remote_api import remote_api_stub from google.appengine.ext import db def auth_func(): return '[email protected]', 'google$$free' app_id = 'myapp' host = '%s.appspot.com' % app_id remote_api_stub.ConfigureRemoteDatastore(app_id, '/remote_api', auth_func, host) code.interact('App Engine interactive console for %s' % (app_id,), None, locals()) Run Program Traceback (most recent call last): File "/base/python_lib/versions/1/google/appengine/ext/admin/__init__.py", line 194, in post exec(compiled_code, globals()) File "<string>", line 6, in <module> File "/base/python_lib/versions/1/google/appengine/ext/remote_api/remote_api_stub.py", line 74, in <module> from google.appengine.tools import appengine_rpc ImportError: No module named tools Best Regards Tom Wu 2009/3/24 Tom Wu <[email protected]> > > Exception Type: ImportError > Exception Value: > > No module named tools > > Exception Location: /base/python_lib/versions/1/google/appengine/ext/ > remote_api/remote_api_stub.py in <module>, line 74 > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
