Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :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 | |
| 7 | |
| 8 | This module provides some utility functions to support installing Python |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 9 | libraries. These functions compile Python source files in a directory tree. |
| 10 | This module can be used to create the cached byte-code files at library |
| 11 | installation time, which makes them available for use even by users who don't |
| 12 | have write permission to the library directories. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 13 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 14 | |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 15 | Command-line use |
| 16 | ---------------- |
| 17 | |
| 18 | This module can work as a script (using :program:`python -m compileall`) to |
| 19 | compile Python sources. |
| 20 | |
| 21 | .. program:: compileall |
| 22 | |
Benjamin Peterson | beda110 | 2014-09-04 22:40:34 -0400 | [diff] [blame^] | 23 | .. cmdoption:: directory ... |
| 24 | file ... |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 25 | |
| 26 | Positional arguments are files to compile or directories that contain |
| 27 | source files, traversed recursively. If no argument is given, behave as if |
| 28 | the command line was ``-l <directories from sys.path>``. |
| 29 | |
| 30 | .. cmdoption:: -l |
| 31 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 32 | Do not recurse into subdirectories, only compile source code files directly |
| 33 | contained in the named or implied directories. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 34 | |
| 35 | .. cmdoption:: -f |
| 36 | |
| 37 | Force rebuild even if timestamps are up-to-date. |
| 38 | |
| 39 | .. cmdoption:: -q |
| 40 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 41 | Do not print the list of files compiled, print only error messages. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 42 | |
| 43 | .. cmdoption:: -d destdir |
| 44 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 45 | Directory prepended to the path to each file being compiled. This will |
| 46 | appear in compilation time tracebacks, and is also compiled in to the |
| 47 | byte-code file, where it will be used in tracebacks and other messages in |
| 48 | cases where the source file does not exist at the time the byte-code file is |
| 49 | executed. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 50 | |
| 51 | .. cmdoption:: -x regex |
| 52 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 53 | regex is used to search the full path to each file considered for |
| 54 | compilation, and if the regex produces a match, the file is skipped. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 55 | |
| 56 | .. cmdoption:: -i list |
| 57 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 58 | Read the file ``list`` and add each line that it contains to the list of |
| 59 | files and directories to compile. If ``list`` is ``-``, read lines from |
| 60 | ``stdin``. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 61 | |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 62 | .. versionchanged:: 2.7 |
| 63 | Added the ``-i`` option. |
Éric Araujo | a8132ec | 2010-12-16 03:53:53 +0000 | [diff] [blame] | 64 | |
| 65 | |
| 66 | Public functions |
| 67 | ---------------- |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 68 | |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 69 | .. function:: compile_dir(dir[, maxlevels[, ddir[, force[, rx[, quiet]]]]]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 70 | |
| 71 | Recursively descend the directory tree named by *dir*, compiling all :file:`.py` |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 72 | files along the way. |
| 73 | |
| 74 | The *maxlevels* parameter is used to limit the depth of the recursion; it |
| 75 | defaults to ``10``. |
| 76 | |
| 77 | If *ddir* is given, it is prepended to the path to each file being compiled |
| 78 | for use in compilation time tracebacks, and is also compiled in to the |
| 79 | byte-code file, where it will be used in tracebacks and other messages in |
| 80 | cases where the source file does not exist at the time the byte-code file is |
| 81 | executed. |
| 82 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 83 | If *force* is true, modules are re-compiled even if the timestamps are up to |
| 84 | date. |
| 85 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 86 | If *rx* is given, its search method is called on the complete path to each |
| 87 | file considered for compilation, and if it returns a true value, the file |
| 88 | is skipped. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 89 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 90 | If *quiet* is true, nothing is printed to the standard output unless errors |
| 91 | occur. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 92 | |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 93 | |
| 94 | .. function:: compile_file(fullname[, ddir[, force[, rx[, quiet]]]]) |
| 95 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 96 | Compile the file with path *fullname*. |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 97 | |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 98 | If *ddir* is given, it is prepended to the path to the file being compiled |
| 99 | for use in compilation time tracebacks, and is also compiled in to the |
| 100 | byte-code file, where it will be used in tracebacks and other messages in |
| 101 | cases where the source file does not exist at the time the byte-code file is |
| 102 | executed. |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 103 | |
R. David Murray | 46c4e47 | 2011-02-11 22:54:34 +0000 | [diff] [blame] | 104 | If *rx* is given, its search method is passed the full path name to the |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 105 | file being compiled, and if it returns a true value, the file is not |
| 106 | compiled and ``True`` is returned. |
| 107 | |
| 108 | If *quiet* is true, nothing is printed to the standard output unless errors |
| 109 | occur. |
Éric Araujo | c11ba76 | 2010-12-16 06:15:02 +0000 | [diff] [blame] | 110 | |
| 111 | .. versionadded:: 2.7 |
| 112 | |
| 113 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 114 | .. function:: compile_path([skip_curdir[, maxlevels[, force]]]) |
| 115 | |
| 116 | Byte-compile all the :file:`.py` files found along ``sys.path``. If |
R. David Murray | 561b96f | 2011-02-11 17:25:54 +0000 | [diff] [blame] | 117 | *skip_curdir* is true (the default), the current directory is not included |
| 118 | in the search. All other parameters are passed to the :func:`compile_dir` |
| 119 | function. Note that unlike the other compile functions, ``maxlevels`` |
| 120 | defaults to ``0``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 121 | |
| 122 | To force a recompile of all the :file:`.py` files in the :file:`Lib/` |
| 123 | subdirectory and all its subdirectories:: |
| 124 | |
| 125 | import compileall |
| 126 | |
| 127 | compileall.compile_dir('Lib/', force=True) |
| 128 | |
| 129 | # Perform same compilation, excluding files in .svn directories. |
| 130 | import re |
Georg Brandl | 95aa172 | 2013-04-14 12:02:43 +0200 | [diff] [blame] | 131 | compileall.compile_dir('Lib/', rx=re.compile(r'[/\\][.]svn'), force=True) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 132 | |
| 133 | |
| 134 | .. seealso:: |
| 135 | |
| 136 | Module :mod:`py_compile` |
| 137 | Byte-compile a single source file. |