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.4.tar.gz (52.3 kB view details)

Uploaded Source

Built Distribution

declinate-0.0.4-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file declinate-0.0.4.tar.gz.

File metadata

  • Download URL: declinate-0.0.4.tar.gz
  • Upload date:
  • Size: 52.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for declinate-0.0.4.tar.gz
Algorithm Hash digest
SHA256 cdfdb11dcbf1f7133fbaea67759dad1fd3962cea5f00d2175de7a1a5028a983f
MD5 7532b12d0b161141441d33f698a25216
BLAKE2b-256 b56bc6e817c045d001d00b3641e85e14b6c2ad6e967aad8a065b858a57ee0227

See more details on using hashes here.

File details

Details for the file declinate-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: declinate-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 20.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for declinate-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 298dbc0fbc4fe10509265f0bd7c6756bbe849213060c7f4764c4f385340e0787
MD5 51b0f71ecbc5600340a40eb5a1bf4438
BLAKE2b-256 da9ed048ceab88966f5d8a989573acbed23248cbd3c42d0485b803d0239285b0

See more details on using hashes here.

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