Skip to main content

Bundle CLI applications or other binary data as wheel to use them in code or as standalone binary

Project description

binary-wheel-builder

PyPI version PyPI - Downloads LICENSE CircleCI codecov Quality Gate Status Code Smells Maintainability Rating Security Rating Renovate


Build deterministic python wheels to distribute CLI tools (third party or your own with python and make them easily usable using python code.

Features

  • deterministic wheel file output
  • Use with Python Code or as CLI
  • Prebuilt data sources for your binaries
  • Ready to release and ship your binaries
  • Wrapper for cli calls inside Python
  • Exposes wheel as module entrypoint (python -m your_cli) and adds to path (your-cli)

Requirements

  • Python 3.8+ for host running wheel build
  • For target host every 3.x should work

Installation

... with pip

# with CLI dependencies
pip install binary_wheel_builder[cli]

# as SDK
pip install binary_wheel_builder

... with pipx

pipx install binary_wheel_builder[cli]

Usage

Build with CLI

  1. Create your config file e. g. my-cli-wheel.yaml:
    package: my_cli
    executable: my-cli-bin
    name: my-cli
    version: 0.0.1
    summary: My CLI provides nice and clean functionality on the terminal
    description: !FileContent README.md
    license: MIT
    requires_python: ">=3.8"
    classifier:
       - "License :: OSI Approved :: MIT License"
       # Check https://pypi.org/classifiers/ for all available
    project_urls:
       # Set project urls as you like
       "Homepage": "https://github.com/my-org/my-cli"
       "Source Code": "https://github.com/my-org/my-cli,git"
       "Bug Tracker": "https://github.com/my-org/my-cli/issues"
    source: !WheelSource
      # Fetch binary from GitHub releases
      implementation: binary_wheel_builder.api.wheel_sources.GithubReleaseBinarySource
      project_slug: my-org/my-cli
      version: "0.0.1"
      tag_prefix: "" # e.g. set to v when your tag is vX.Y.Z
     # Path of the binary relative to your package root
      binary_path: my_cli/my-cli-bin
      # Download file name based on platform the wheel is built for
      asset_name_mapping:
        !WellknownPlatform MAC_SILICON: "mycli-darwin-arm64"
        !WellknownPlatform MAC_INTEL: "mycli-darwin-amd64"
        !WellknownPlatform LINUX_GENERIC_x86_64: "my-cli-linux-amd64"
        !WellKnownPlatform LINUX_GENERIC_aarch64: "my-cli-linux-arm"
      # Supported platforms by the wheel
      platforms:
        - !WellknownPlatform MAC_INTEL
        - !WellknownPlatform MAC_SILICON
        - !WellknownPlatform LINUX_GENERIC_x86_64
        - !WellKnownPlatform LINUX_GENERIC_aarch64
    
  2. Build your wheel for all platforms
    binary-wheel-builder --wheel-spec my-cli-wheel.yaml
    
  3. Upload your wheel files using twine:
    twine upload -r pypi dist/*
    
  4. Enjoy and consume your CLI as a package

If you want to have auto complete and validation right in the IDE, you can use the wheel.schema.json JSON Schema.

VSCode Guide | IntelliJ IDEA IDEs Guide

Build with Python code

If you prefer to write Python Code you use almost the same structure:

from pathlib import Path

from binary_wheel_builder.api import build_wheel, Wheel, well_known_platforms
from binary_wheel_builder.api.wheel_sources import GithubReleaseBinarySource


# Add a custom github release source
class MyCliGithubReleaseSource(GithubReleaseBinarySource):
    def __init__(self, version: str):
        super().__init__(
            "my-org/my-repo",
            version,
            {
                well_known_platforms.MAC_SILICON: "mycli-darwin-arm64",
                well_known_platforms.MAC_INTEL: "mycli-darwin-amd64",
                well_known_platforms.LINUX_GENERIC_x86_64: "my-cli-linux-amd64",
                well_known_platforms.LINUX_GENERIC_aarch64: "my-cli-linux-arm",
            },
            "my_cli/my-cli-bin"
        )


dist_folder = Path("dist")

print("Built wheels:")
for result in build_wheel(
        Wheel(
            package="my_cli",
            executable="my-cli-bin",
            name="my-cli",
            version="0.0.1",
            summary='My CLI provides nice and clean functionality on the terminal',
            license='MIT',
            requires_python=">=3.9",
            classifier=[
                'License :: OSI Approved :: MIT License',
                # Check https://pypi.org/classifiers/ for all available
            ],
            project_urls={
                'Homepage': 'https://github.com/my-org/my-cli',
                'Source Code': 'https://github.com/my-org/my-cli,git',
                'Bug Tracker': 'https://github.com/my-org/my-cli/issues',
            },
            source=MyCliGithubReleaseSource("0.0.1"),
            platforms=[
                well_known_platforms.MAC_INTEL,
                well_known_platforms.MAC_SILICON,
                well_known_platforms.LINUX_GENERIC_x86_64,
                well_known_platforms.LINUX_GENERIC_aarch64
            ]
        ),
        dist_folder
):
    print(f" > {result.file_path} [{result.checksum}]")

Afterwards upload with twine: Upload your wheel files using twine:

twine upload -r pypi dist/*

Using the generated wheel

With python module call

python -m my_cli

Using wrapper in path

my-cli

Using in Python code using exec utils

import subprocess

from my_cli import exec

# Run process and prefix stdout and stderr
exec.exec_with_templated_output(["--help"])

# Create a subprocess, specifying how to handle stdout, stderr
exec.create_subprocess(["--help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)

# Perform command with suppressed output and return finished proces instance,
# on that one can also check if the call was successfully
exec.exec_silently(["--version"])

Motivation

Sometimes managing CLI dependencies for tooling etc. can become quite a pain.

Also sometimes there are just so many options to distribute binaries, but Python is preinstalled on almost any nix machine. This opens great possibilities with using pip(x) to install dependencies or even reuse standalone CLI applications as regular dependency in your code.

Documentation

Contributing

I love your input! I want to make contributing to this project as easy and transparent as possible, whether it's:

  • Reporting a bug
  • Discussing the current state of the configuration
  • Submitting a fix
  • Proposing new features
  • Becoming a maintainer

To get started please read the Contribution Guidelines.

Development

Requirements

  • Python 3.8+
  • Poetry

Test

Integration Tests

poetry run pytest integration_tests/

Unit Tests

poetry run pytest binary_wheel_builder/

Build

poetry install

Alternatives

  • Using platform native package management
  • curl'ing dependencies

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

binary_wheel_builder-3.6.0.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

binary_wheel_builder-3.6.0-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

Details for the file binary_wheel_builder-3.6.0.tar.gz.

File metadata

  • Download URL: binary_wheel_builder-3.6.0.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.7 Linux/5.15.0-1057-aws

File hashes

Hashes for binary_wheel_builder-3.6.0.tar.gz
Algorithm Hash digest
SHA256 f046b64eafd7d1c5bcf2a29972da5555e4cd0068158f7e50af529e54a1495f81
MD5 082a5de0326bc7b7f12f9c666d622980
BLAKE2b-256 67ce8cfe6225d112139ff89a12dd25429a4e409d9e08fe73256ac37b3c73bfc6

See more details on using hashes here.

File details

Details for the file binary_wheel_builder-3.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for binary_wheel_builder-3.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8a6689a833a17274ba6c860795402becf36ca397b27bf0032fd43333f23da8b7
MD5 eeab02b085a925712c5a072637869ff8
BLAKE2b-256 47cc4ab967f6262391e069fdda4c3b1e38976972cbaeeb32081968afee9cbf1c

See more details on using hashes here.

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