-
Notifications
You must be signed in to change notification settings - Fork 945
/
Copy pathdynamic_import.py
61 lines (50 loc) · 1.7 KB
/
dynamic_import.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import importlib.util
import importlib.util
import inspect
import os.path
import sys
def load_module_from_path(file_path):
"""
从给定的文件路径动态加载模块。
:param file_path: 模块文件的绝对路径。
:return: 加载的模块
"""
module_name = file_path.split("/")[-1].replace(".py", "")
spec = importlib.util.spec_from_file_location(module_name, file_path)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module
def import_module_from_path(file_path: str):
if file_path.startswith("http"):
from funasr.download.file import download_from_url
file_path = download_from_url(file_path)
file_dir = os.path.dirname(file_path)
# file_name = os.path.basename(file_path)
module_name = file_path.split("/")[-1].replace(".py", "")
if len(file_dir) < 1:
file_dir = "./"
sys.path.append(file_dir)
try:
importlib.import_module(module_name)
print(f"Loading remote code successfully: {file_path}")
except Exception as e:
print(f"Loading remote code failed: {file_path}, {e}")
#
# def load_module_from_path(module_name, file_path):
# """
# 从给定的文件路径动态加载模块。
#
# :param module_name: 动态加载的模块的名称。
# :param file_path: 模块文件的绝对路径。
# :return: 加载的模块
# """
# # 创建加载模块的spec(规格)
# spec = importlib.util.spec_from_file_location(module_name, file_path)
#
# # 根据spec创建模块
# module = importlib.util.module_from_spec(spec)
#
# # 执行模块的代码来实际加载它
# spec.loader.exec_module(module)
#
# return module