Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 1 | .. highlightlang:: none |
| 2 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame^] | 3 | .. _using-on-general: |
| 4 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 5 | Command line and environment |
| 6 | ============================ |
| 7 | |
| 8 | The CPython interpreter scans the command line and the environment for various |
| 9 | settings. |
| 10 | |
| 11 | .. note:: |
| 12 | |
| 13 | Other implementation's command line schemes may differ. See |
| 14 | :ref:`implementations` for further resources. |
| 15 | |
| 16 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame^] | 17 | .. _using-on-cmdline: |
| 18 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 19 | Command line |
| 20 | ------------ |
| 21 | |
| 22 | When invoking Python, you may specify any of these options:: |
| 23 | |
| 24 | python [-dEiOQStuUvxX?] [-c command | -m module-name | script | - ] [args] |
| 25 | |
| 26 | The most common use case is, of course, a simple invocation of a script:: |
| 27 | |
| 28 | python myscript.py |
| 29 | |
| 30 | |
| 31 | Interface options |
| 32 | ~~~~~~~~~~~~~~~~~ |
| 33 | |
| 34 | The interpreter interface resembles that of the UNIX shell: |
| 35 | |
| 36 | * When called with standard input connected to a tty device, it prompts for |
| 37 | commands and executes them until an EOF (an end-of-file character, you can |
| 38 | produce that with *Ctrl-D* on UNIX or *Ctrl-Z, Enter* on Windows) is read. |
| 39 | * When called with a file name argument or with a file as standard input, it |
| 40 | reads and executes a script from that file. |
| 41 | * When called with ``-c command``, it executes the Python statement(s) given as |
| 42 | *command*. Here *command* may contain multiple statements separated by |
| 43 | newlines. Leading whitespace is significant in Python statements! |
| 44 | * When called with ``-m module-name``, the given module is searched on the |
| 45 | Python module path and executed as a script. |
| 46 | |
| 47 | In non-interactive mode, the entire input is parsed before it is executed. |
| 48 | |
| 49 | An interface option terminates the list of options consumed by the interpreter, |
| 50 | all consecutive arguments will end up in :data:`sys.argv` -- note that the first |
| 51 | element, subscript zero (``sys.argv[0]``), is a string reflecting the program's |
| 52 | source. |
| 53 | |
| 54 | .. cmdoption:: -c <command> |
| 55 | |
| 56 | Execute the Python code in *command*. *command* can be one ore more |
| 57 | statements separated by newlines, with significant leading whitespace as in |
| 58 | normal module code. |
| 59 | |
| 60 | If this option is given, the first element of :data:`sys.argv` will be |
| 61 | ``"-c"``. |
| 62 | |
| 63 | |
| 64 | .. cmdoption:: -m <module-name> |
| 65 | |
| 66 | Search :data:`sys.path` for the named module and run the corresponding module |
| 67 | file as if it were executed with ``python modulefile.py`` as a script. |
| 68 | |
| 69 | Since the argument is a *module* name, you must not give a file extension |
| 70 | (``.py``). However, the ``module-name`` does not have to be a valid Python |
| 71 | identifer (e.g. you can use a file name including a hyphen). |
| 72 | |
| 73 | .. note:: |
| 74 | |
| 75 | This option cannot be used with builtin modules and extension modules |
| 76 | written in C, since they do not have Python module files. |
| 77 | |
| 78 | If this option is given, the first element of :data:`sys.argv` will be the |
| 79 | full path to the module file. |
| 80 | |
| 81 | Many standard library modules contain code that is invoked on their execution |
| 82 | as a script. An example is the :mod:`timeit` module:: |
| 83 | |
| 84 | python -mtimeit -s 'setup here' 'benchmarked code here' |
| 85 | python -mtimeit -h # for details |
| 86 | |
| 87 | .. seealso:: |
| 88 | :func:`runpy.run_module` |
| 89 | The actual implementation of this feature. |
| 90 | |
| 91 | :pep:`338` -- Executing modules as scripts |
| 92 | |
| 93 | |
| 94 | .. describe:: <script> |
| 95 | |
| 96 | Execute the Python code contained in *script*, which must be an (absolute or |
| 97 | relative) file name. |
| 98 | |
| 99 | If this option is given, the first element of :data:`sys.argv` will be the |
| 100 | script file name as given on the command line. |
| 101 | |
| 102 | |
| 103 | .. describe:: - |
| 104 | |
| 105 | Read commands from standard input (:data:`sys.stdin`). If standard input is |
| 106 | a terminal, :option:`-i` is implied. |
| 107 | |
| 108 | If this option is given, the first element of :data:`sys.argv` will be |
| 109 | ``"-"``. |
| 110 | |
| 111 | .. seealso:: |
| 112 | :ref:`tut-invoking` |
| 113 | |
| 114 | |
| 115 | If no script name is given, ``sys.argv[0]`` is an empty string (``""``). |
| 116 | |
| 117 | |
| 118 | Generic options |
| 119 | ~~~~~~~~~~~~~~~ |
| 120 | |
| 121 | .. cmdoption:: -? |
| 122 | -h |
| 123 | --help |
| 124 | |
| 125 | Print a short description of all command line options. |
| 126 | |
| 127 | |
| 128 | .. cmdoption:: -V |
| 129 | --version |
| 130 | |
| 131 | Print the Python version number and exit. Example output could be:: |
| 132 | |
| 133 | Python 2.5.1 |
| 134 | |
| 135 | |
| 136 | Miscellaneous options |
| 137 | ~~~~~~~~~~~~~~~~~~~~~ |
| 138 | |
| 139 | .. cmdoption:: -d |
| 140 | |
| 141 | Turn on parser debugging output (for wizards only, depending on compilation |
| 142 | options). See also :envvar:`PYTHONDEBUG`. |
| 143 | |
| 144 | |
| 145 | .. cmdoption:: -E |
| 146 | |
| 147 | Ignore all :envvar:`PYTHON*` environment variables, e.g. |
| 148 | :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set. |
| 149 | |
| 150 | |
| 151 | .. cmdoption:: -i |
| 152 | |
| 153 | When a script is passed as first argument or the :option:`-c` option is used, |
| 154 | enter interactive mode after executing the script or the command, even when |
| 155 | :data:`sys.stdin` does not appear to be a terminal. The |
| 156 | :envvar:`PYTHONSTARTUP` file is not read. |
| 157 | |
| 158 | This can be useful to inspect global variables or a stack trace when a script |
| 159 | raises an exception. See also :envvar:`PYTHONINSPECT`. |
| 160 | |
| 161 | |
| 162 | .. cmdoption:: -O |
| 163 | |
| 164 | Turn on basic optimizations. This changes the filename extension for |
| 165 | compiled (:term:`bytecode`) files from ``.pyc`` to ``.pyo``. See also |
| 166 | :envvar:`PYTHONOPTIMIZE`. |
| 167 | |
| 168 | |
| 169 | .. cmdoption:: -OO |
| 170 | |
| 171 | Discard docstrings in addition to the :option:`-O` optimizations. |
| 172 | |
| 173 | |
| 174 | .. cmdoption:: -Q <arg> |
| 175 | |
| 176 | Division control. The argument must be one of the following: |
| 177 | |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 178 | ``new`` |
Georg Brandl | ba956ae | 2007-11-29 17:24:34 +0000 | [diff] [blame] | 179 | new division semantics, i.e. division of int/int returns a float (*default*) |
| 180 | ``old`` |
| 181 | division of int/int returns an int |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 182 | ``warn`` |
Georg Brandl | ba956ae | 2007-11-29 17:24:34 +0000 | [diff] [blame] | 183 | old division semantics with a warning for int/int |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 184 | ``warnall`` |
| 185 | old division semantics with a warning for all uses of the division operator |
| 186 | |
| 187 | .. seealso:: |
| 188 | :file:`Tools/scripts/fixdiv.py` |
| 189 | for a use of ``warnall`` |
| 190 | |
| 191 | :pep:`238` -- Changing the division operator |
| 192 | |
| 193 | |
| 194 | .. cmdoption:: -S |
| 195 | |
| 196 | Disable the import of the module :mod:`site` and the site-dependent |
| 197 | manipulations of :data:`sys.path` that it entails. |
| 198 | |
| 199 | |
| 200 | .. cmdoption:: -t |
| 201 | |
| 202 | Issue a warning when a source file mixes tabs and spaces for indentation in a |
| 203 | way that makes it depend on the worth of a tab expressed in spaces. Issue an |
| 204 | error when the option is given twice (:option:`-tt`). |
| 205 | |
| 206 | |
| 207 | .. cmdoption:: -u |
| 208 | |
| 209 | Force stdin, stdout and stderr to be totally unbuffered. On systems where it |
| 210 | matters, also put stdin, stdout and stderr in binary mode. |
| 211 | |
| 212 | Note that there is internal buffering in :meth:`file.readlines` and |
| 213 | :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced |
| 214 | by this option. To work around this, you will want to use |
| 215 | :meth:`file.readline` inside a ``while 1:`` loop. |
| 216 | |
| 217 | See also :envvar:`PYTHONUNBUFFERED`. |
| 218 | |
| 219 | |
| 220 | .. XXX should the -U option be documented? |
| 221 | |
| 222 | .. cmdoption:: -v |
| 223 | |
| 224 | Print a message each time a module is initialized, showing the place |
| 225 | (filename or built-in module) from which it is loaded. When given twice |
| 226 | (:option:`-vv`), print a message for each file that is checked for when |
| 227 | searching for a module. Also provides information on module cleanup at exit. |
| 228 | See also :envvar:`PYTHONVERBOSE`. |
| 229 | |
| 230 | |
| 231 | .. cmdoption:: -W arg |
| 232 | |
| 233 | Warning control. Python's warning machinery by default prints warning |
| 234 | messages to :data:`sys.stderr`. A typical warning message has the following |
| 235 | form:: |
| 236 | |
| 237 | file:line: category: message |
| 238 | |
| 239 | By default, each warning is printed once for each source line where it |
| 240 | occurs. This option controls how often warnings are printed. |
| 241 | |
| 242 | Multiple :option:`-W` options may be given; when a warning matches more than |
| 243 | one option, the action for the last matching option is performed. Invalid |
| 244 | :option:`-W` options are ignored (though, a warning message is printed about |
| 245 | invalid options when the first warning is issued). |
| 246 | |
| 247 | Warnings can also be controlled from within a Python program using the |
| 248 | :mod:`warnings` module. |
| 249 | |
| 250 | The simplest form of argument is one of the following action strings (or a |
| 251 | unique abbreviation): |
| 252 | |
| 253 | ``ignore`` |
| 254 | Ignore all warnings. |
| 255 | ``default`` |
| 256 | Explicitly request the default behavior (printing each warning once per |
| 257 | source line). |
| 258 | ``all`` |
| 259 | Print a warning each time it occurs (this may generate many messages if a |
| 260 | warning is triggered repeatedly for the same source line, such as inside a |
| 261 | loop). |
| 262 | ``module`` |
| 263 | Print each warning only only the first time it occurs in each module. |
| 264 | ``once`` |
| 265 | Print each warning only the first time it occurs in the program. |
| 266 | ``error`` |
| 267 | Raise an exception instead of printing a warning message. |
| 268 | |
| 269 | The full form of argument is:: |
| 270 | |
| 271 | action:message:category:module:line |
| 272 | |
| 273 | Here, *action* is as explained above but only applies to messages that match |
| 274 | the remaining fields. Empty fields match all values; trailing empty fields |
| 275 | may be omitted. The *message* field matches the start of the warning message |
| 276 | printed; this match is case-insensitive. The *category* field matches the |
| 277 | warning category. This must be a class name; the match test whether the |
| 278 | actual warning category of the message is a subclass of the specified warning |
| 279 | category. The full class name must be given. The *module* field matches the |
| 280 | (fully-qualified) module name; this match is case-sensitive. The *line* |
| 281 | field matches the line number, where zero matches all line numbers and is |
| 282 | thus equivalent to an omitted line number. |
| 283 | |
| 284 | .. seealso:: |
| 285 | |
| 286 | :pep:`230` -- Warning framework |
| 287 | |
| 288 | |
| 289 | .. cmdoption:: -x |
| 290 | |
| 291 | Skip the first line of the source, allowing use of non-Unix forms of |
| 292 | ``#!cmd``. This is intended for a DOS specific hack only. |
| 293 | |
| 294 | .. warning:: The line numbers in error messages will be off by one! |
| 295 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame^] | 296 | .. _using-on-envvars: |
Georg Brandl | 3c8ce77 | 2007-11-01 20:58:08 +0000 | [diff] [blame] | 297 | |
| 298 | Environment variables |
| 299 | --------------------- |
| 300 | |
| 301 | .. envvar:: PYTHONHOME |
| 302 | |
| 303 | Change the location of the standard Python libraries. By default, the |
| 304 | libraries are searched in :file:`{prefix}/lib/python<version>` and |
| 305 | :file:`{exec_prefix}/lib/python<version>`, where :file:`{prefix}` and |
| 306 | :file:`{exec_prefix}` are installation-dependent directories, both defaulting |
| 307 | to :file:`/usr/local`. |
| 308 | |
| 309 | When :envvar:`PYTHONHOME` is set to a single directory, its value replaces |
| 310 | both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values |
| 311 | for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}``. |
| 312 | |
| 313 | |
| 314 | .. envvar:: PYTHONPATH |
| 315 | |
| 316 | Augments the default search path for module files. The format is the same as |
| 317 | the shell's :envvar:`PATH`: one or more directory pathnames separated by |
| 318 | colons. Non-existent directories are silently ignored. |
| 319 | |
| 320 | The default search path is installation dependent, but generally begins with |
| 321 | :file:`{prefix}/lib/python<version>`` (see :envvar:`PYTHONHOME` above). It |
| 322 | is *always* appended to :envvar:`PYTHONPATH`. |
| 323 | |
| 324 | If a script argument is given, the directory containing the script is |
| 325 | inserted in the path in front of :envvar:`PYTHONPATH`. The search path can |
| 326 | be manipulated from within a Python program as the variable :data:`sys.path`. |
| 327 | |
| 328 | |
| 329 | .. envvar:: PYTHONSTARTUP |
| 330 | |
| 331 | If this is the name of a readable file, the Python commands in that file are |
| 332 | executed before the first prompt is displayed in interactive mode. The file |
| 333 | is executed in the same namespace where interactive commands are executed so |
| 334 | that objects defined or imported in it can be used without qualification in |
| 335 | the interactive session. You can also change the prompts :data:`sys.ps1` and |
| 336 | :data:`sys.ps2` in this file. |
| 337 | |
| 338 | |
| 339 | .. envvar:: PYTHONY2K |
| 340 | |
| 341 | Set this to a non-empty string to cause the :mod:`time` module to require |
| 342 | dates specified as strings to include 4-digit years, otherwise 2-digit years |
| 343 | are converted based on rules described in the :mod:`time` module |
| 344 | documentation. |
| 345 | |
| 346 | |
| 347 | .. envvar:: PYTHONOPTIMIZE |
| 348 | |
| 349 | If this is set to a non-empty string it is equivalent to specifying the |
| 350 | :option:`-O` option. If set to an integer, it is equivalent to specifying |
| 351 | :option:`-O` multiple times. |
| 352 | |
| 353 | |
| 354 | .. envvar:: PYTHONDEBUG |
| 355 | |
| 356 | If this is set to a non-empty string it is equivalent to specifying the |
| 357 | :option:`-d` option. If set to an integer, it is equivalent to specifying |
| 358 | :option:`-d` multiple times. |
| 359 | |
| 360 | |
| 361 | .. envvar:: PYTHONINSPECT |
| 362 | |
| 363 | If this is set to a non-empty string it is equivalent to specifying the |
| 364 | :option:`-i` option. |
| 365 | |
| 366 | |
| 367 | .. envvar:: PYTHONUNBUFFERED |
| 368 | |
| 369 | If this is set to a non-empty string it is equivalent to specifying the |
| 370 | :option:`-u` option. |
| 371 | |
| 372 | |
| 373 | .. envvar:: PYTHONVERBOSE |
| 374 | |
| 375 | If this is set to a non-empty string it is equivalent to specifying the |
| 376 | :option:`-v` option. If set to an integer, it is equivalent to specifying |
| 377 | :option:`-v` multiple times. |
| 378 | |
| 379 | |
| 380 | .. envvar:: PYTHONCASEOK |
| 381 | |
| 382 | If this is set, Python ignores case in :keyword:`import` statements. This |
| 383 | only works on Windows. |
| 384 | |