在 Python 2.7 上为 AppEngine 配置 remote_api,我需要设置配置调用来创建和配置数据库调用存根,这样我就不必在每个 REST 资源和处理程序中复制配置调用。我想要的代码与此类似:
def configure_remote_api():
try:
from google.appengine.ext.remote_api import remote_api_stub
remote_api_stub.ConfigureRemoteApi(None, '/_ah/remote_api', auth_func, 'myapp.appspot.com')
except ImportError:
pass
我想要的是设置它,以便它被模块化调用,并且不必在整个应用程序代码中复制,甚至configure_remote_api()
. 这样,我们可以保持我们的代码库干净,并在本地开发时自动使用 remote_api。我怎样才能做到这一点?