python 动态调用模块内的函数

场景

程序在运行的过程中,根据变量或者动态配置决定导入哪个模块的函数。

实现

1.同一个路径利用 getattr 动态调用函数:main.py 与 third_buy.py在同一个路径下

# third_buy中有N个***_func(params)函数
import third_buy

third_method = '%s_func' % method
# 通过函数名的字符串来调用这个函数
res = getattr(third_buy, third_method)(params)

2.跨了文件夹利用 importlib 动态调用文件和函数,目录结构如:

.
├── bill
│   ├── dingxin.py
│   ├── __init__.py
├── flow
│   ├── __init__.py
│   └── xunzhong.py
├── __init__.py
├── server.py
import importlib

# business 为业务类型:flow, bill
# method 为文件名:dingxin, xunzhong
method = '{0}.{1}'.format(business, method)
module = importlib.import_module(method)
buy_res = module.func(params)

你可能感兴趣的:(Python)