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 相关文章推荐
PHP魔术方法__ISSET、__UNSET使用实例
Nov 25 Python
在Python的gevent框架下执行异步的Solr查询的教程
Apr 16 Python
Python编程实战之Oracle数据库操作示例
Jun 21 Python
Python基于正则表达式实现检查文件内容的方法【文件检索】
Aug 30 Python
Python编程实现双链表,栈,队列及二叉树的方法示例
Nov 01 Python
python数据抓取分析的示例代码(python + mongodb)
Dec 25 Python
对Python中range()函数和list的比较
Apr 19 Python
python zip()函数使用方法解析
Oct 31 Python
python算的上脚本语言吗
Jun 22 Python
属性与 @property 方法让你的python更高效
Sep 21 Python
分位数回归模型quantile regeression应用详解及示例教程
Nov 02 Python
68行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
phpwind中的数据库操作类
2007/01/02 PHP
如何解决CI框架的Disallowed Key Characters错误提示
2013/07/05 PHP
PHP动态页生成静态页的3种常用方法
2014/11/13 PHP
php实现将字符串按照指定距离进行分割的方法
2015/03/14 PHP
PHP开发APP端微信支付功能
2017/02/17 PHP
PHP 爬取网页的主要方法
2018/07/13 PHP
几个高效,简洁的字符处理函数
2007/04/12 Javascript
用jquery.sortElements实现table排序
2014/05/04 Javascript
node中socket.io的事件使用详解
2014/12/15 Javascript
JS模拟实现方法重载示例
2016/08/03 Javascript
详解从新建vue项目到引入组件Element的方法
2017/08/29 Javascript
深入理解使用Vue实现Context-Menu的思考与总结
2019/03/09 Javascript
Vue路由前后端设计总结
2019/08/06 Javascript
在Vue中使用this.$store或者是$route一直报错的解决
2019/11/08 Javascript
vue中activated的用法
2021/01/03 Vue.js
[41:20]2014 DOTA2华西杯精英邀请赛 5 24 NewBee VS DK
2014/05/26 DOTA
pycharm 使用心得(九)解决No Python interpreter selected的问题
2014/06/06 Python
Ubuntu 16.04 LTS中源码安装Python 3.6.0的方法教程
2016/12/27 Python
python开发之anaconda以及win7下安装gensim的方法
2019/07/05 Python
python爬虫 Pyppeteer使用方法解析
2019/09/28 Python
为什么说Python可以实现所有的算法
2019/10/04 Python
Python求两个字符串最长公共子序列代码实例
2020/03/05 Python
面向新手解析python Beautiful Soup基本用法
2020/07/11 Python
详解python os.path.exists判断文件或文件夹是否存在
2020/11/16 Python
Matplotlib配色之Colormap详解
2021/01/05 Python
Flask中jinja2的继承实现方法及实例
2021/03/03 Python
IE8下CSS3选择器nth-child() 不兼容问题的解决方法
2016/11/16 HTML / CSS
利用Bootstrap实现漂亮简洁的CSS3价格表实例源码
2017/03/02 HTML / CSS
HTML5 audio标签使用js进行播放控制实例
2015/04/24 HTML / CSS
家庭睡衣和家庭用品:Little Blue House
2018/03/18 全球购物
有个性的自我评价范文
2013/11/15 职场文书
经济贸易专业自荐信
2014/06/11 职场文书
2014领导班子四风剖析对照检查材料思想汇报
2014/09/20 职场文书
社会实践活动总结格式
2015/05/11 职场文书
2016年万圣节活动个人总结
2016/04/05 职场文书
PHP中多字节字符串操作实例详解
2021/08/23 PHP