1 Star 0 Fork 1

OpenCG/smart_utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
module.py 425 Bytes
一键复制 编辑 原始数据 按行查看 历史
sheen 提交于 2021-08-10 08:06 . update module.py.
import sys
import uuid
def get_module(in_path):
if sys.version.startswith('3.7'):
import importlib.util
module_spec = importlib.util.spec_from_file_location(uuid.uuid4().hex, in_path)
module = importlib.util.module_from_spec(module_spec)
module_spec.loader.exec_module(module)
return module
else:
import imp
return imp.load_source(uuid.uuid4().hex, in_path)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tdercg/smart_utils.git
git@gitee.com:tdercg/smart_utils.git
tdercg
smart_utils
smart_utils
master

搜索帮助