Skip to main content

A Python library for dynamically building CLI tools from YAML configurations.

Project description

Dynamic CLI Builder

Dynamic CLI Builder is a tool that simplifies the creation of interactive command-line interfaces (CLI) with minimal changes to your Python scripts, you can enable CLI functionality by adding methods to the registry and describing the CLI structure using YAML.

Features

  • Easy to use
  • Highly customizable
  • Supports multiple command structures
  • Interactive cli
  • custom rules
  • Logging

Installation

To install Dynamic CLI Builder, use the following command:

pip install dynamic-cli-builder

Usage

Here is a simple example to get you started:

Create Actions

Actions are basically function to be executed base on command.
For instance actions.py

def say_hello(name: str, age: int):
    print(f"Hello {name}!, you are {age} years old.")

# Action Registry
ACTIONS = {
    "say_hello": say_hello,
}

you can have multiple function registered

Create yaml config

config.yaml

description: "Dynamic CLI Builder Example"
commands:
  - name: say_hello
    description: "Say Hello..."
    args:
      - name: name
        type: str
        help: "Name of the user."
    action: say_hello

Add rules for custom validation

  • min, max validation
description: "Dynamic CLI Builder Example"
commands:
  - name: say_hello
    description: "Say Hello..."
    args:
      - name: name
        type: str
        help: "Name of the user."
      - name: age
        type: int
        help: "Age of the user."
        rules:
          min: 1
          max: 99
    action: say_hello
  • for more control, you could also use regex
description: "Dynamic CLI Builder Example"
commands:
  - name: say_hello
    description: "Say Hello..."
    args:
      - name: name
        type: str
        help: "Name of the user."
      - name: age
        type: int
        help: "Age of the user."
        rules:
          regex: "^[1-9][0-9]$"
    action: say_hello

Main file main.py

To bind this all together

from dynamic_cli_builder import run_builder
from actions import ACTIONS

run_builder('config.yaml', ACTIONS)

CLI Command

Global Help
python3 <name_of_main_file> -h

For Instance:

python3 main.py -h

command specific help

 python3 <name_of_main_file> <name_of_command> -h

For Instance:

python3 main.py say_hello --name world --age 4530000000

You should see

Hello World!, you are 4530000000 years old

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

dynamic_cli_builder-0.1.18.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

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

dynamic_cli_builder-0.1.18-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file dynamic_cli_builder-0.1.18.tar.gz.

File metadata

  • Download URL: dynamic_cli_builder-0.1.18.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for dynamic_cli_builder-0.1.18.tar.gz
Algorithm Hash digest
SHA256 185e7e40174a59dbf07546fe51a1dbe511306ed884f1bf39597b6f8772d5d36f
MD5 85b18727ae1a0ea5f4b51a5abca75e01
BLAKE2b-256 ee0108cadf3a2c3a73b8e8bb701d1225dd68bde6683b64c44bb8abd4f598efd5

See more details on using hashes here.

File details

Details for the file dynamic_cli_builder-0.1.18-py3-none-any.whl.

File metadata

File hashes

Hashes for dynamic_cli_builder-0.1.18-py3-none-any.whl
Algorithm Hash digest
SHA256 4b48d51488a934b1603630192ca6cbba6196c6ce345a3df7a25d52b63767af0f
MD5 fb1d81cfba6059455b0110dec35c53b3
BLAKE2b-256 886b5b739f5ef1cf76a3f8323813e61593d5760ac2e3d3f7afb6c82fe73191f2

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