blob: 9dee9a5ac07e2f2621558865769605bd92860cb0 [file] [log] [blame]
Brett Cannoncc4dfc12015-03-13 10:40:49 -04001:mod:`zipapp` --- Manage executable python zip archives
2=======================================================
3
4.. module:: zipapp
5 :synopsis: Manage executable python zip archives
6
Brett Cannoncc4dfc12015-03-13 10:40:49 -04007.. versionadded:: 3.5
8
9**Source code:** :source:`Lib/zipapp.py`
10
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040011.. index::
12 single: Executable Zip Files
13
Brett Cannoncc4dfc12015-03-13 10:40:49 -040014--------------
15
16This module provides tools to manage the creation of zip files containing
17Python code, which can be :ref:`executed directly by the Python interpreter
18<using-on-interface-options>`. The module provides both a
19:ref:`zipapp-command-line-interface` and a :ref:`zipapp-python-api`.
20
21
22Basic Example
23-------------
24
Martin Panter00ccacc2016-04-16 04:59:38 +000025The following example shows how the :ref:`zipapp-command-line-interface`
Brett Cannoncc4dfc12015-03-13 10:40:49 -040026can be used to create an executable archive from a directory containing
27Python code. When run, the archive will execute the ``main`` function from
28the module ``myapp`` in the archive.
29
30.. code-block:: sh
31
32 $ python -m zipapp myapp -m "myapp:main"
33 $ python myapp.pyz
34 <output from myapp>
35
36
37.. _zipapp-command-line-interface:
38
39Command-Line Interface
40----------------------
41
42When called as a program from the command line, the following form is used:
43
44.. code-block:: sh
45
46 $ python -m zipapp source [options]
47
48If *source* is a directory, this will create an archive from the contents of
49*source*. If *source* is a file, it should be an archive, and it will be
50copied to the target archive (or the contents of its shebang line will be
51displayed if the --info option is specified).
52
53The following options are understood:
54
55.. program:: zipapp
56
57.. cmdoption:: -o <output>, --output=<output>
58
59 Write the output to a file named *output*. If this option is not specified,
60 the output filename will be the same as the input *source*, with the
61 extension ``.pyz`` added. If an explicit filename is given, it is used as
62 is (so a ``.pyz`` extension should be included if required).
63
64 An output filename must be specified if the *source* is an archive (and in
65 that case, *output* must not be the same as *source*).
66
67.. cmdoption:: -p <interpreter>, --python=<interpreter>
68
69 Add a ``#!`` line to the archive specifying *interpreter* as the command
70 to run. Also, on POSIX, make the archive executable. The default is to
71 write no ``#!`` line, and not make the file executable.
72
73.. cmdoption:: -m <mainfn>, --main=<mainfn>
74
75 Write a ``__main__.py`` file to the archive that executes *mainfn*. The
76 *mainfn* argument should have the form "pkg.mod:fn", where "pkg.mod" is a
77 package/module in the archive, and "fn" is a callable in the given module.
78 The ``__main__.py`` file will execute that callable.
79
80 :option:`--main` cannot be specified when copying an archive.
81
82.. cmdoption:: --info
83
84 Display the interpreter embedded in the archive, for diagnostic purposes. In
85 this case, any other options are ignored and SOURCE must be an archive, not a
86 directory.
87
88.. cmdoption:: -h, --help
89
90 Print a short usage message and exit.
91
92
93.. _zipapp-python-api:
94
95Python API
96----------
97
98The module defines two convenience functions:
99
100
101.. function:: create_archive(source, target=None, interpreter=None, main=None)
102
103 Create an application archive from *source*. The source can be any
104 of the following:
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400105
Paul Moorea4d4dd32015-03-22 15:32:36 +0000106 * The name of a directory, or a :class:`pathlib.Path` object referring
107 to a directory, in which case a new application archive will be
108 created from the content of that directory.
109 * The name of an existing application archive file, or a :class:`pathlib.Path`
110 object referring to such a file, in which case the file is copied to
111 the target (modifying it to reflect the value given for the *interpreter*
112 argument). The file name should include the ``.pyz`` extension, if required.
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400113 * A file object open for reading in bytes mode. The content of the
114 file should be an application archive, and the file object is
115 assumed to be positioned at the start of the archive.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400116
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400117 The *target* argument determines where the resulting archive will be
118 written:
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400119
Paul Moorea4d4dd32015-03-22 15:32:36 +0000120 * If it is the name of a file, or a :class:`pathlb.Path` object,
121 the archive will be written to that file.
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400122 * If it is an open file object, the archive will be written to that
123 file object, which must be open for writing in bytes mode.
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300124 * If the target is omitted (or ``None``), the source must be a directory
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400125 and the target will be a file with the same name as the source, with
126 a ``.pyz`` extension added.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400127
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400128 The *interpreter* argument specifies the name of the Python
129 interpreter with which the archive will be executed. It is written as
130 a "shebang" line at the start of the archive. On POSIX, this will be
131 interpreted by the OS, and on Windows it will be handled by the Python
132 launcher. Omitting the *interpreter* results in no shebang line being
133 written. If an interpreter is specified, and the target is a
134 filename, the executable bit of the target file will be set.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400135
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400136 The *main* argument specifies the name of a callable which will be
137 used as the main program for the archive. It can only be specified if
138 the source is a directory, and the source does not already contain a
139 ``__main__.py`` file. The *main* argument should take the form
140 "pkg.module:callable" and the archive will be run by importing
141 "pkg.module" and executing the given callable with no arguments. It
142 is an error to omit *main* if the source is a directory and does not
143 contain a ``__main__.py`` file, as otherwise the resulting archive
144 would not be executable.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400145
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400146 If a file object is specified for *source* or *target*, it is the
147 caller's responsibility to close it after calling create_archive.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400148
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400149 When copying an existing archive, file objects supplied only need
150 ``read`` and ``readline``, or ``write`` methods. When creating an
151 archive from a directory, if the target is a file object it will be
152 passed to the ``zipfile.ZipFile`` class, and must supply the methods
153 needed by that class.
154
155.. function:: get_interpreter(archive)
156
157 Return the interpreter specified in the ``#!`` line at the start of the
158 archive. If there is no ``#!`` line, return :const:`None`.
159 The *archive* argument can be a filename or a file-like object open
160 for reading in bytes mode. It is assumed to be at the start of the archive.
161
162
163.. _zipapp-examples:
164
165Examples
166--------
167
168Pack up a directory into an archive, and run it.
169
170.. code-block:: sh
171
172 $ python -m zipapp myapp
173 $ python myapp.pyz
174 <output from myapp>
175
176The same can be done using the :func:`create_archive` functon::
177
178 >>> import zipapp
179 >>> zipapp.create_archive('myapp.pyz', 'myapp')
180
181To make the application directly executable on POSIX, specify an interpreter
182to use.
183
184.. code-block:: sh
185
186 $ python -m zipapp myapp -p "/usr/bin/env python"
187 $ ./myapp.pyz
188 <output from myapp>
189
190To replace the shebang line on an existing archive, create a modified archive
191using the :func:`create_archive` function::
192
193 >>> import zipapp
194 >>> zipapp.create_archive('old_archive.pyz', 'new_archive.pyz', '/usr/bin/python3')
195
196To update the file in place, do the replacement in memory using a :class:`BytesIO`
197object, and then overwrite the source afterwards. Note that there is a risk
198when overwriting a file in place that an error will result in the loss of
199the original file. This code does not protect against such errors, but
200production code should do so. Also, this method will only work if the archive
201fits in memory::
202
203 >>> import zipapp
204 >>> import io
205 >>> temp = io.BytesIO()
206 >>> zipapp.create_archive('myapp.pyz', temp, '/usr/bin/python2')
207 >>> with open('myapp.pyz', 'wb') as f:
208 >>> f.write(temp.getvalue())
209
210Note that if you specify an interpreter and then distribute your application
211archive, you need to ensure that the interpreter used is portable. The Python
212launcher for Windows supports most common forms of POSIX ``#!`` line, but there
213are other issues to consider:
214
215* If you use "/usr/bin/env python" (or other forms of the "python" command,
216 such as "/usr/bin/python"), you need to consider that your users may have
217 either Python 2 or Python 3 as their default, and write your code to work
218 under both versions.
219* If you use an explicit version, for example "/usr/bin/env python3" your
220 application will not work for users who do not have that version. (This
221 may be what you want if you have not made your code Python 2 compatible).
222* There is no way to say "python X.Y or later", so be careful of using an
223 exact version like "/usr/bin/env python3.4" as you will need to change your
224 shebang line for users of Python 3.5, for example.
225
226The Python Zip Application Archive Format
227-----------------------------------------
228
229Python has been able to execute zip files which contain a ``__main__.py`` file
230since version 2.6. In order to be executed by Python, an application archive
231simply has to be a standard zip file containing a ``__main__.py`` file which
232will be run as the entry point for the application. As usual for any Python
233script, the parent of the script (in this case the zip file) will be placed on
234:data:`sys.path` and thus further modules can be imported from the zip file.
235
236The zip file format allows arbitrary data to be prepended to a zip file. The
237zip application format uses this ability to prepend a standard POSIX "shebang"
238line to the file (``#!/path/to/interpreter``).
239
240Formally, the Python zip application format is therefore:
241
2421. An optional shebang line, containing the characters ``b'#!'`` followed by an
243 interpreter name, and then a newline (``b'\n'``) character. The interpreter
244 name can be anything acceptable to the OS "shebang" processing, or the Python
245 launcher on Windows. The interpreter should be encoded in UTF-8 on Windows,
246 and in :func:`sys.getfilesystemencoding()` on POSIX.
2472. Standard zipfile data, as generated by the :mod:`zipfile` module. The
248 zipfile content *must* include a file called ``__main__.py`` (which must be
249 in the "root" of the zipfile - i.e., it cannot be in a subdirectory). The
250 zipfile data can be compressed or uncompressed.
251
252If an application archive has a shebang line, it may have the executable bit set
253on POSIX systems, to allow it to be executed directly.
254
255There is no requirement that the tools in this module are used to create
256application archives - the module is a convenience, but archives in the above
257format created by any means are acceptable to Python.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400258