blob: 91322658fbdfed1d167f83a1589997a8064aa714 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`compileall` --- Byte-compile Python libraries
2===================================================
3
4.. module:: compileall
5 :synopsis: Tools for byte-compiling all Python source files in a directory tree.
6
Georg Brandlc0661052014-10-02 08:38:39 +02007**Source code:** :source:`Lib/compileall.py`
8
9--------------
10
Georg Brandl8ec7f652007-08-15 14:28:01 +000011
12This module provides some utility functions to support installing Python
R. David Murray561b96f2011-02-11 17:25:54 +000013libraries. These functions compile Python source files in a directory tree.
14This module can be used to create the cached byte-code files at library
15installation time, which makes them available for use even by users who don't
16have write permission to the library directories.
Georg Brandl8ec7f652007-08-15 14:28:01 +000017
Georg Brandl8ec7f652007-08-15 14:28:01 +000018
Éric Araujoa8132ec2010-12-16 03:53:53 +000019Command-line use
20----------------
21
22This module can work as a script (using :program:`python -m compileall`) to
23compile Python sources.
24
25.. program:: compileall
26
Benjamin Petersonbeda1102014-09-04 22:40:34 -040027.. cmdoption:: directory ...
28 file ...
Éric Araujoa8132ec2010-12-16 03:53:53 +000029
30 Positional arguments are files to compile or directories that contain
31 source files, traversed recursively. If no argument is given, behave as if
32 the command line was ``-l <directories from sys.path>``.
33
34.. cmdoption:: -l
35
R. David Murray561b96f2011-02-11 17:25:54 +000036 Do not recurse into subdirectories, only compile source code files directly
37 contained in the named or implied directories.
Éric Araujoa8132ec2010-12-16 03:53:53 +000038
39.. cmdoption:: -f
40
41 Force rebuild even if timestamps are up-to-date.
42
43.. cmdoption:: -q
44
R. David Murray561b96f2011-02-11 17:25:54 +000045 Do not print the list of files compiled, print only error messages.
Éric Araujoa8132ec2010-12-16 03:53:53 +000046
47.. cmdoption:: -d destdir
48
R. David Murray561b96f2011-02-11 17:25:54 +000049 Directory prepended to the path to each file being compiled. This will
50 appear in compilation time tracebacks, and is also compiled in to the
51 byte-code file, where it will be used in tracebacks and other messages in
52 cases where the source file does not exist at the time the byte-code file is
53 executed.
Éric Araujoa8132ec2010-12-16 03:53:53 +000054
55.. cmdoption:: -x regex
56
R. David Murray561b96f2011-02-11 17:25:54 +000057 regex is used to search the full path to each file considered for
58 compilation, and if the regex produces a match, the file is skipped.
Éric Araujoa8132ec2010-12-16 03:53:53 +000059
60.. cmdoption:: -i list
61
R. David Murray561b96f2011-02-11 17:25:54 +000062 Read the file ``list`` and add each line that it contains to the list of
63 files and directories to compile. If ``list`` is ``-``, read lines from
64 ``stdin``.
Éric Araujoa8132ec2010-12-16 03:53:53 +000065
Éric Araujoc11ba762010-12-16 06:15:02 +000066.. versionchanged:: 2.7
67 Added the ``-i`` option.
Éric Araujoa8132ec2010-12-16 03:53:53 +000068
69
70Public functions
71----------------
Georg Brandl8ec7f652007-08-15 14:28:01 +000072
Éric Araujoc11ba762010-12-16 06:15:02 +000073.. function:: compile_dir(dir[, maxlevels[, ddir[, force[, rx[, quiet]]]]])
Georg Brandl8ec7f652007-08-15 14:28:01 +000074
75 Recursively descend the directory tree named by *dir*, compiling all :file:`.py`
R. David Murray561b96f2011-02-11 17:25:54 +000076 files along the way.
77
78 The *maxlevels* parameter is used to limit the depth of the recursion; it
79 defaults to ``10``.
80
81 If *ddir* is given, it is prepended to the path to each file being compiled
82 for use in compilation time tracebacks, and is also compiled in to the
83 byte-code file, where it will be used in tracebacks and other messages in
84 cases where the source file does not exist at the time the byte-code file is
85 executed.
86
Georg Brandl8ec7f652007-08-15 14:28:01 +000087 If *force* is true, modules are re-compiled even if the timestamps are up to
88 date.
89
R. David Murray561b96f2011-02-11 17:25:54 +000090 If *rx* is given, its search method is called on the complete path to each
91 file considered for compilation, and if it returns a true value, the file
92 is skipped.
Georg Brandl8ec7f652007-08-15 14:28:01 +000093
R. David Murray561b96f2011-02-11 17:25:54 +000094 If *quiet* is true, nothing is printed to the standard output unless errors
95 occur.
Georg Brandl8ec7f652007-08-15 14:28:01 +000096
Éric Araujoc11ba762010-12-16 06:15:02 +000097
98.. function:: compile_file(fullname[, ddir[, force[, rx[, quiet]]]])
99
R. David Murray561b96f2011-02-11 17:25:54 +0000100 Compile the file with path *fullname*.
Éric Araujoc11ba762010-12-16 06:15:02 +0000101
R. David Murray561b96f2011-02-11 17:25:54 +0000102 If *ddir* is given, it is prepended to the path to the file being compiled
103 for use in compilation time tracebacks, and is also compiled in to the
104 byte-code file, where it will be used in tracebacks and other messages in
105 cases where the source file does not exist at the time the byte-code file is
106 executed.
Éric Araujoc11ba762010-12-16 06:15:02 +0000107
R. David Murray46c4e472011-02-11 22:54:34 +0000108 If *rx* is given, its search method is passed the full path name to the
R. David Murray561b96f2011-02-11 17:25:54 +0000109 file being compiled, and if it returns a true value, the file is not
110 compiled and ``True`` is returned.
111
112 If *quiet* is true, nothing is printed to the standard output unless errors
113 occur.
Éric Araujoc11ba762010-12-16 06:15:02 +0000114
115 .. versionadded:: 2.7
116
117
Georg Brandl8ec7f652007-08-15 14:28:01 +0000118.. function:: compile_path([skip_curdir[, maxlevels[, force]]])
119
120 Byte-compile all the :file:`.py` files found along ``sys.path``. If
R. David Murray561b96f2011-02-11 17:25:54 +0000121 *skip_curdir* is true (the default), the current directory is not included
122 in the search. All other parameters are passed to the :func:`compile_dir`
123 function. Note that unlike the other compile functions, ``maxlevels``
124 defaults to ``0``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000125
126To force a recompile of all the :file:`.py` files in the :file:`Lib/`
127subdirectory and all its subdirectories::
128
129 import compileall
130
131 compileall.compile_dir('Lib/', force=True)
132
133 # Perform same compilation, excluding files in .svn directories.
134 import re
Georg Brandl95aa1722013-04-14 12:02:43 +0200135 compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000136
137
138.. seealso::
139
140 Module :mod:`py_compile`
141 Byte-compile a single source file.