首页 > 代码库 > Python 的内置函数__import__
Python 的内置函数__import__
我们知道import语句是用来导入外部模块的,当然还有from...import...也可以,但是其实import实际上是使用builtin函数__import__来工作的。
在一些程序中,我们可以动态地去调用函数,如果我们知道模块的名称(字符串)的时候,我们可以很方便的使用动态调用。
Python代码
- import glob,os
- modules = []
- for module_file in glob.glob("*-plugin.py"):
- try:
- module_name,ext = os.path.splitext(os.path.basename(module_file))
- module = __import__(module_name)
- modules.append(module)
- except ImportError:
- pass #ignore broken modules
- #say hello to all modules
- for module in modules:
- module.hello()
使用__import__函数获得特定函数
Python代码
- def getfunctionbyname(module_name,function_name):
- module = __import__(module_name)
- return getattr(module,function_name)
还可以使用这个函数实现延迟化的模块导入
Python代码
- class LazyImport:
- def __init__(self,module_name):
- self.module_name = module_name
- self.module = None
- def __getattr__(self,name):
- if self.module is None:
- self.module = __import__(self.module_name)
- return getattr(self.module,name)
- string = LazyImport("string")
- print string.lowercase
Python 的内置函数__import__
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。