从模块导入 * 在 python 中使用完整路径

from module import * using full path in python

如何编写等同于

的代码
from mymodule import *

对于给定完整路径中的模块?

我的问题类似于这个问题:How do I import a module given the full path? , 除了我想“导入 *”

我认为最简单的方法是将完整路径添加到 sys.path:

import sys

sys.path.append('<path_to_folder_with_your_module>')

from mymodule import *