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 相关文章推荐
pyside写ui界面入门示例
Jan 22 Python
Python实现动态添加类的属性或成员函数的解决方法
Jul 16 Python
python获取本机mac地址和ip地址的方法
Apr 29 Python
python简单获取本机计算机名和IP地址的方法
Jun 03 Python
python妙用之编码的转换详解
Apr 21 Python
Python实现的爬虫功能代码
Jun 24 Python
socket + select 完成伪并发操作的实例
Aug 15 Python
Python实现的计算马氏距离算法示例
Apr 03 Python
python PrettyTable模块的安装与简单应用
Jan 11 Python
用python3 返回鼠标位置的实现方法(带界面)
Jul 05 Python
python datetime时间格式的相互转换问题
Jun 11 Python
pytorch加载自己的图像数据集实例
Jul 07 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开发文件系统实例讲解
2006/10/09 PHP
执行、获取远程代码返回:file_get_contents 超时处理的问题详解
2013/06/25 PHP
PHP json_encode中文乱码问题的解决办法
2013/09/09 PHP
thinkphp中html:list标签传递多个参数实例
2014/10/30 PHP
PHP实现的比较完善的购物车类
2014/12/02 PHP
ThinkPHP中使用ajax接收json数据的方法
2014/12/18 PHP
yii添删改查实例
2015/11/16 PHP
PHP实现的最大正向匹配算法示例
2017/12/19 PHP
PHP 记录访客的浏览信息方法
2018/01/29 PHP
php进程daemon化的正确实现方法
2018/09/06 PHP
document.all与WEB标准
2020/05/13 Javascript
浅析ajax请求json数据并用js解析(示例分析)
2013/07/13 Javascript
火狐下input焦点无法重复获取问题的解决方法
2014/06/16 Javascript
node中socket.io的事件使用详解
2014/12/15 Javascript
jQuery中unbind()方法用法实例
2015/01/19 Javascript
javaScript中的原型解析【推荐】
2016/05/05 Javascript
Node.js的Web模板引擎ejs的入门使用教程
2016/06/06 Javascript
BootStrop前端框架入门教程详解
2016/12/25 Javascript
微信小程序 swiper组件构建轮播图的实例
2017/09/20 Javascript
记录vue做微信自定义分享的一些问题
2019/09/12 Javascript
vue 解决computed修改data数据的问题
2019/11/06 Javascript
vue 更改连接后台的api示例
2019/11/11 Javascript
Python 抓取动态网页内容方案详解
2014/12/25 Python
Python 自动刷博客浏览量实例代码
2017/06/14 Python
python机器学习实战之最近邻kNN分类器
2017/12/20 Python
python3实现从kafka获取数据,并解析为json格式,写入到mysql中
2019/12/23 Python
python多进程使用函数封装实例
2020/05/02 Python
完美解决TensorFlow和Keras大数据量内存溢出的问题
2020/07/03 Python
无惧面试,带你搞懂python 装饰器
2020/08/17 Python
html5文本内容_动力节点Java学院整理
2017/07/11 HTML / CSS
英国设计师珠宝网站:Joshua James Jewellery
2020/03/01 全球购物
Nike瑞士官网:Nike CH
2021/01/18 全球购物
以下为Windows NT 下的32 位C++程序,请计算sizeof 的值
2016/12/07 面试题
2014学习全国两会精神心得体会2000字
2014/03/11 职场文书
2014年干部作风建设总结
2014/10/23 职场文书
html粘性页脚的具体使用
2022/01/18 HTML / CSS