def LoadFromFile(self, filepath, expectedClass):
class_inst = None
mod_name,file_ext = splitext(split(filepath)[-1])
if file_ext.lower() == '.py':
py_mod = imp.load_source(mod_name, filepath)
elif file_ext.lower() == '.pyc':
py_mod = imp.load_compiled(mod_name, filepath)
if hasattr(py_mod, expectedClass):
class_inst = getattr(py_mod, expectedClass)()
return class_inst
# Function to be called. Simulates the game and returns the json dump
评论列表
文章目录