blob: 2254906766d046a6e968d4b2982b991d0bc0e066 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001: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 Brandl116aa622007-08-15 14:28:22 +00009The :mod:`runpy` module is used to locate and run Python modules without
10importing them first. Its main use is to implement the :option:`-m` command line
11switch that allows scripts to be located using the Python module namespace
12rather than the filesystem.
13
14When 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
19The :mod:`runpy` module provides a single function:
20
21
22.. function:: run_module(mod_name[, init_globals] [, run_name][, alter_sys])
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
29 The optional dictionary argument *init_globals* may be used to pre-populate the
30 globals dictionary before the code is executed. The supplied dictionary will not
31 be modified. If any of the special global variables below are defined in the
32 supplied dictionary, those definitions are overridden by the ``run_module``
33 function.
34
35 The special global variables ``__name__``, ``__file__``, ``__loader__`` and
36 ``__builtins__`` are set in the globals dictionary before the module code is
37 executed.
38
39 ``__name__`` is set to *run_name* if this optional argument is supplied, and the
40 *mod_name* argument otherwise.
41
42 ``__loader__`` is set to the PEP 302 module loader used to retrieve the code for
43 the module (This loader may be a wrapper around the standard import mechanism).
44
45 ``__file__`` is set to the name provided by the module loader. If the loader
46 does not make filename information available, this variable is set to ``None``.
47
48 ``__builtins__`` is automatically initialised with a reference to the top level
Georg Brandl1a3284e2007-12-02 09:40:06 +000049 namespace of the :mod:`builtins` module.
Georg Brandl116aa622007-08-15 14:28:22 +000050
51 If the argument *alter_sys* is supplied and evaluates to ``True``, then
52 ``sys.argv[0]`` is updated with the value of ``__file__`` and
Thomas Woutersed03b412007-08-28 21:37:11 +000053 ``sys.modules[__name__]`` is updated with a temporary module object for the
54 module being executed. Both ``sys.argv[0]`` and ``sys.modules[__name__]``
55 are restored to their original values before the function returns.
Georg Brandl116aa622007-08-15 14:28:22 +000056
57 Note that this manipulation of :mod:`sys` is not thread-safe. Other threads may
58 see the partially initialised module, as well as the altered list of arguments.
59 It is recommended that the :mod:`sys` module be left alone when invoking this
60 function from threaded code.
61
62
63.. seealso::
64
65 :pep:`338` - Executing modules as scripts
66 PEP written and implemented by Nick Coghlan.
67