华清大学特普通奖学金初选报名系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
495 B

# coding: utf-8
from openpyxl import Workbook
from app import *
wb = Workbook()
ws = wb.active
ws.title = '提名'
ws.append(['编号', '是否正式提名', '赞数', '字数'])
candidates = Candidate.query.all()
for candidate in candidates:
ws.append([candidate.id,
(candidate.id == 68) or (len(candidate.private) > 0 and candidate.id not in {3, 9, 62}),
Like.query.filter_by(cid = candidate.id).count(),
len(candidate.content)])
wb.save('nominations.xlsx')