pyzzer 0.1.1
pip install pyzzer
Released:
A tool for creating Python-executable archives.
Navigation
Unverified details
These details havenot been verified by PyPIProject links
Meta
- License: MIT
- Author:Vinay Sajip
- Tags executable, archive, zip
Project description
What is it?
pyzzer is a simple tool for creating Python-runnable zip archives from Python package and module sources. It uses Python’s standard libraryzipfile module to construct runnable .zip files. There are several elements to making archives runnable:
They need ashebang line which indicates to POSIX shells the native executable that is used to run them. Archives created bypyzzer have a shebang line prepended to them, which is#! /usr/bin/env python by default but can be overridden with a command-line argument topyzzer.
On POSIX systems, the executable bit should be set in the archive’s file-system attributes. This is set bypyzzer for the current user.
For Python to be able to run a .zip archive, the archive needs to contain a “main” module named__main__.py. Forpyzzer-created archives, you can either specify an existing__main__.py file, specifying only a single source file (which then is written to the archive as__main__.py) or havepyzzer make one from a module:callable combination. An archive cannot be created withpyzzer unless it contains a top-level__main__.py.
Windows support
On Windows, the recommended way of running archives is to have thePython Launcher for Windows installed and touse that to run archives. The launcher processes POSIX-style shebang lines and is included inPython 3.3 and later, but the standalone launcher receives updates more frequently. While thePython 3.3 launcher only recognises.py,.pyc,.pyo and.pyw extensions, thestandalone launcher also recognises.pyz and.pyzw extensions, which are used forrunnable archives.
Itis possible to havepyzzer provide the ability to prepend archives with a suitablenative Windows executable which is capable of launching archives appended to it. Such launchersare available for 32- and 64-bit console and Windows applications (they are developed in aseparate project). Since including theseexecutables inpyzzer makes it larger, this support is provided in a separate download (seeGetting pyzzer).
Usage
The usage message gives the available options:
Usage: pyzzer [options] DIR_OR_FILE_OR_ARCHIVE [DIR_OR_FILE ...]Convert Python source directories and files to runnable zip files. Thefirst argument can be an existing archive, which can be added to withadditional sources.Options: -h, --help show this help message and exit -s SHEBANG Specify a shebang line to prepend to the archive, or the path to an interpreter which can be used to determine the shebang line to use. Defaults to "#! /usr/bin/env python" on POSIX and to the value of sys.executable on Windows. -m MODULE:ATTR Specify a callable which is the main entry point. -x REGEX Specify regexes to exclude from the zip (can specify more than once). -o FILENAME Specify the path of the file to write to. If not specified and a source archive is given, it will be used; otherwise the extension defaults to .pyz and the name defaults to the first directory or file specified. -v Provide information about progress. -i Inspect an existing archive. -l LAUNCHER Specify a Windows launcher to use (t32/w32/t64/w64).* -r Recurse package directories.
* Only available with thepyzzerw.pyz variant (seeGetting pyzzer).
The following sections discuss the options in more detail.
Positional arguments
The positional arguments are an optional existing archive to add to, followed by a list of directories and files. These are processed as follows:
If the first argument is an archive, any shebang it contains will be preserved unless-s is used to override it. The contents of the archive are added to with the sources specified in the rest of the command line. Any file contents before the archive/shebang (such as a native executable launcher on Windows) are preserved unless-l is available and used.
If an argument is a file, it is archived as a top-level file.
If an argument is a directory,``pyzzer`` determines whether it is a package according to whether it contains an__init__.py. If it does, it is treated as a Python package and its contents are written to the archive as a directory. By default, sub-packages are not archived unless you specify-r, in which case all sub-packages are archived. If the directory is not a package, its contents will be archived as top-level files and no recursion into sub-directories will be performed.
If any files are added which already exist in the archive, an error will be raised.
Before adding to an archive, files in directories will be checked against any exclusion patterns specified using-x and excluded if they match. In addition, files.hgignore,.gitignore and.bzrignore are never added, and directories.hg,.git,.bzr and.svn are never recursed into even when-r is specified. Any files not specifically excluded will be included in the archive on the assumption that they are package data. Any files specified in the command line are assumed to be wanted and are not checked against any exclusion patterns.
Setting the shebang line
You can use the-s argument to specify the shebang line to use. If the argument value does not begin with a#!, it will be prepended to the specified value – so you can just specify the path to an interpreter, as that’s all that’s needed.
Specifying a main program
You can specify an existing function somewhere in the archived source files as the main function called by Python when it runs an archive, by using the-m argument with a module:callable argument such asfoo:main orfoo.bar:baz.main. When you do this,pyzzer wraps a call to this function in a Python source file which is saved as a top-level__main__.py in the archive. If you do this, you must not specify a__main__.py file in your sources. If you don’t specify-m, there must be a top-level__main__.py file specified in the sources you add to the archive.
Excluding files from an archive
You can specify one or more regular expressions which indicate that files with names matching them should be excluded from the archiving. The matches are done usingsearch, which means that you need to specify^ and$ explicitly to anchor matches. If any pattern matches a file name, that file is skipped. Note that patterns are passed as is to the regular expression compiler, so take care to quote and/or escape any special characters in the pattern.
Specifying the output archive name
You can specify a name for the output archive using the-o argument. If not specified and an archive was passed as the first argument, the same archive will be overwritten. If the first argument is not an archive, its file name is used as the output archive name, and.pyz is used as the extension.
Getting feedback on progress
If the-v option is specified,pyzzer will print to the console the relative names of files as it writes them to the archive.
Examining an existing archive
If the-i argument is specified, the first positional argument should be an existing archive and subsequent positional arguments are ignored. The existing archive’s shebang line and contents are printed. If a native executable launcher is detected, that is indicated in the output.
Recursing over sub-packages
To recursively add sub-packages in a package, specify the-r argument. When recursing, all directories below a package are assumed to be sub-packages or data.
Specifying a Windows launcher
Though it is preferred that Windows support is through the Python Launcher for Windows, thepyzzerw.pyz archive allows stock native executables to be prepended to the archive. To use them, specify-l with one oft32,w32,t64 orw64 where the numeric suffix indicates whether a 32-bit or a 64-bit launcher is used, and the initial letter is interpreted ast for text (i.e. console) applications, andw for Windows application. You should also specify-o with a filename with a.exe extension.
In theory, you should be able to launch 32-bit or 64-bit Python interpreters from a 32-bit launcher. However, 64-bit launchers have been provided in case of problems.
Note that for best effect, any shebang you specify should match the launcher used (e.g.w32 orw64 would be used with a shebang specifying the path to apythonw.exe). Otherwise, you may see spurious console windows (windowed application run with apython.exe) or no output at all (console application run with apythonw.exe).
These launchers know how to process an archive appended to them. When the main program in the archive is run,sys.argv[0] will specify the name of the executable archive (something.exe).
The launchers have embedded manifests, which should mean that you won’t get UAC prompts.
Running programs in runnable archives
You should just be able to run runnable archives like any normal Python script, by specifying the archive name as the command and any arguments to be passed to the script as arguments to the command.
Getting pyzzer
There are two variants available. Thepyzzer.pyz download doesn’t include support for native Windows launchers, whereas thepyzzerw.pyz download does. Note that both of these are console applications on Windows.
How pyzzer was built
Naturally,pyzzer was used to build executable archives containing itself. The command line for buildingpyzzer.pyz is:
python -m pyzzer -o pyzzer.pyz -x "exe|__main__|lau" -m pyzzer:main pyzzer
and that forpyzzerw.pyz is:
python -m pyzzer -o pyzzerw.pyz -x "exe|__main__" -m pyzzer:main pyzzer
These commands were run from thepyzzer project directory (above thepyzzer package directory). Thepyzzer.launchers module, which contains the extended Windows launcher functionality and enables the-l option, is excluded from the first build.
Testing pyzzer
To run the test suite forpyzzer, you need to clone the repository, and then buildpyzzer.pyz andpyzzerw.pyz using the commands shown above. After this, you can run thetest_pyzzer.py script. The tests are run usingsubprocess to invoke the built files with various command line options.
Acknowledgements
Many thanks to Paul Moore for helpful suggestions about how to improvepyzzer.
Limitations
There is no byte-compilation support at present.
No checks are made to verify that a specified-m value actually exists in the sources.
Packages are recognised by the existence of an__init__.py__, so there is no recognition of new-style namespace packages (which have no such file).
Replacing files in existing archives is not supported.
Patches are welcome to help remove or mitigate these limitations.
Other resources
PEP 441 is the PEP advocating added support for.pyz and.pyzw archives.
Daniel Holth’spyzaa package provides similar functionality topyzzer.
You don’tneed to installpyzzer usingpip (it’s a one-file executable, after all) - but if you absolutely must, here it ison PyPI.
Change log
0.1.1
Released: 2013-08-23.
FixedTypeError in Python 3.x.
Made the default shebang usesys.executable on Windows when-l is specified, rather than/usr/bin/env python which is used on POSIX (and also Windows where the Python Launcher is used).
If the output extension is.exe and no launcher has been specified,t32 will be assumed except on 64-bit Windows (wheret64 will be assumed).
If only a single source file is specified, and no-m option is given, and the archive contains no other files, then the single file is written to the archive with name__main__.py.
Added tests.
Tweaked help messages.
Removed unused code.
Moved change log to the README and updated documentation.
0.1.0
Released: 2013-08-19
Initial release.
Project details
Unverified details
These details havenot been verified by PyPIProject links
Meta
- License: MIT
- Author:Vinay Sajip
- Tags executable, archive, zip
Release historyRelease notifications |RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more aboutinstalling packages.
Source Distribution
File details
Details for the filepyzzer-0.1.1.tar.gz.
File metadata
- Download URL:pyzzer-0.1.1.tar.gz
- Upload date:
- Size: 179.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 | 19a020c4c3b273e5132cb03e6a0a55272bed7a1217f99964a0bf25abc4fe2ef5 | |
| MD5 | dcbf3cab443b26c9bad4765fa7773ef6 | |
| BLAKE2b-256 | 92453672733a72ee12ba440ea2746aae9f8375585caa7674bc8a2ed60ed37e56 |