appcfg.py upload_data实体类问题

时间:2010-04-08 12:55:26

标签: python django google-app-engine google-cloud-datastore app-engine-patch

我正在app-engine-path上开发应用程序,我想将一些数据上传到数据存储区。 例如,我有一个模型

模型/ places.py:

class Place(db.Model):
    name = db.StringProperty()
    longitude = db.FloatProperty()
    latitude = db.FloatProperty()

如果我将其保存在视图中,则此实体的kind()为“models_place”。 一切正常,Place.all()在视图中工作正常。

可是:

如果我使用appcfg.py upload_data上传下一行,则此实体的kind()为Place。

loader.py看起来像这样:

import datetime, os, sys
from google.appengine.ext import db
from google.appengine.tools import bulkloader

libs_path = os.path.join("/home/martin/myproject/src/")
if libs_path not in sys.path:
    sys.path.insert(0, libs_path)
from models import places

class AlbumLoader(bulkloader.Loader):
    def __init__(self):
      bulkloader.Loader.__init__(self, 'Place',
                                 [('name', lambda x: x.decode('utf-8')),
                                  ('longitude', float),
                                  ('latitude', float),
                                 ])
loaders = [AlbumLoader]

和上传命令:

python /usr/local/google_appengine/appcfg.py upload_data --config_file=places_loader.py --kind=models_place --filename=data/places.csv --url=http://localhost:8000/remote_api /home/martin/myproject/src/

1 个答案:

答案 0 :(得分:1)

我找到了解决方案:

places_loader.py:

from google.appengine.ext import bulkload

class PlaceLoader(bulkload.Loader):
    def __init__(self):
        bulkload.Loader.__init__(self, 'models_place',
                               [('name', lambda x: x.decode('utf-8')),
                                ('longitude', float),
                                ('latitude', float),
                               ])
if __name__ == '__main__':
    bulkload.main(PlaceLoader())

的app.yaml:

- url: /load
  script: places_loader.py  

和命令:

python /usr/local/google_appengine/bulkload_client.py --filename data/places.csv --kind   models_place --url http://localhost:8000/load