语境:
我的模型类继承自基类:
class BaseModel(ndb.model):
# commom fields and methods
class SpecificModel(BaseModel):
# specific fields and methods
问题:
我想使用appengine bulkuploader 服务导出 SpecificModel 实体。
我已经定义了配置文件(data_loader.py):
import sys
sys.path.append('.') ## this is to ensure that it finds the file 'models.py'
from google.appengine.ext import ndb
from google.appengine.tools import bulkloader
from models import *
class SpecificModelExporter(bulkloader.Exporter):
def __init__(self):
bulkloader.Exporter.__init__(self, 'SpecificModel',
[('fieldOne', str, None),
('fieldTwo', str, None)
])
exporters = [ SpecificModelExporter ]
我使用以下命令下载数据:
appcfg.py download_data --config_file=data_loader.py --filename=data.csv --kind=SpecificModel --url=http://url.appspot.com/_ah/remote_api
当我尝试下载数据时,出现以下错误:
google.appengine.ext.db.KindError: No implementation for kind 'SpecificModel'
有什么线索吗?