Skip to main content

Generate usage spec KDL files from Python argparse.ArgumentParser

Project description

argparse-usage

Generate usage KDL files from Python's argparse.ArgumentParser.

This library converts Python argparse definitions to the usage spec format, enabling automatic generation of:

  • Markdown documentation
  • Manpages
  • Shell completions (bash, fish, zsh, powershell, nu)

Installation

pip install argparse-usage
# or
uv add argparse-usage

Usage

import argparse
import argparse_usage

# Create your ArgumentParser as usual
parser = argparse.ArgumentParser(
    prog='mycli',
    description='My CLI tool',
)

parser.add_argument('-v', '--verbose', action='count', default=0, help='Increase verbosity')
parser.add_argument('-f', '--force', action='store_true', help='Force operation')
parser.add_argument('files', nargs='+', help='Files to process')

# Add subcommands
subparsers = parser.add_subparsers(dest='command')
build_cmd = subparsers.add_parser('build', help='Build project')
test_cmd = subparsers.add_parser('test', help='Run tests')

# Generate usage spec
spec = argparse_usage.generate(
    parser,
    name='My CLI',
    version='1.0.0',
    author='Your Name',
)

print(spec)

Output:

// @generated by argparse-usage from Python argparse

name "My CLI"
bin "mycli"
version "1.0.0"
author "Your Name"
about "My CLI tool"

arg "<files>..." help="Files to process" var=#true var_min=1

flag "-v --verbose" help="Increase verbosity" default="0" count=#true
flag "-f --force" help="Force operation" default=#false

cmd build {
  // options
}

cmd test {
  // options
}

Generating Documentation

Save the spec and use the usage CLI to generate documentation:

# Save spec to file
python mycli.py --usage-spec > mycli.usage.kdl

# Generate markdown documentation
usage generate markdown --file mycli.usage.kdl --out-file README.md

# Generate shell completions
usage generate completion bash mycli --file mycli.usage.kdl > mycli-completion.bash

Supported Features

Flags (optional arguments)

argparse action usage spec mapping
action='store_true' flag "--force" default=#false
action='store_false' flag "--quiet" default=#true
action='count' flag "-v --verbose" count=#true
nargs='*' flag "--files..." var=#true
nargs='+' flag "--tags..." var=#true var_min=1
choices=[...] flag "--format" { arg "<format>" { choices "json" "yaml" } }

Arguments (positional)

argparse nargs usage spec mapping
nargs=None (default) arg "<file>"
nargs='?' arg "[file]"
nargs='*' arg "[files]..." var=#true
nargs='+' arg "<files>..." var=#true var_min=1
nargs=N arg "<coords>..." var_min=N var_max=N

Parent Parsers

Inheritance from parent parsers is supported:

parent_parser = argparse.ArgumentParser(add_help=False)
parent_parser.add_argument('-v', '--verbose', action='count')

parser = argparse.ArgumentParser(parents=[parent_parser])

Subcommands

Nested subcommands are fully supported:

subparsers = parser.add_subparsers()
add_cmd = subparsers.add_parser('add')
add_cmd.add_argument('name')

Output:

cmd add {
  arg "<name>"
}

API Reference

generate(parser, name=None, version=None, author=None, bin_name=None)

Generate a usage spec KDL string from an ArgumentParser.

Parameters:

  • parser (ArgumentParser): The ArgumentParser instance to convert
  • name (str, optional): Friendly name for the CLI (defaults to parser.prog)
  • version (str, optional): Version of the CLI
  • author (str, optional): Author of the CLI
  • bin_name (str, optional): Binary name (defaults to parser.prog)

Returns:

  • str: KDL-formatted usage spec string

Examples

See the examples/ directory for complete examples:

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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

argparse_usage-0.1.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

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

argparse_usage-0.1.0-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file argparse_usage-0.1.0.tar.gz.

File metadata

  • Download URL: argparse_usage-0.1.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for argparse_usage-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9df8ca6950099e3af65e192bc7fa343a4ce0bf6352317cbc1f7c262dfe173e96
MD5 ce669f42c0165baf2be3214fd066faff
BLAKE2b-256 1c22f616a6c6898babccd61928e0d64fa366a08d3cbbecdd4e908f2a1b4ef2a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for argparse_usage-0.1.0.tar.gz:

Publisher: release.yml on acidghost/argparse-usage

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file argparse_usage-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: argparse_usage-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for argparse_usage-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0866b133cd4a3dec26bb7021afd97465c1910131fd17f469b9069a165fddb8e0
MD5 72ff1cd8f66d51f1ccc9b1eeca187698
BLAKE2b-256 51af39ddf16751978ad0d3745cfd49b1d51ffdf350b351c860bb51285dd01d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for argparse_usage-0.1.0-py3-none-any.whl:

Publisher: release.yml on acidghost/argparse-usage

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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