本文整理汇总了Python中models.Team.reputation方法的典型用法代码示例。如果您正苦于以下问题:Python Team.reputation方法的具体用法?Python Team.reputation怎么用?Python Team.reputation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Team
的用法示例。
在下文中一共展示了Team.reputation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_bot_teams
# 需要导入模块: from models import Team [as 别名]
# 或者: from models.Team import reputation [as 别名]
def create_bot_teams():
"""
Create enough teams - all possible combinations of skill level,
time zone, scrim time, etc.
"""
from consts import CHOICES_SKILLS, CHOICES_ZONES
from utils import scrim_filter
fake_name = '@_Team'
for skill,_ in CHOICES_SKILLS:
for time,_ in CHOICES_ZONES:
combinations = scrim_filter.scrim_days_combinations('1111111')
for scrim_days in combinations:
bot_team = Team()
bot_team.name = fake_name + '_' + str(skill) + '_' + str(time) + '_' + str(scrim_days)
bot_team.skill_level = skill
bot_team.time_zone = time
bot_team.reputation = '42'
bot_team.week_days = scrim_days
db.session.add(bot_team)
db.session.commit()