Skip to main content

Build zipapp single file Python applications easily

Project description

Introduction

Build zipapp (PEP 441) single file Python applications easily.

Repositories

Distributions:

Source code:

Usage

Standalone application

$ zapp --help
usage: zapp [-h] [--version] [--requirements requirements.txt]
            output_file entry_point [requirement [requirement ...]]

positional arguments:
  output_file
  entry_point
  requirement

optional arguments:
  -h, --help            show this help message and exit
  --version             show program's version number and exit
  --requirements requirements.txt, -r requirements.txt
zapp ~/bin/myapp myapp.cli:main 'myapp==1.2.3' 'mylib==3.2.1'
zapp ~/bin/myapp myapp.cli:main --requirements A.txt --requirements B.txt

python3 -m zapp ~/bin/myapp myapp.cli:main 'myapp==1.2.3' 'mylib==3.2.1'

zapp toolmaker.pyz toolmaker.cli:main toolmaker
zapp pipdeptree.pyz pipdeptree:main pipdeptree
zapp ~/bin/httpie httpie.__main__:main httpie

# Without requirements (use an entry point from Python's standard library)
zapp zipfile.pyz zipfile:main

Library

import zapp

zapp.core.build_zapp(
    'myapp.pyz',  # output_file
    'myapp.cli:main',  # entry_point
    requirements=[
        'myapp==1.2.3',
        'mylib==3.2.1',
    ],
    requirements_txts=[
        'A.txt',
        'B.txt',
    ],
)

Setuptools command

python3 setup.py bdist_zapp --entry-point myapp.cli:main

Details

Similar applications

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zapp-0.0.7.tar.gz (9.0 kB view hashes)

Uploaded Source

Built Distribution

zapp-0.0.7-py3-none-any.whl (9.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page