Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`runpy` --- Locating and executing Python modules |
| 2 | ====================================================== |
| 3 | |
| 4 | .. module:: runpy |
| 5 | :synopsis: Locate and run Python modules without importing them first. |
| 6 | .. moduleauthor:: Nick Coghlan <ncoghlan@gmail.com> |
| 7 | |
| 8 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | The :mod:`runpy` module is used to locate and run Python modules without |
| 10 | importing them first. Its main use is to implement the :option:`-m` command line |
| 11 | switch that allows scripts to be located using the Python module namespace |
| 12 | rather than the filesystem. |
| 13 | |
| 14 | When executed as a script, the module effectively operates as follows:: |
| 15 | |
| 16 | del sys.argv[0] # Remove the runpy module from the arguments |
| 17 | run_module(sys.argv[0], run_name="__main__", alter_sys=True) |
| 18 | |
| 19 | The :mod:`runpy` module provides a single function: |
| 20 | |
| 21 | |
Georg Brandl | 1824415 | 2009-09-02 20:34:52 +0000 | [diff] [blame^] | 22 | .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 23 | |
| 24 | Execute the code of the specified module and return the resulting module globals |
| 25 | dictionary. The module's code is first located using the standard import |
| 26 | mechanism (refer to PEP 302 for details) and then executed in a fresh module |
| 27 | namespace. |
| 28 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 29 | If the supplied module name refers to a package rather than a normal module, |
| 30 | then that package is imported and the ``__main__`` submodule within that |
| 31 | package is then executed and the resulting module globals dictionary returned. |
| 32 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 33 | The optional dictionary argument *init_globals* may be used to pre-populate the |
| 34 | globals dictionary before the code is executed. The supplied dictionary will not |
| 35 | be modified. If any of the special global variables below are defined in the |
| 36 | supplied dictionary, those definitions are overridden by the ``run_module`` |
| 37 | function. |
| 38 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 39 | The special global variables ``__name__``, ``__file__``, ``__loader__``, |
| 40 | ``__builtins__`` and ``__package__`` are set in the globals dictionary before |
| 41 | the module code is executed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 43 | ``__name__`` is set to *run_name* if this optional argument is supplied, to |
| 44 | ``mod_name + '.__main__'`` if the named module is a package and to the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | *mod_name* argument otherwise. |
| 46 | |
| 47 | ``__loader__`` is set to the PEP 302 module loader used to retrieve the code for |
| 48 | the module (This loader may be a wrapper around the standard import mechanism). |
| 49 | |
| 50 | ``__file__`` is set to the name provided by the module loader. If the loader |
| 51 | does not make filename information available, this variable is set to ``None``. |
| 52 | |
| 53 | ``__builtins__`` is automatically initialised with a reference to the top level |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 54 | namespace of the :mod:`builtins` module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 55 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 56 | ``__package__`` is set to *mod_name* if the named module is a package and to |
| 57 | ``mod_name.rpartition('.')[0]`` otherwise. |
| 58 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | If the argument *alter_sys* is supplied and evaluates to ``True``, then |
| 60 | ``sys.argv[0]`` is updated with the value of ``__file__`` and |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 61 | ``sys.modules[__name__]`` is updated with a temporary module object for the |
| 62 | module being executed. Both ``sys.argv[0]`` and ``sys.modules[__name__]`` |
| 63 | are restored to their original values before the function returns. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 64 | |
| 65 | Note that this manipulation of :mod:`sys` is not thread-safe. Other threads may |
| 66 | see the partially initialised module, as well as the altered list of arguments. |
| 67 | It is recommended that the :mod:`sys` module be left alone when invoking this |
| 68 | function from threaded code. |
| 69 | |
| 70 | |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 71 | .. versionchanged:: 3.1 |
| 72 | Added ability to execute packages by looking for a ``__main__`` submodule |
| 73 | |
| 74 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 | .. seealso:: |
| 76 | |
| 77 | :pep:`338` - Executing modules as scripts |
Nick Coghlan | 3f48ae3 | 2009-02-08 01:58:26 +0000 | [diff] [blame] | 78 | PEP written and implemented by Nick Coghlan. |
| 79 | |
| 80 | :pep:`366` - Main module explicit relative imports |
| 81 | PEP written and implemented by Nick Coghlan. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 82 | |