本文整理汇总了Python中meps.models.MEP.picture方法的典型用法代码示例。如果您正苦于以下问题:Python MEP.picture方法的具体用法?Python MEP.picture怎么用?Python MEP.picture使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类meps.models.MEP
的用法示例。
在下文中一共展示了MEP.picture方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_mep
# 需要导入模块: from meps.models import MEP [as 别名]
# 或者: from meps.models.MEP import picture [as 别名]
def create_mep(mep_json):
mep = MEP()
mep.id = create_uniq_id(mep_json)
mep.picture = mep.id + ".jpg"
mep.active = True
change_mep_details(mep, mep_json)
add_missing_details(mep, mep_json)
add_addrs(mep, mep_json["Addresses"])
mep.save()
add_committees(mep, mep_json["Committees"])
add_delegations(mep, mep_json.get("Delegations", []))
add_countries(mep, mep_json["Constituencies"])
add_groups(mep, mep_json["Groups"])
add_organizations(mep, mep_json.get("Staff", []))
add_mep_email(mep, mep_json["Mail"])
add_mep_website(mep, mep_json["Homepage"])
add_mep_cv(mep, mep_json.get("CV", []))
print " save mep modifications"
mep.save()