Skip to main content

Build testable CLI apps with `click` and `pydantic`

Project description

SwiftCLI

Build testable CLI apps with click and pydantic

swiftcli makes it easy to define CLI parameters with pydantic BaseModels, combining the power of click with pydantic's data validation.

Features

  • Define CLI parameters using pydantic models
  • Type validation and conversion out of the box
  • Support for arguments, options, flags and switches
  • Easy to test CLI applications

Installation

pip install swiftcli

Simple Example

from pydantic import BaseModel

from swiftcli import BaseCommand, Group
from swiftcli.types import Argument, Option


class GreetParams(BaseModel):
    name: Argument[str]  # required argument
    color: Option[str] = ""  # Optional --color option with default value


class GreetCommand(BaseCommand[GreetParams]):
    NAME = "greet"

    def run(self) -> None:
        if self.params.color:
            print(f"Hello, {self.params.name}. You like the color {self.params.color}.")
        else:
            print(f"Hello, {self.params.name}.")


cli = Group()
cli.add_command_cls(GreetCommand)

if __name__ == "__main__":
    cli()

Parameter Types

SwiftCLI provides several parameter types through the swiftcli.types module:

Argument

Required positional arguments:

class MyParams(BaseModel):
    filename: Argument[str]  # Required positional argument

Option

Optional named parameters with default values:

class MyParams(BaseModel):
    output: Option[str] = "output.txt"  # --output option with default
    count: Option[int] = 1  # --count option with default

Flag

Boolean flags that can be enabled:

class MyParams(BaseModel):
    verbose: Flag  # --verbose flag, defaults to False

Switch

Enum-based switches that create multiple mutually exclusive flags:

from enum import Enum

class LogLevel(str, Enum):
    DEBUG = "debug"
    INFO = "info" 
    ERROR = "error"

class MyParams(BaseModel):
    log_level: Switch[LogLevel] = LogLevel.INFO  # Creates --debug, --info, --error flags

Advanced Usage

Command Configuration

Commands can be configured using the CONFIG class variable:

class MyCommand(BaseCommand[MyParams]):
    NAME = "mycommand"
    CONFIG = {
        "help": "My command help text",
        "short_help": "Short help",
        "epilog": "Additional help text at the bottom",
        "hidden": False,
        "deprecated": False,
    }

Option Customization

Options can be customized using OptionSettings:

from typing import Annotated
from swiftcli.types import OptionSettings

class MyParams(BaseModel):
    verbose: Annotated[
        int,
        OptionSettings(
            count=True,  # Allow multiple flags (-vvv)
            aliases=["-v"],  # Add short alias
            help="Sets the verbosity level"
        )
    ] = 0

Command Groups

Group multiple commands together:

from swiftcli import Group

cli = Group()
cli.add_command_cls(CommandOne)
cli.add_command_cls(CommandTwo)

if __name__ == "__main__":
    cli()

Testing

SwiftCLI makes it easy to test your CLI applications:

# Import the command we want to test
from my_cli.commands import MyCommand

# Test the command
def test_my_command():
    # You can mock, stub, or read the stdout/err
    # Run the command:
    MyCommand(param1="a", param2="b").run()

License

MIT

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

swiftcli-0.2.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

swiftcli-0.2.0-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file swiftcli-0.2.0.tar.gz.

File metadata

  • Download URL: swiftcli-0.2.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.12 Linux/6.11.0-1018-azure

File hashes

Hashes for swiftcli-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3c9646d7d8bd4c85c15422c12a34f3fae890ed011b6b1d295d2a9aa8a02e0f83
MD5 e9c0e0bed3ffd95067b80ba9931b7d15
BLAKE2b-256 8a7f467a8d274778021fef9d56cf9ab8b0b5a4c558c0560c39cf625248f47743

See more details on using hashes here.

File details

Details for the file swiftcli-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: swiftcli-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.12 Linux/6.11.0-1018-azure

File hashes

Hashes for swiftcli-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 27715207ed4cc613e0a7f97c028012eb6ecc22951885eb7792d45f6a4c26f970
MD5 65386b2da4c3e556a4ffbb9e3fa8cc10
BLAKE2b-256 04f6cb6a6175641c57c4235c1f637dee532a5bc5c86b926a7ebb46fac8cad51d

See more details on using hashes here.

Supported by

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