如何在本地安装google.appengine.ext ndb

时间:2017-06-27 20:28:26

标签: python google-app-engine app-engine-ndb

我正在尝试使用ndb将一些数据写入Google数据存储区。我的测试设置使用谷歌数据存储区,但使用本地python程序。我已经安装了google cloud sdk和数据存储区sdk,但我仍然遇到导入错误。我应该安装其他东西吗?

from google.appengine.ext import ndb


class dsObj(ndb.Model):
    name = ndb.StringProperty()

生成的错误消息为:

File /... line 10, in <module>
from google.appengine.ext import ndb
ImportError: No module named appengine.ext

1 个答案:

答案 0 :(得分:0)

您是否使用Cloud SDK dev_appserver.py来运行该应用程序? 请参阅Creating a Guestbook Application

假设您使用的是App Engine Standard环境。 Storing Data in Cloud Datastore显示了所需的用法。