Python内置函数——__import__ 的使用方法


Posted in Python onNovember 24, 2017

__import__() 函数用于动态加载类和函数 。

如果一个模块经常变化就可以使用 __import__() 来动态载入。

语法

__import__ 语法:

__import__(name[, globals[, locals[, fromlist[, level]]]])

参数说明:

name -- 模块名

英文文档:

__import__(name, globals=None, locals=None, fromlist=(), level=0)

This function is invoked by the import statement. It can be replaced (by importing the builtins module and assigning to builtins.__import__) in order to change semantics of the import statement, but doing so is strongly discouraged as it is usually simpler to use import hooks (see PEP 302) to attain the same goals and does not cause issues with code which assumes the default import implementation is in use. Direct use of __import__() is also discouraged in favor of importlib.import_module().

The function imports the module name, potentially using the given globals and locals to determine how to interpret the name in a package context. The fromlist gives the names of objects or submodules that should be imported from the module given by name. The standard implementation does not use its locals argument at all, and uses its globals only to determine the package context of the import statement.

level specifies whether to use absolute or relative imports. 0 (the default) means only perform absolute imports. Positive values for level indicate the number of parent directories to search relative to the directory of the module calling __import__() (see PEP 328 for the details).

When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned, not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned.

说明:

1. 函数功能用于动态的导入模块,主要用于反射或者延迟加载模块。

2. __import__(module)相当于import module

先定义两个模块mian.py和index.py,两个文件在同一目录下:

#index.py
print ('index')

def sayHello():
  print('hello index')

def sayHelloZhCn():
  print('你好 index')
#mian.py
print ('main')

index = __import__('index')
dir(index)
index.sayHello()
index.sayHelloZhCn()

执行main.py,可以证实动态加载了index.py,__import__返回的模块也是index模块

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
index
hello index
你好 index

3. __import__(package.module)相当于from package import name,如果fromlist不传入值,则返回package对应的模块,如果fromlist传入值,则返回package.module对应的模块。

先定义archives包,其中包含user和role两个模块:

#__index__.py
print ('archives.__index__')

def sayHello():
  print('hello archives')
#user.py
print ('user')

def sayHello():
  print('hello user')
#role.py
print ('role')

def sayHello():
  print('hello role')

结构如下:

Python内置函数——__import__ 的使用方法

修改mian.py:

#main.py
print ('main')

archives = __import__('archives')
archives.sayHello()
archives.user

执行main.py,可以证实动态加载了archives包,__import__返回的模块也是archives模块

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
hello archives
Traceback (most recent call last):
  File "main.py", line 5, in <module>
    archives.user
AttributeError: module 'archives' has no attribute 'user'

修改mian.py:

#main.py
print ('main')

archives = __import__('archives.user')
archives.sayHello()
print(archives.user)

执行main.py,可以证实动态加载了archives包的user模块,__import__返回的模块也是archives模块

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello archives
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>

修改mian.py:

#main.py
print ('main')

archives = __import__('archives.user',fromlist = ('user',))
archives.sayHello()
print(archives)

执行main.py,可以证实动态加载了archives包的user模块,__import__返回的模块是user模块

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello user
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>

4. level参数,指定是使用绝对导入还是相对导入。 0(默认值)表示只执行绝对导入。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中的descriptor描述器简明使用指南
Jun 02 Python
浅谈python中的面向对象和类的基本语法
Jun 13 Python
python中实现迭代器(iterator)的方法示例
Jan 19 Python
python使用Turtle库绘制动态钟表
Nov 19 Python
如何使用Python 打印各种三角形
Jun 28 Python
tensorflow 查看梯度方式
Feb 04 Python
pycharm无法导入本地模块的解决方式
Feb 12 Python
django haystack实现全文检索的示例代码
Jun 24 Python
Python第三方库安装缓慢的解决方法
Feb 06 Python
python实现学生信息管理系统源码
Feb 22 Python
python爬虫之利用selenium模块自动登录CSDN
Apr 22 Python
Python中如何处理常见报错
Jan 18 Python
Django中login_required装饰器的深入介绍
Nov 24 #Python
Python多进程库multiprocessing中进程池Pool类的使用详解
Nov 24 #Python
pip安装Python库时遇到的问题及解决方法
Nov 23 #Python
python清理子进程机制剖析
Nov 23 #Python
Python3 加密(hashlib和hmac)模块的实现
Nov 23 #Python
Python2.7基于笛卡尔积算法实现N个数组的排列组合运算示例
Nov 23 #Python
深入理解Python3 内置函数大全
Nov 23 #Python
You might like
php性能分析之php-fpm慢执行日志slow log用法浅析
2016/10/17 PHP
Sample script that deletes a SQL Server database
2007/06/16 Javascript
EXT中xtype的含义分析
2010/01/07 Javascript
判断控件是否已加载完成的代码
2010/02/24 Javascript
js客户端快捷键管理类的较完整实现和应用
2010/06/08 Javascript
jQuery操作 input type=checkbox的实现代码
2012/06/14 Javascript
基于KMP算法JavaScript的实现方法分析
2013/05/03 Javascript
javascript与有限状态机详解
2014/05/08 Javascript
JavaScript组件焦点与页内锚点间传值的方法
2015/02/02 Javascript
浅析JavaScript事件和方法
2015/02/28 Javascript
在Mac OS下使用Node.js的简单教程
2015/06/24 Javascript
javascript结合Flexbox简单实现滑动拼图游戏
2016/02/18 Javascript
javascript正则表达式总结
2016/02/29 Javascript
JS判断日期格式是否合法的简单实例
2016/07/11 Javascript
jQuery过滤选择器经典应用
2016/08/18 Javascript
AngularJS中directive指令使用之事件绑定与指令交互用法示例
2016/11/22 Javascript
JavaScript函数中的this四种绑定形式
2017/08/15 Javascript
JS实现HTML页面中动态显示当前时间完整示例
2018/07/30 Javascript
跨域请求两种方法 jsonp和cors的实现
2018/11/11 Javascript
基于vue如何发布一个npm包的方法步骤
2019/05/15 Javascript
javascript Canvas动态粒子连线
2020/01/01 Javascript
一篇文章让你搞懂JavaScript 原型和原型链
2020/11/23 Javascript
[01:07:19]DOTA2-DPC中国联赛 正赛 CDEC vs XG BO3 第一场 1月19日
2021/03/11 DOTA
盘点提高 Python 代码效率的方法
2014/07/03 Python
python格式化字符串实例总结
2014/09/28 Python
Python2.x和3.x下maketrans与translate函数使用上的不同
2015/04/13 Python
将Django项目部署到CentOs服务器中
2018/10/18 Python
Python实现随机取一个矩阵数组的某几行
2019/11/26 Python
Python+opencv+pyaudio实现带声音屏幕录制
2019/12/23 Python
CSS3动画之流彩文字效果+图片模糊效果+边框伸展效果实现代码合集
2017/08/18 HTML / CSS
美国珠宝店:Helzberg Diamonds
2018/10/24 全球购物
描述内存分配方式以及它们的区别
2016/10/15 面试题
三方协议书范本
2014/04/22 职场文书
幼儿园课题实施方案
2014/05/14 职场文书
2015年环卫处个人工作总结
2015/07/27 职场文书
《学会看病》教学反思
2016/02/17 职场文书