Skip to main content

Python library for creating and manipulating CLIs

Project description

Tests Test Coverage Latest release BSD-3 clause license PyPI - Python Version

cltoolbox: Easy Command Line Interfaces

cltoolbox is a wrapper around argparse, and allows you to write complete CLI applications in seconds using a simple decorator.

Significant portions of this code are based on mando. The primary differences between mando and cltoolbox are:

  • cltoolbox supports automatic detection of Sphinx, Google, and Numpy docstring formats by using the docstring_parser library

  • cltoolbox supports python 3.7+

If you need support of the mando formatted docstring or python 2 you have to use mando instead of cltoolbox.

Installation

pip

pip install cltoolbox

conda

conda install -c conda-forge cltoolbox

The problem

The argparse module that comes with Python requires a programmer to duplicate information that Python can easily parse from the function signature and docstring. The cltoolbox does this for you by using decorators.

Quickstart

from cltoolbox import command, main


@command
def echo(text, capitalize=False):
    """Echo the given text."""
    if capitalize:
        text = text.upper()
    print(text)


if __name__ == "__main__":
    main()

Generated help:

$ python example.py -h
usage: example.py [-h] {echo} ...

positional arguments:
  {echo}
    echo      Echo the given text.

optional arguments:
  -h, --help  show this help message and exit

$ python example.py echo -h
usage: example.py echo [-h] [--capitalize] text

Echo the given text.

positional arguments:
  text

optional arguments:
  -h, --help    show this help message and exit
  --capitalize

Actual usage:

$ python example.py echo spam
spam
$ python example.py echo --capitalize spam
SPAM

A real example

Something more complex and real-world-ish. The code:

from cltoolbox import command, main


@command
def push(repository, all=False, dry_run=False, force=False, thin=False):
    """Update remote refs along with associated objects.

    :param repository: Repository to push to.
    :param --all: Push all refs.
    :param -n, --dry-run: Dry run.
    :param -f, --force: Force updates.
    :param --thin: Use thin pack."""

    print(
        "Pushing to {0}. All: {1}, dry run: {2}, force: {3}, thin: {4}".format(
            repository, all, dry_run, force, thin
        )
    )


if __name__ == "__main__":
    main()

cltoolbox understands Sphinx, Google, and Numpy dostrings, from which it can create short options and their help for you.

$ python git.py push -h
usage: git.py push [-h] [--all] [-n] [-f] [--thin] repository

Update remote refs along with associated objects.

positional arguments:
  repository     Repository to push to.

optional arguments:
  -h, --help     show this help message and exit
  --all          Push all refs.
  -n, --dry-run  Dry run.
  -f, --force    Force updates.
  --thin         Use thin pack.

Let’s try it!

$ python git.py push --all myrepo
Pushing to myrepo. All: True, dry run: False, force: False, thin: False

$ python git.py push --all -f myrepo
Pushing to myrepo. All: True, dry run: False, force: True, thin: False

$ python git.py push --all -fn myrepo
Pushing to myrepo. All: True, dry run: True, force: True, thin: False

$ python git.py push --thin -fn myrepo
Pushing to myrepo. All: False, dry run: True, force: True, thin: True

$ python git.py push --thin
usage: git.py push [-h] [--all] [-n] [-f] [--thin] repository
git.py push: error: too few arguments

Amazed uh? Yes, cltoolbox got the short options and the help from the docstring! You can put much more in the docstring, and if that isn’t enough, there’s an @arg decorator to customize the arguments that get passed to argparse.

Type annotations

cltoolbox understands Python 3-style type annotations and will warn the user if the arguments given to a command are of the wrong type.

from cltoolbox import command, main


@command
def duplicate(string, times: int):
    """Duplicate text.

    :param string: The text to duplicate.
    :param times: How many times to duplicate."""

    print(string * times)


if __name__ == "__main__":
    main()
$ python3 test.py duplicate "test " 5
test test test test test

$ python3 test.py duplicate "test " foo
usage: test.py duplicate [-h] string times
test.py duplicate: error: argument times: invalid int value: 'foo'

The cltoolbox supports shell autocompletion via the argcomplete package and supports custom format classes. For a complete documentation, visit https://timcera.bibucket.io/cltoolbox/.

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

cltoolbox-4.0.2.tar.gz (42.0 kB view details)

Uploaded Source

Built Distribution

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

cltoolbox-4.0.2-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file cltoolbox-4.0.2.tar.gz.

File metadata

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

File hashes

Hashes for cltoolbox-4.0.2.tar.gz
Algorithm Hash digest
SHA256 6be1d755c1628695d69bd42fbcc64feca1bbf3f2614d8d60518c7b7002c5fbe9
MD5 094fb426d6f9f0c106f29a3585b5ee41
BLAKE2b-256 c4a701545afb8681df7f7bd729176e84f96a5bde87ad9bacf59f305fe2aa295d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cltoolbox-4.0.2.tar.gz:

Publisher: pypi-package.yml on timcera/cltoolbox

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

File details

Details for the file cltoolbox-4.0.2-py3-none-any.whl.

File metadata

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

File hashes

Hashes for cltoolbox-4.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 688075b6018b8bd2c7bed1d2ea1c603bd4cff383e41efb46598c265bf0b09f10
MD5 2d129ce3614329b81d9c43ee5b536836
BLAKE2b-256 567691decfe680d1b3869ae2e4eee55cd9d2b275852bbfa5f6b0f1a50124f835

See more details on using hashes here.

Provenance

The following attestation bundles were made for cltoolbox-4.0.2-py3-none-any.whl:

Publisher: pypi-package.yml on timcera/cltoolbox

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