Skip to main content

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

Project description

=======
Clinner
=======

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

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


Quick start
===========

1. Install this package using pip:

.. code:: bash

pip install clinner

2. Create a command

.. code:: python

from clinner.command import command

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

3. Create a main file:

.. code:: python

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:

func
Function that will be called when command would be executed.

command_type
Type of the command, could be a *bash* or *python* command.

args
Parser arguments for this command.

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:

.. code:: python
@command
def foobar(bar):
pass

Or specifying the type:

.. code:: python
@command(command_type=Type.python)
def foobar(bar):
pass

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

.. code:: python
@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.

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_``. Again, e.g: ``clinner.mixins.VaultMixin``.

4. Load settings module from **CLINNER_SETTINGS** environment variable. More details below.


Settings
========

Clinner settings can be specified through **CLINNER_SETTINGS** environment variable or using ``-s`` or ``--settings``
command line flags during invocation. The format to specify settings module or class should be either ``package.module``
or ``package.module:Class``.

Default Arguments
-----------------

Default arguments for commands. Let a command ``foo`` declared:

.. code:: python
default_args = {
'foo': ['-v', '--bar', 'foobar'],
}

Vault
-----

Vault arguments to retrieve secrets from this service and inject them as environment variables:

.. code:: python
vault = {
'url': 'http://vaulturl',
'secrets_path': 'vault_secrets_path_to_retrieve',
'app_id_path': '/path/to/app_id_file',
'user_id_path': '/path/to/user_id_file',
}

Example
=======

Full code example:

.. code:: python
import os
import shlex
import sys

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


@command(command_type=CommandType.bash
args=(('-i', '--input'),
('-o', '--output')))
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)
def bar(*args, **kwargs):
"""Do a bar."""
return True


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

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-0.3.2.tar.gz (14.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-0.3.2-py2.py3-none-any.whl (17.4 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for clinner-0.3.2.tar.gz
Algorithm Hash digest
SHA256 543eb0d2d7943604930ba2edb7707037ccf992b3b8a191c7729260b271f48bb0
MD5 6e84b386f67c87832ca6aa0db120b8b7
BLAKE2b-256 4fcf7bdcbbfbdb086c47e0d2f721e29e96b6ef0c35c0cc2915325d0feb43903a

See more details on using hashes here.

File details

Details for the file clinner-0.3.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for clinner-0.3.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ed134cf1fc3800720550d834303deecc45bc32f6880f2055917624cd3f0f80ae
MD5 e846a793944ef4c09308ed058213b9ce
BLAKE2b-256 d8c034e10f43c7a8f3d0046e83ccae6922d238c044ab96ffa0a033473ab4eff0

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