q = Institution_Table.all().run(batch_size=2000).order('name')
次のエラーが発生します。
AttributeError:'_QueryIterator'オブジェクトに属性'order'がありません
q = Institution_Table.all().run(batch_size=2000).order('name')
次のエラーが発生します。
AttributeError:'_QueryIterator'オブジェクトに属性'order'がありません
ドキュメントに示されている例.order('name')
は、クエリに添付されていることを示しています。
あなたの例では、クエリが実行された後にそれを添付しています。
試す:
q = Institution_Table.all().order('name')
results = q.run()
ここ:https ://developers.google.com/appengine/docs/python/datastore/queries#Restrictions_on_Queries