blob: 993c2ccc39883a84e3a49a80c9a44dcc8e6d0c94 [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
Jeffrey Rackauckasb811d662017-08-09 06:37:17 -0700101.. function:: create_archive(source, target=None, interpreter=None, main=None,
102 include_file=None)
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400103
104 Create an application archive from *source*. The source can be any
105 of the following:
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400106
Serhiy Storchaka4aec9a82017-03-25 13:05:23 +0200107 * The name of a directory, or a :term:`path-like object` referring
Paul Moorea4d4dd32015-03-22 15:32:36 +0000108 to a directory, in which case a new application archive will be
109 created from the content of that directory.
Serhiy Storchaka4aec9a82017-03-25 13:05:23 +0200110 * The name of an existing application archive file, or a :term:`path-like object`
111 referring to such a file, in which case the file is copied to
Paul Moorea4d4dd32015-03-22 15:32:36 +0000112 the target (modifying it to reflect the value given for the *interpreter*
113 argument). The file name should include the ``.pyz`` extension, if required.
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400114 * A file object open for reading in bytes mode. The content of the
115 file should be an application archive, and the file object is
116 assumed to be positioned at the start of the archive.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400117
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400118 The *target* argument determines where the resulting archive will be
119 written:
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400120
Serhiy Storchaka4aec9a82017-03-25 13:05:23 +0200121 * If it is the name of a file, or a :term:`path-like object`,
Paul Moorea4d4dd32015-03-22 15:32:36 +0000122 the archive will be written to that file.
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400123 * If it is an open file object, the archive will be written to that
124 file object, which must be open for writing in bytes mode.
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300125 * If the target is omitted (or ``None``), the source must be a directory
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400126 and the target will be a file with the same name as the source, with
127 a ``.pyz`` extension added.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400128
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400129 The *interpreter* argument specifies the name of the Python
130 interpreter with which the archive will be executed. It is written as
131 a "shebang" line at the start of the archive. On POSIX, this will be
132 interpreted by the OS, and on Windows it will be handled by the Python
133 launcher. Omitting the *interpreter* results in no shebang line being
134 written. If an interpreter is specified, and the target is a
135 filename, the executable bit of the target file will be set.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400136
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400137 The *main* argument specifies the name of a callable which will be
138 used as the main program for the archive. It can only be specified if
139 the source is a directory, and the source does not already contain a
140 ``__main__.py`` file. The *main* argument should take the form
141 "pkg.module:callable" and the archive will be run by importing
142 "pkg.module" and executing the given callable with no arguments. It
143 is an error to omit *main* if the source is a directory and does not
144 contain a ``__main__.py`` file, as otherwise the resulting archive
145 would not be executable.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400146
Jeffrey Rackauckasb811d662017-08-09 06:37:17 -0700147 The *include_file* argument specifies a callback function that is passed the
148 relative path to the file in order to determine which files to store when
149 being called against a directory.
150
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400151 If a file object is specified for *source* or *target*, it is the
152 caller's responsibility to close it after calling create_archive.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400153
Brett Cannoncc4dfc12015-03-13 10:40:49 -0400154 When copying an existing archive, file objects supplied only need
155 ``read`` and ``readline``, or ``write`` methods. When creating an
156 archive from a directory, if the target is a file object it will be
157 passed to the ``zipfile.ZipFile`` class, and must supply the methods
158 needed by that class.
159
160.. function:: get_interpreter(archive)
161
162 Return the interpreter specified in the ``#!`` line at the start of the
163 archive. If there is no ``#!`` line, return :const:`None`.
164 The *archive* argument can be a filename or a file-like object open
165 for reading in bytes mode. It is assumed to be at the start of the archive.
166
167
168.. _zipapp-examples:
169
170Examples
171--------
172
173Pack up a directory into an archive, and run it.
174
175.. code-block:: sh
176
177 $ python -m zipapp myapp
178 $ python myapp.pyz
179 <output from myapp>
180
181The same can be done using the :func:`create_archive` functon::
182
183 >>> import zipapp
184 >>> zipapp.create_archive('myapp.pyz', 'myapp')
185
186To make the application directly executable on POSIX, specify an interpreter
187to use.
188
189.. code-block:: sh
190
191 $ python -m zipapp myapp -p "/usr/bin/env python"
192 $ ./myapp.pyz
193 <output from myapp>
194
195To replace the shebang line on an existing archive, create a modified archive
196using the :func:`create_archive` function::
197
198 >>> import zipapp
199 >>> zipapp.create_archive('old_archive.pyz', 'new_archive.pyz', '/usr/bin/python3')
200
201To update the file in place, do the replacement in memory using a :class:`BytesIO`
202object, and then overwrite the source afterwards. Note that there is a risk
203when overwriting a file in place that an error will result in the loss of
204the original file. This code does not protect against such errors, but
205production code should do so. Also, this method will only work if the archive
206fits in memory::
207
208 >>> import zipapp
209 >>> import io
210 >>> temp = io.BytesIO()
211 >>> zipapp.create_archive('myapp.pyz', temp, '/usr/bin/python2')
212 >>> with open('myapp.pyz', 'wb') as f:
213 >>> f.write(temp.getvalue())
214
215Note that if you specify an interpreter and then distribute your application
216archive, you need to ensure that the interpreter used is portable. The Python
217launcher for Windows supports most common forms of POSIX ``#!`` line, but there
218are other issues to consider:
219
220* If you use "/usr/bin/env python" (or other forms of the "python" command,
221 such as "/usr/bin/python"), you need to consider that your users may have
222 either Python 2 or Python 3 as their default, and write your code to work
223 under both versions.
224* If you use an explicit version, for example "/usr/bin/env python3" your
225 application will not work for users who do not have that version. (This
226 may be what you want if you have not made your code Python 2 compatible).
227* There is no way to say "python X.Y or later", so be careful of using an
228 exact version like "/usr/bin/env python3.4" as you will need to change your
229 shebang line for users of Python 3.5, for example.
230
231The Python Zip Application Archive Format
232-----------------------------------------
233
234Python has been able to execute zip files which contain a ``__main__.py`` file
235since version 2.6. In order to be executed by Python, an application archive
236simply has to be a standard zip file containing a ``__main__.py`` file which
237will be run as the entry point for the application. As usual for any Python
238script, the parent of the script (in this case the zip file) will be placed on
239:data:`sys.path` and thus further modules can be imported from the zip file.
240
241The zip file format allows arbitrary data to be prepended to a zip file. The
242zip application format uses this ability to prepend a standard POSIX "shebang"
243line to the file (``#!/path/to/interpreter``).
244
245Formally, the Python zip application format is therefore:
246
2471. An optional shebang line, containing the characters ``b'#!'`` followed by an
248 interpreter name, and then a newline (``b'\n'``) character. The interpreter
249 name can be anything acceptable to the OS "shebang" processing, or the Python
250 launcher on Windows. The interpreter should be encoded in UTF-8 on Windows,
251 and in :func:`sys.getfilesystemencoding()` on POSIX.
2522. Standard zipfile data, as generated by the :mod:`zipfile` module. The
253 zipfile content *must* include a file called ``__main__.py`` (which must be
254 in the "root" of the zipfile - i.e., it cannot be in a subdirectory). The
255 zipfile data can be compressed or uncompressed.
256
257If an application archive has a shebang line, it may have the executable bit set
258on POSIX systems, to allow it to be executed directly.
259
260There is no requirement that the tools in this module are used to create
261application archives - the module is a convenience, but archives in the above
262format created by any means are acceptable to Python.
Brett Cannon64e4f7f2015-03-13 10:42:08 -0400263