Skip to main content

Command Line Interface builder that helps creating an entry point for your application.

Project description

Clinner

Build Status codecov PyPI version

  • Version: 1.12.0
  • Status: Production/Stable
  • Author: José Antonio Perdiguero López

Clinner is a library that provides some useful tools to create command line interfaces for your application

Check Clinner docs.

Features

Can define commands in multiple way:

  • List of shell commands such as ["docker build", "docker push"].
  • Python functions.
  • Python async functions.

Clinner provides a set of commands ready to use like:

  • Black.
  • Flake8.
  • Isort.
  • Nosetest.
  • Prospector.
  • Pytest.
  • Sphinx.
  • Tox.

Hooks for injecting variables or add global arguments to your script.

Quick start

Install this package using pip:

pip install clinner

Create a command

from clinner.command import command

@command
def foo(*args, **kwargs):
    return True

Create a main file:

from clinner.run.main import Main

if __name__ == '__main__':
    sys.exit(Main().run())

Commands

Commands are declared using a decorator to register given functions. Commands are functions with the follow parameters:

  1. func: Function that will be called when command would be executed.
  2. command_type: Type of the command, could be a bash or python command.
  3. args: Parser arguments for this command.
  4. parser_opts: Command subparser's keywords, such as description.

This decorator allows to be used as a common decorator without arguments, where default type (python) will be used:

@command
def foobar(*args, **kwargs):
    pass

Or specifying the type:

@command(command_type=CommandType.PYTHON)
def foobar(*args, **kwargs):
    pass

But also is possible to provide command line arguments, as expected by argparse.ArgumentParser.add_argument:

@command(args=((('-f', '--foo'), {'help': 'Foo argument that does nothing'}),                   # Command argument
               (('--bar',), {'action': 'store_true', 'help': 'Bar argument stored as True'})),  # Another argument
         parser_opts={'title': 'foobar_command', 'help': 'Help for foobar_command'})            # Parser parameters
def foobar(*args, **kwargs):
    pass

All commands will be registered in a command register that can be accessed through command.register. Each entry in this register is a dictionary with the fields declared at the beginning of this section.

Shell command

Example of running ls -la shell command.

@command(command_type=CommandType.SHELL)
def lsla(*args, **kwargs):
    return [shlex.split("ls -la")]

Python function

Run a python function.

@command
def foo(*args, **kwargs):
    return "foo"

Python async function

Run a python async function.

@command
async def bar(*args, **kwargs):
    await asyncio.sleep(1)
    return "bar"

Main

A main class is defined to ease the creation of command line applications. This class follows the process:

  1. Create a parser using argparse.ArgumentParser for the application:

    a) Calling all add_arguments(parser) methods from all super classes, e.g: clinner.mixins.HealthCheckMixin.

    b) Addding a subparser for each command with their specific arguments.

  2. Parse arguments using the argument parser created previously.

  3. Inject variables into environment calling all super classes methods whose name starts with inject_.

Examples

Some Clinner examples.

Simple Main

Example of a simple main with two defined commands foo and bar.

#!/usr/bin/env python
import shlex
import sys

from clinner.command import command, Type as CommandType
from clinner.run.main import Main


@command(command_type=CommandType.SHELL,
         args=(('-i', '--input'),
               ('-o', '--output')),
         parser_opts={'help': 'Foo command'})
def foo(*args, **kwargs):
    """List of foo commands"""
    ls_cmd = shlex.split('ls')
    wc_cmd = shlex.split('wc')
    wc_cmd += [kwargs['input'], kwargs['output']]

    return [ls_cmd, wc_cmd]


@command(command_type=CommandType.PYTHON,
         parser_opts={'help': 'Bar command'})
def bar(*args, **kwargs):
    """Do a bar."""
    return True


if __name__ == '__main__':
    sys.exit(Main().run())

Builder Main

Example of main module with build utilities such as unit tests, lint, sphinx doc, tox and dist packaging:

#!/usr/bin/env python
import sys

from clinner.run import Main


class Build(Main):
    commands = (
        'clinner.run.commands.black.black',
        'clinner.run.commands.flake8.flake8',
        'clinner.run.commands.isort.isort',
        'clinner.run.commands.pytest.pytest',
        'clinner.run.commands.sphinx.sphinx',
        'clinner.run.commands.tox.tox',
    )


if __name__ == '__main__':
    sys.exit(Build().run())

Check Clinner docs to see more advanced examples.

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

clinner-1.12.0.tar.gz (26.3 kB view details)

Uploaded Source

Built Distribution

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

clinner-1.12.0-py3-none-any.whl (74.9 kB view details)

Uploaded Python 3

File details

Details for the file clinner-1.12.0.tar.gz.

File metadata

  • Download URL: clinner-1.12.0.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for clinner-1.12.0.tar.gz
Algorithm Hash digest
SHA256 cf71c860262e56326651b54700fb2e73360ce3cc14de3caded67f2501b8d6c7e
MD5 85a4d80b38c51ac15a158fb3fe320a14
BLAKE2b-256 d1836e4d65d52b9a913ee0807e47e4b685159a3097aa5402444da5bca09e8ddd

See more details on using hashes here.

File details

Details for the file clinner-1.12.0-py3-none-any.whl.

File metadata

File hashes

Hashes for clinner-1.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4ca0d96068f0db00bcd2d14b1bfe6425b82ec4b576e5f08cd5ab16c9ef2e9a19
MD5 b2e2cd476cc0e1deaa66cac6a33640c4
BLAKE2b-256 432d4708953a7dd8fa9a9988464283a87530fa4508e6ac49c743c24fbd40c3ab

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