Skip to main content

CLI generator.

Project description

pipeline status coverage report python versions

Declinate

Declinate is a command line interface generator. It is a development tool that parses function type annotations and docstrings to generate Python CLIs:

  • It uses builtin language features to describe CLIs.

  • Declinate is not a runtime dependency, it compiles to vanilla Python argparse calls during development.

  • Generated CLIs use lazy imports, resulting in extremely fast startup time.

  • Command completion for Bash and Zsh are added by default.

Getting started

Declinate is published on PyPI and does not have any special dependencies. Simply install with pip:

pip install declinate

The package installs the declinate command to generate a CLI for a python package:

# Print python code to stdout.
declinate generate example_pkg

# Write cli.py module in example_pkg package.
declinate generate -w example_pkg

Of course, declinate’s own CLI is “self-hosting” and can recreate itself:

declinate generate declinate

Declinate expects the python package to declare its command and subcommands in a module named declinate.py. Here is how declinate’s own “check” subcommand is declared:

def check(package: str) -> int:
    """Check if generated cli is up to date.

    Args:
        package: Name of the Python package.

    Returns:
        0 if success.

    """
    if res := check_package(package):
        print(res)
        return 1
    return 0

Take a closer look at the different example CLIs in the tests package that demonstrate the various features.

Documentation

Read the documentation for further information.

Contributing

Thank you for considering to contribute to declinate.

To submit issues or create merge requests please follow the instructions provided in the contribution guide.

By contributing to declinate you accept and agree to the terms and conditions laid out in there.

Development

Clone the repository and setup your local checkout:

git clone https://gitlab.com/ternaris/declinate.git

cd declinate
python -m venv venv
. venv/bin/activate

pip install -r requirements-dev.txt
pip install -e .

This creates a new virtual environment with the necessary python dependencies and installs declinate in editable mode. The declinate code base uses pytest as its test runner, run the test suite by simply invoking:

pytest

To build the documentation from its source run sphinx-build:

sphinx-build -a docs public

The entry point to the local documentation build should be available under public/index.html.

Support

Professional support is available from Ternaris.

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

declinate-0.0.2.tar.gz (51.8 kB view hashes)

Uploaded Source

Built Distribution

declinate-0.0.2-py3-none-any.whl (20.1 kB view hashes)

Uploaded Python 3

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