本文整理汇总了Python中games.models.Game.set_logo_from_steam_api方法的典型用法代码示例。如果您正苦于以下问题:Python Game.set_logo_from_steam_api方法的具体用法?Python Game.set_logo_from_steam_api怎么用?Python Game.set_logo_from_steam_api使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类games.models.Game
的用法示例。
在下文中一共展示了Game.set_logo_from_steam_api方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_game
# 需要导入模块: from games.models import Game [as 别名]
# 或者: from games.models.Game import set_logo_from_steam_api [as 别名]
def create_game(game):
""" Create game object from Steam API call """
appid = game['appid']
from games.models import Game
slug = slugify(game['name'])[:50]
LOGGER.info("Adding %s to library", game['name'])
steam_game = Game(
name=game['name'],
steamid=appid,
slug=slug,
)
if game.get('img_logo_url'):
steam_game.set_logo_from_steam_api(game['img_logo_url'])
if game.get('img_icon_url'):
steam_game.set_icon_from_steam_api(game['img_icon_url'])
try:
steam_game.save()
except Exception as ex:
LOGGER.error("Error while saving game %s: %s", game, ex)
raise
return steam_game