def get_processor(aid):
"""
Returns the processor module for a given achievement.
Args:
aid: the achievement id
Returns:
The processor module
"""
try:
path = get_achievement(aid=aid, show_disabled=True)["processor"]
base_path = api.config.get_settings()["achievements"]["processor_base_path"]
return imp.load_source(path[:-3], join(base_path, path))
except FileNotFoundError:
raise InternalException("Achievement processor is offline.")
评论列表
文章目录