データを保存するための最初のndbがあります:
class Node(ndb.Model):
name = ndb.StringProperty()
tag_list = ndb.TextProperty(repeated=True)
center_point = ndb.GeoPtProperty()
CSVファイルからデータをインポートしたいのですが。データをインポートする方法を教えてください!とcsvファイルの構造。
データを保存するための最初のndbがあります:
class Node(ndb.Model):
name = ndb.StringProperty()
tag_list = ndb.TextProperty(repeated=True)
center_point = ndb.GeoPtProperty()
CSVファイルからデータをインポートしたいのですが。データをインポートする方法を教えてください!とcsvファイルの構造。