本文整理汇总了Python中models.Issue.get方法的典型用法代码示例。如果您正苦于以下问题:Python Issue.get方法的具体用法?Python Issue.get怎么用?Python Issue.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Issue
的用法示例。
在下文中一共展示了Issue.get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: later_results
# 需要导入模块: from models import Issue [as 别名]
# 或者: from models.Issue import get [as 别名]
def later_results(k):
issue = Issue.get(k)
issue.update_status()
yes = 0
no = 0
for choice in issue.choices:
if "Yes" in choice.name:
yes = choice.vote_count()
if "No" in choice.name:
no = choice.vote_count()
passed = "Not approved"
if yes > no:
passed = "Purchase Approved"
notify_results(passed,yes,no,issue)