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 collections模块实例讲解
Apr 07 Python
python通过socket查询whois的方法
Jul 18 Python
Flask解决跨域的问题示例代码
Feb 12 Python
利用numpy和pandas处理csv文件中的时间方法
Apr 19 Python
Centos下实现安装Python3.6和Python2共存
Aug 15 Python
python实现归并排序算法
Nov 22 Python
Python爬虫——爬取豆瓣电影Top250代码实例
Apr 17 Python
pytorch GAN伪造手写体mnist数据集方式
Jan 10 Python
Django User 模块之 AbstractUser 扩展详解
Mar 11 Python
python实现在内存中读写str和二进制数据代码
Apr 24 Python
Python configparser模块封装及构造配置文件
Aug 07 Python
python将数据插入数据库的代码分享
Aug 16 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中MVC的开发经验分享
2012/05/17 PHP
js 可拖动列表实现代码
2011/12/13 Javascript
jQuery scroll事件实现监控滚动条分页示例
2014/04/04 Javascript
浅谈jQuery的offset()方法及示例分享
2015/07/17 Javascript
js脚本分页代码分享(7种样式)
2015/08/19 Javascript
js和jQuery设置Opacity半透明 兼容IE6
2016/05/24 Javascript
JavaScript如何实现跨域请求
2016/08/05 Javascript
JS获取鼠标选中的文字
2016/08/10 Javascript
BootStrap表单宽度设置方法
2017/03/10 Javascript
Angular.js中控制器之间的传值详解
2017/04/24 Javascript
JavaScript之underscore_动力节点Java学院整理
2017/07/03 Javascript
vuejs 单文件组件.vue 文件的使用
2017/07/28 Javascript
Vue2.0基于vue-cli+webpack Vuex的用法(实例讲解)
2017/09/15 Javascript
jQuery控制input只能输入数字和两位小数的方法
2019/05/16 jQuery
JS/CSS实现字符串单词首字母大写功能
2019/09/03 Javascript
[33:28]完美世界DOTA2联赛PWL S3 PXG vs GXR 第三场 12.19
2020/12/24 DOTA
在Python的Django框架中为代码添加注释的方法
2015/07/16 Python
Python正规则表达式学习指南
2016/08/02 Python
Python利用operator模块实现对象的多级排序详解
2017/05/09 Python
Python栈算法的实现与简单应用示例
2017/11/01 Python
python os.path模块常用方法实例详解
2018/09/16 Python
python中p-value的实现方式
2019/12/16 Python
python实现微信打飞机游戏
2020/03/24 Python
Python datetime模块的使用示例
2021/02/02 Python
英国性能汽车零件和发动机配件在线:Maxpeedingrods
2019/11/05 全球购物
欧姆龙医疗保健与医疗产品:Omron Healthcare
2020/02/10 全球购物
JD Sports丹麦:英国领先的运动时尚零售商
2020/11/24 全球购物
What is the purpose of Void class? Void类的作用是什么?
2016/10/31 面试题
中文系师范生自荐信
2013/10/01 职场文书
计算机学生求职信范文
2014/01/30 职场文书
给学校的建议书范文
2014/05/15 职场文书
销售代理协议书
2014/09/30 职场文书
居安思危观后感
2015/06/11 职场文书
Pytorch可视化的几种实现方法
2021/06/10 Python
无线电知识基础入门篇
2022/02/18 无线电
Centos系统通过Docker安装并搭建MongoDB数据库
2022/04/12 MongoDB