多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 导航 - [索引](../genindex.xhtml "总目录") - [模块](../py-modindex.xhtml "Python 模块索引") | - [下一页](importlib.xhtml "importlib --- The implementation of import") | - [上一页](modulefinder.xhtml "modulefinder --- 查找脚本使用的模块") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) » - zh\_CN 3.7.3 [文档](../index.xhtml) » - [Python 标准库](index.xhtml) » - [导入模块](modules.xhtml) » - $('.inline-search').show(0); | # [`runpy`](#module-runpy "runpy: Locate and run Python modules without importing them first.") --- Locating and executing Python modules **Source code:** [Lib/runpy.py](https://github.com/python/cpython/tree/3.7/Lib/runpy.py) \[https://github.com/python/cpython/tree/3.7/Lib/runpy.py\] - - - - - - The [`runpy`](#module-runpy "runpy: Locate and run Python modules without importing them first.") module is used to locate and run Python modules without importing them first. Its main use is to implement the [`-m`](../using/cmdline.xhtml#cmdoption-m) command line switch that allows scripts to be located using the Python module namespace rather than the filesystem. Note that this is *not* a sandbox module - all code is executed in the current process, and any side effects (such as cached imports of other modules) will remain in place after the functions have returned. Furthermore, any functions and classes defined by the executed code are not guaranteed to work correctly after a [`runpy`](#module-runpy "runpy: Locate and run Python modules without importing them first.") function has returned. If that limitation is not acceptable for a given use case, [`importlib`](importlib.xhtml#module-importlib "importlib: The implementation of the import machinery.")is likely to be a more suitable choice than this module. The [`runpy`](#module-runpy "runpy: Locate and run Python modules without importing them first.") module provides two functions: `runpy.``run_module`(*mod\_name*, *init\_globals=None*, *run\_name=None*, *alter\_sys=False*)Execute the code of the specified module and return the resulting module globals dictionary. The module's code is first located using the standard import mechanism (refer to [**PEP 302**](https://www.python.org/dev/peps/pep-0302) \[https://www.python.org/dev/peps/pep-0302\] for details) and then executed in a fresh module namespace. The *mod\_name* argument should be an absolute module name. If the module name refers to a package rather than a normal module, then that package is imported and the `__main__` submodule within that package is then executed and the resulting module globals dictionary returned. The optional dictionary argument *init\_globals* may be used to pre-populate the module's globals dictionary before the code is executed. The supplied dictionary will not be modified. If any of the special global variables below are defined in the supplied dictionary, those definitions are overridden by [`run_module()`](#runpy.run_module "runpy.run_module"). The special global variables `__name__`, `__spec__`, `__file__`, `__cached__`, `__loader__` and `__package__` are set in the globals dictionary before the module code is executed (Note that this is a minimal set of variables - other variables may be set implicitly as an interpreter implementation detail). `__name__` is set to *run\_name* if this optional argument is not [`None`](constants.xhtml#None "None"), to `mod_name + '.__main__'` if the named module is a package and to the *mod\_name* argument otherwise. `__spec__` will be set appropriately for the *actually* imported module (that is, `__spec__.name` will always be *mod\_name* or `mod_name + '.__main__`, never *run\_name*). `__file__`, `__cached__`, `__loader__` and `__package__` are [set as normal](../reference/import.xhtml#import-mod-attrs) based on the module spec. If the argument *alter\_sys* is supplied and evaluates to [`True`](constants.xhtml#True "True"), then `sys.argv[0]` is updated with the value of `__file__` and `sys.modules[__name__]` is updated with a temporary module object for the module being executed. Both `sys.argv[0]` and `sys.modules[__name__]`are restored to their original values before the function returns. Note that this manipulation of [`sys`](sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") is not thread-safe. Other threads may see the partially initialised module, as well as the altered list of arguments. It is recommended that the [`sys`](sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") module be left alone when invoking this function from threaded code. 参见 The [`-m`](../using/cmdline.xhtml#cmdoption-m) option offering equivalent functionality from the command line. 在 3.1 版更改: Added ability to execute packages by looking for a `__main__` submodule. 在 3.2 版更改: Added `__cached__` global variable (see [**PEP 3147**](https://www.python.org/dev/peps/pep-3147) \[https://www.python.org/dev/peps/pep-3147\]). 在 3.4 版更改: Updated to take advantage of the module spec feature added by [**PEP 451**](https://www.python.org/dev/peps/pep-0451) \[https://www.python.org/dev/peps/pep-0451\]. This allows `__cached__` to be set correctly for modules run this way, as well as ensuring the real module name is always accessible as `__spec__.name`. `runpy.``run_path`(*file\_path*, *init\_globals=None*, *run\_name=None*)Execute the code at the named filesystem location and return the resulting module globals dictionary. As with a script name supplied to the CPython command line, the supplied path may refer to a Python source file, a compiled bytecode file or a valid sys.path entry containing a `__main__`module (e.g. a zipfile containing a top-level `__main__.py` file). For a simple script, the specified code is simply executed in a fresh module namespace. For a valid sys.path entry (typically a zipfile or directory), the entry is first added to the beginning of `sys.path`. The function then looks for and executes a [`__main__`](__main__.xhtml#module-__main__ "__main__: The environment where the top-level script is run.") module using the updated path. Note that there is no special protection against invoking an existing [`__main__`](__main__.xhtml#module-__main__ "__main__: The environment where the top-level script is run.") entry located elsewhere on `sys.path` if there is no such module at the specified location. The optional dictionary argument *init\_globals* may be used to pre-populate the module's globals dictionary before the code is executed. The supplied dictionary will not be modified. If any of the special global variables below are defined in the supplied dictionary, those definitions are overridden by [`run_path()`](#runpy.run_path "runpy.run_path"). The special global variables `__name__`, `__spec__`, `__file__`, `__cached__`, `__loader__` and `__package__` are set in the globals dictionary before the module code is executed (Note that this is a minimal set of variables - other variables may be set implicitly as an interpreter implementation detail). `__name__` is set to *run\_name* if this optional argument is not [`None`](constants.xhtml#None "None") and to `'<run_path>'` otherwise. If the supplied path directly references a script file (whether as source or as precompiled byte code), then `__file__` will be set to the supplied path, and `__spec__`, `__cached__`, `__loader__` and `__package__` will all be set to [`None`](constants.xhtml#None "None"). If the supplied path is a reference to a valid sys.path entry, then `__spec__` will be set appropriately for the imported `__main__`module (that is, `__spec__.name` will always be `__main__`). `__file__`, `__cached__`, `__loader__` and `__package__` will be [set as normal](../reference/import.xhtml#import-mod-attrs) based on the module spec. A number of alterations are also made to the [`sys`](sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") module. Firstly, `sys.path` may be altered as described above. `sys.argv[0]` is updated with the value of `file_path` and `sys.modules[__name__]` is updated with a temporary module object for the module being executed. All modifications to items in [`sys`](sys.xhtml#module-sys "sys: Access system-specific parameters and functions.") are reverted before the function returns. Note that, unlike [`run_module()`](#runpy.run_module "runpy.run_module"), the alterations made to [`sys`](sys.xhtml#module-sys "sys: Access system-specific parameters and functions.")are not optional in this function as these adjustments are essential to allowing the execution of sys.path entries. As the thread-safety limitations still apply, use of this function in threaded code should be either serialised with the import lock or delegated to a separate process. 参见 [接口选项](../using/cmdline.xhtml#using-on-interface-options) for equivalent functionality on the command line (`python path/to/script`). 3\.2 新版功能. 在 3.4 版更改: Updated to take advantage of the module spec feature added by [**PEP 451**](https://www.python.org/dev/peps/pep-0451) \[https://www.python.org/dev/peps/pep-0451\]. This allows `__cached__` to be set correctly in the case where `__main__` is imported from a valid sys.path entry rather than being executed directly. 参见 [**PEP 338**](https://www.python.org/dev/peps/pep-0338) \[https://www.python.org/dev/peps/pep-0338\] -- 将模块作为脚本执行PEP 由 Nick Coghlan 撰写并实现。 [**PEP 366**](https://www.python.org/dev/peps/pep-0366) \[https://www.python.org/dev/peps/pep-0366\] -- Main module explicit relative importsPEP 由 Nick Coghlan 撰写并实现。 [**PEP 451**](https://www.python.org/dev/peps/pep-0451) \[https://www.python.org/dev/peps/pep-0451\] -- A ModuleSpec Type for the Import SystemPEP written and implemented by Eric Snow [命令行与环境](../using/cmdline.xhtml#using-on-general) - CPython command line details The [`importlib.import_module()`](importlib.xhtml#importlib.import_module "importlib.import_module") function ### 导航 - [索引](../genindex.xhtml "总目录") - [模块](../py-modindex.xhtml "Python 模块索引") | - [下一页](importlib.xhtml "importlib --- The implementation of import") | - [上一页](modulefinder.xhtml "modulefinder --- 查找脚本使用的模块") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) » - zh\_CN 3.7.3 [文档](../index.xhtml) » - [Python 标准库](index.xhtml) » - [导入模块](modules.xhtml) » - $('.inline-search').show(0); | © [版权所有](../copyright.xhtml) 2001-2019, Python Software Foundation. Python 软件基金会是一个非盈利组织。 [请捐助。](https://www.python.org/psf/donations/) 最后更新于 5月 21, 2019. [发现了问题](../bugs.xhtml)? 使用[Sphinx](http://sphinx.pocoo.org/)1.8.4 创建。