Python 模块化 模块搜索顺序、重复导入、模块加载列表(五)

模块搜索顺序、重复导入、模块加载列表

0x00 模块搜索顺序:

举例:

#test.py
import sys

for p in sys.path:
print(p)

运行结果:
C:\python //pycharm环境中的Add content roots to PYTHONPATH
C:\python //脚本所在目录
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\python35.zip //打包,java扎包,避免大量小文件占空间
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\DLLs
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\lib
C:\Users\ihoney\AppData\Local\Programs\Python\Python35
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\lib\site-packages //第三方包安装路径
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\lib\site-packages\win32
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\lib\site-packages\win32\lib
C:\Users\ihoney\AppData\Local\Programs\Python\Python35\lib\site-packages\Pythonwin

  

模块的路径搜索顺序:
程序主目录,脚本所在目录
PYTHONPATH目录,包含python的path路径:标准库目录和第三方包目录

环境变量:命令行敲的字符串,依次在路径中搜索

当import 一个模块时,会依次的在以上路径顺序中查找,找到了就不再往后找了,找不到就导入异常,只搜索指定目录,不递归搜索。

路径可以是字典、zip文件、egg文件(蟒蛇蛋)。
.egg文件,是由setuptools库创建的包,添加了元数据(版本号、依赖项等)的zip文件。下一篇文章介绍。

windows优先搜索".",即当前目录
linux只会从环境变量中的路径中挨个找。

比如,当我们在本地写了一个print.py时,windows下模块搜索顺序优先搜索当前目录,然后才是python的path路径 --> 标准库目录,由于当前目录下自定义了一个print模块,所以可能会导致其它模块print()打印异常

0x01 模块的重复导入:

1)创建以下三个文件:

#test.py
import test1
import test2

#test1.py
print("this is test1 module")

#test2.py
print("this is test2 module")

运行test.py的结果:
this is test1 module
this is test2 module

  

2)修改下test.py:

#test.py
import test1
import test2
import test1

再运行下查看结果:
this is test1 module
this is test2 module

  上面我们修改test.py后,导入了两次test1模块,但解释器并没有运行两次,也就是模块不会重复的导入。

3)再修改下test.py和test1.py:

#test.py
import test2
import test1

#test1.py
print("this is test1 module")
import test2

输出结果:
this is test2 module
this is test1 module

  这次我们先在test.py中先后导入了test2、test1模块,但从输出结果中看,test1.py中导入的test2模块也没有加载初始化,说明程序入口模块已经导入了某模块时,其它调用的模块也不会重复导入该模块。

4)再修改如下:

#test.py
import test1
print(test1.test2.x)

#test1.py
print("this is test1 module")
import test2
print(dir())

#test2.py
print("this is test2 module")
x=444

运行test.py结果:
this is test1 module
this is test2 module
[‘__builtins__‘, ‘__cached__‘, ‘__doc__‘, ‘__file__‘, ‘__loader__‘, ‘__name__‘, ‘__package__‘, ‘__spec__‘, ‘test2‘]
444

  这次依然可以通过test1.test2.x的方式访问test2模块中的x属性。

总结:

内存编址
共享物理内存

0x02 模块加载列表:

import sys
print(sys.modules.keys()) //加载的所有模块名

dict_keys([‘_codecs_cn‘, ‘_imp‘, ‘stat‘, ‘encodings.gbk‘, ‘builtins‘, ‘winreg‘, ‘_codecs‘, ‘__main__‘, ‘_sitebuiltins‘, ‘_warnings‘, ‘encodings.latin_1‘, ‘sysconfig‘, ‘genericpath‘, ‘errno‘, ‘_multibytecodec‘, ‘encodings.utf_8‘, ‘codecs‘, ‘os‘, ‘_weakrefset‘, ‘_bootlocale‘, ‘sys‘, ‘os.path‘, ‘encodings.aliases‘, ‘_collections_abc‘, ‘encodings‘, ‘ntpath‘, ‘_stat‘, ‘_frozen_importlib‘, ‘site‘, ‘abc‘, ‘_io‘, ‘_thread‘, ‘test2‘, ‘encodings.mbcs‘, ‘nt‘, ‘_frozen_importlib_external‘, ‘_signal‘, ‘_weakref‘, ‘_locale‘, ‘zipimport‘, ‘io‘, ‘marshal‘, ‘test1‘])

  其中部分模块及模块指向的位置:

‘__main__‘: <module ‘__main__‘ from ‘C:/python/test.py‘>,
os.path <module ‘ntpath‘ from ‘C:\\Users\\ihoney\\AppData\\Local\\Programs\\Python\\Python35\\lib\\ntpath.py‘>
sysconfig <module ‘sysconfig‘ from ‘C:\\Users\\ihoney\\AppData\\Local\\Programs\\Python\\Python35\\lib\\sysconfig.py‘>
sys <module ‘sys‘ (built-in)>
os <module ‘os‘ from ‘C:\\Users\\ihoney\\AppData\\Local\\Programs\\Python\\Python35\\lib\\os.py‘>
zipimport <module ‘zipimport‘ (built-in)>
test2 <module ‘test2‘ from ‘C:\\python\\test2.py‘>
....

  其中部分模块是导入sys模块时,sys模块调用的模块,其中的‘__main__‘模块指向的是当前脚本名。

时间: 2024-10-12 03:11:39

Python 模块化 模块搜索顺序、重复导入、模块加载列表(五)的相关文章

python 在初始化运行环境时所有预加载模块

python 在初始化运行环境时,会预加载一批内建模块到内存. 所有预加载模块如下: 1 >>> for item in sys.modules.items(): 2 ... print item 3 ... 4 ('copy_reg', <module 'copy_reg' from '/Users/Kris/git_space/pyv/lib/python2.7/copy_reg.pyc'>) 5 ('encodings', <module 'encodings'

python selenuim如何判断下拉框是否加载出来,超过时间不再等待

s_flag = True time_start = time.time() while s_flag: doc = etree.HTML(unicode.encode(driver.page_source, encoding='utf-8')) from_list = doc.xpath("""//*[@id="ext-gen267"]/div""") if len(from_list) == 0: time_end = t

【Python学习之旅】---动态导入模块

#当一个模块名为字符窜的时候#第一种方式a=__import__('test.123')a.123 #a拿到的是最顶级的模块test ,然后调用123 #第二种方式import importlib #导入模块a=importlib.import_module('test.123') #调用方法拿到的直接是test.123 原文地址:https://www.cnblogs.com/chenyuxia/p/12147079.html

关于AMD(异步加载模块)和CMD(同步加载模块),require.js

1.CommonJS,有一个全局性方法require(),用于加载模块.假定有一个数学模块math.js,就可以像下面这样加载. var math = require('math'); 然后,就可以调用模块提供的方法: var math = require('math'); math.add(2,3); // 5 第二行math.add(2, 3),在第一行require('math')之后运行,因此必须等math.js加载完成.也就是说,如果加载时间很长,整个应用就会停在那里等. 这对服务器端

Python脚本---在 MySQL数据库中跑批加载多个表的数据

转载请注明出处:http://blog.csdn.net/guoyjoe/article/details/45841117 #!/usr/bin/env python # -*- coding:utf-8 -*- """  Purpose: 生成日明细账单数据  Created: 2015/4/21  Modified:2015/4/24  @author: guoyJoe"""#导入模块import MySQLdbimport timeimpo

vue-music 关于Search(搜索页面)--上拉加载

建立搜索框组件页面,searchBox,组件接受一个可以自定义传入的placeholder 属性.input v-model 双向绑定数据关联到query 中, 在created中监听 query 变量将改变的新值派发给外部父组件,在search.vue 组件中将其引入 <div class="search-box"> <i class="icon-search"></i> <input type="text&qu

vs2012 导入项目加载失败

提示:该项目需要用户输入 .  据网友的反馈是因为是windows更新系统导致vs不能使用 http://www.microsoft.com/en-us/download/details.aspx?id=36020 ,下载补丁,vs2012就又能正常打开项目了.

python爬虫 selenium+phantomjs动态解析网页,加载页面成功,返回空数据

废话不多说,直接说重点: 刚开始做的时候,代理IP,头部信息池,都已经做好了,使用selenium+phantomjs获取js动态加载后的源码 起初挺好的,能出来动态加载后的源码,但是运行了几次之后,电脑有点卡顿(估计是运存太小),源码就获取不到了,返回的数据 都是空数据,以至于都是出错 在做的时候一定要给页面加载之前做一个延时,以保证页面的正常加载出来,这样我们才能获取导数据 我在加载前后都做了延时等待,当然,我这个就是说这个意思,没必要仿照 可以根据自己的需求进行设置,然后源码就加载出来了,

python web开发之flask框架学习(2) 加载模版

上次学习了flask的helloword项目的创建,这次来学习flask项目的模版加载: 第一步:创建一个flask项目 第二步:在项目目录的templates文件夹下创建一个html文件 第三步: 加载模版文件这里会用到flask包下的一个模版渲染器render_template因此要倒入这个render_template 第四步:运行项目就可以看到模版加载的效果了 以上就是flask框架的模版加载学习了,有什么问题欢迎留言! 简书地址: Code人生 原文地址:https://www.cnb