コード例 #1
0
ファイル: ForumFunctions.py プロジェクト: azardilis/seed
def get_posts(tid):
    t = Thread.get_by_id(int(tid))
    #the bit below only fetches the 10 most recent posts 
    p = [p for p in t.posts.order('-answer').order('-timestamp').fetch(10)]
    return p