site —— 指定域的配置钩子¶
源代码: Lib/site.py
这个模块将在初始化时被自动导入。 此自动导入可以通过使用解释器的 -S 选项来屏蔽。
Importing this module will append site-specific paths to the module search path
and add a few builtins, unless -S was used. In that case, this module
can be safely imported with no automatic modifications to the module search path
or additions to the builtins. To explicitly trigger the usual site-specific
additions, call the main() function.
在 3.3 版更改: 在之前即便使用了 -S,导入此模块仍然会触发路径操纵。
它会从头部和尾部构建至多四个目录作为起点。 对于头部,它会使用 sys.prefix 和 sys.exec_prefix;空的头部会被跳过。 对于尾部,它会使用空字符串然后是 lib/site-packages (在 Windows 上) 或 lib/pythonX.Y/site-packages (在 Unix 和 macOS 上)。 对于每个不同的头-尾组合,它会查看其是否指向现有的目录,如果是的话,则将其添加到 sys.path 并且检查新添加目录中的配置文件。
在 3.5 版更改: 对 "site-python" 目录的支持已被移除。
如果名为 "pyvenv.cfg" 的文件存在于 sys.executable 之上的一个目录中,则 sys.prefix 和 sys.exec_prefix 将被设置为该目录,并且还会检查 site-packages ( sys.base_prefix 和 sys.base_exec_prefix 始终是 Python 安装的 "真实" 前缀)。 如果 "pyvenv.cfg" (引导程序配置文件)包含设置为非 "true"(不区分大小写)的 "include-system-site-packages" 键,则不会在系统级前缀中搜索 site-packages;反之则会。
一个路径配置文件是具有 name.pth 命名格式的文件,并且存在上面提到的四个目录之一中;它的内容是要添加到 sys.path 中的额外项目(每行一个)。不存在的项目不会添加到 sys.path,并且不会检查项目指向的是目录还是文件。项目不会被添加到 sys.path 超过一次。空行和由 # 起始的行会被跳过。以 import 开始的行(跟着空格或 TAB)会被执行。
备注
每次启动 Python,在 .pth 文件中的可执行行都将会被运行,而不管特定的模块实际上是否需要被使用。 因此,其影响应降至最低。可执行行的主要预期目的是使相关模块可导入(加载第三方导入钩子,调整 PATH 等)。如果它发生了,任何其他的初始化都应当在模块实际导入之前完成。将代码块限制为一行是一种有意采取的措施,不鼓励在此处放置更复杂的内容。
例如,假设 sys.prefix 和 sys.exec_prefix 已经被设置为 /usr/local。 Python X.Y 的库之后被安装为 /usr/local/lib/pythonX.Y。假设有一个拥有三个孙目录 foo, bar 和 spam 的子目录 /usr/local/lib/pythonX.Y/site-packages,并且有两个路径配置文件 foot.pth 和 bar.pth。假定 foo.pth 内容如下:
# foo package configuration
foo
bar
bletch
并且 bar.pth 包含:
# bar package configuration
bar
则下面特定版目录将以如下顺序被添加到 sys.path。
/usr/local/lib/pythonX.Y/site-packages/bar
/usr/local/lib/pythonX.Y/site-packages/foo
请注意 bletch 已被省略因为它并不存在;bar 目前在 foo 目录之前因为 bar.pth 按字母顺序排在 foo.pth 之前;而 spam 已被省略因为它在两个路径配置文件中都未被提及。
sitecustomize¶
After these path manipulations, an attempt is made to import a module named
sitecustomize, which can perform arbitrary site-specific customizations.
It is typically created by a system administrator in the site-packages
directory. If this import fails with an ImportError or its subclass
exception, and the exception's name
attribute equals to 'sitecustomize',
it is silently ignored. If Python is started without output streams available, as
with pythonw.exe on Windows (which is used by default to start IDLE),
attempted output from sitecustomize is ignored. Any other exception
causes a silent and perhaps mysterious failure of the process.
usercustomize¶
After this, an attempt is made to import a module named usercustomize,
which can perform arbitrary user-specific customizations, if
ENABLE_USER_SITE is true. This file is intended to be created in the
user site-packages directory (see below), which is part of sys.path unless
disabled by -s. If this import fails with an ImportError or
its subclass exception, and the exception's name
attribute equals to 'usercustomize', it is silently ignored.
请注意对于某些非 Unix 系统来说,sys.prefix 和 sys.exec_prefix 均为空值,并且路径操作会被跳过;但是仍然会尝试导入 sitecustomize 和 usercustomize。
Readline 配置¶
在支持 readline 的系统上,这个模块也将导入并配置 rlcompleter 模块,如果 Python 是以 交互模式 启动并且不带 -S 选项的话。 默认的行为是启用 tab 键补全并使用 ~/.python_history 作为历史存档文件。 要禁用它,请删除(或重载)你的 sitecustomize 或 usercustomize 模块或 PYTHONSTARTUP 文件中的 sys.__interactivehook__ 属性。
在 3.4 版更改: rlcompleter 和 history 会被自动激活。
模块内容¶
- site.PREFIXES¶
site-packages 目录的前缀列表。
- site.ENABLE_USER_SITE¶
显示用户 site-packages 目录状态的旗标。
True意味着它被启用并被添加到sys.path。False意味着它按照用户请求被禁用 (通过-s或PYTHONNOUSERSITE)。None意味着它因安全理由(user 或 group id 和 effective id 之间不匹配)或是被管理员所禁用。
- site.USER_SITE¶
正在运行的 Python 的用户级 site-packages 的路径。 它可以为
None,如果getusersitepackages()尚未被调用的话。 默认值在 UNIX 和非框架 macOS 编译版上为~/.local/lib/pythonX.Y/site-packages,在 macOS 框架编译版上为~/Library/Python/X.Y/lib/python/site-packages,而在 Windows 上则为%APPDATA%\Python\PythonXY\site-packages。 此目录属于站点目录,这意味着其中的.pth文件将会被处理。
- site.USER_BASE¶
用户级 site-packages 的基准目录的路径。 它可以为
None,如果getuserbase()尚未被调用的话。 默认值在 UNIX 和 macOS 非框架编译版上为~/.local,在 macOS 框架编译版上为~/Library/Python/X.Y,而在 Windows 上则为%APPDATA%\Python。 这个值会被 Distutils 用来计算脚本、数据文件和 Python 模块等的安装目录。 对于 用户安装规范。 另请参阅PYTHONUSERBASE。
- site.main()¶
将所有的标准站点专属目录添加到模块搜索路径。 这个函数会在导入此模块时被自动调用,除非 Python 解释器启动时附带了
-S旗标。在 3.3 版更改: 这个函数使用无条件调用。
- site.addsitedir(sitedir, known_paths=None)¶
将一个目录添加到 sys.path 并处理其
.pth文件。 通常被用于sitecustomize或usercustomize(见下文)。
- site.getsitepackages()¶
返回包含所有全局 site-packages 目录的列表。
3.2 新版功能.
- site.getuserbase()¶
返回用户基准目录的路径
USER_BASE。 如果它尚未被初始化,则此函数还将参照PYTHONUSERBASE来设置它。3.2 新版功能.
- site.getusersitepackages()¶
返回用户专属 site-packages 目录的路径
USER_SITE。 如果它尚未被初始化,则此函数还将参照USER_BASE来设置它。 要确定用户专属 site-packages 是否已被添加到sys.path则应当使用ENABLE_USER_SITE。3.2 新版功能.
命令行界面¶
site 模块还提供了一个从命令行获取用户目录的方式:
$ python3 -m site --user-site
/home/user/.local/lib/python3.3/site-packages
如果它被不带参数地调用,它将在标准输出打印 sys.path 的内容,再打印 USER_BASE 的值以及该目录是否存在,然后打印 USER_SITE 的相应信息,最后打印 ENABLE_USER_SITE 的值。
- --user-base¶
输出用户基本的路径。
- --user-site¶
输出用户site-packages目录的路径。
如果同时给出了两个选项,则将打印用户基准目录和用户站点信息(总是按此顺序),并以 os.pathsep 分隔。
如果给出了其中一个选项,脚本将退出并返回以下值中的一个:如果用户级 site-packages 目录被启用则为 0,如果它被用户禁用则为 1,如果它因安全理由或被管理员禁用则为 2,如果发生错误则为大于 2 的值。
参见
PEP 370 -- 分用户的 site-packages 目录
sys.path 模块搜索路径的初始化 --
sys.path的初始化。