Skip to main content

CLIEP Python Console Entrypoint Library

CLIEP (CLI Entrypoint) is a small, no dependency system to streamline interfacing with TTYs and consoles, using a primary entrypoint function via decorators with optional automatic argument parsing.

Installation:

pip3 install cliep

It is recommended you use a virtualenv for individual project's dependencies. You can also add cliep to your requirements.txt for larger projects.

Documentation:

The cliep namespace contains two important elements: entrypoint, and Argument.

entrypoint:
	arg_map - the list of arguments to parse and send to the entrypoint.
	help_func - function to handle printing the help page on err/trigger. Uses builtin help generator by default.
	help_trigger - The flag to trigger help off of, defaults to '-h'. NOTE: this overrides any arguments that share the same name.

Entrypoints are also required to type hint that they return either int or None, otherwise the entrypoint will not be allowed to run.

Argument:
	shortname: str - Required, specifies the shorthand command name ('-a', '-b', etc).
	longname: str - Optional, allows for a second proper command name ('--append').
	is_flag: bool - Specifies whether or not the argument is expecting a value, defaults False.
	is_required: bool - Specifies whether or not this argument must be found, defaults False.
	default: any - Specifies a default value for optional arguments that are not supplied.

These two elements make up the entirety of the use case CLIEP hopes to solve. This allows for auto-parsing of arguments and feeding them into the specified entrypoint.

An important note: When using Arguments the values of each Argument are passed into the entrypoint in the order they are added. e.g. arguments a, b, c will be sent to the entrypoint as a, b, c. Furthermore, arguments use the type hinting of the entrypoints parameters to typecast before sending. So type hints are required for custom argument parsing.

An example of this is as follows:

@entrypoint([Argument('-a')])
def main(a: int) -> int:
	return a

This example will only work as long as the a parameter is type hinted.

This extensive use of type hinting is present in order to remove a guessing game of what is being passed back and forth, and to lower possible points of failure.

If bad data is supplied to a type casted argument (e.g. str -> int), then the value will be set to None, and forwarded to the entrypoint. If the argument that failed to be coerced is a required field, the help message will be displayed to the user. This is so that the proper entrypoint can handle informing the user of bad (or no) input, or manually setting a default value. Although this may not be the most elegant solution, this allows for proper error handling in cases where the type cast is wanted or required.

If a type hint in the entrypoint is list or dict (or the generic counterparts), CLIEP will raise a NotImplementedError due to complications with Pythons preprocessing or argv.

In cases where you want to override the default help output, help_func should expect:

error: str = Error text in case of missing required field.
args: List[Argument] - The list of argument objects.
trigger: str - The trigger phrase that is used to trigger the help screen.

Examples:

In it's most basic form, an entrypoint looks like this:

from cliep import entrypoint

@entrypoint
def main(argv, argc) -> int:
    return 0

You see without custom argument parsing, the entrypoint will just forward the argv and len(argv) to the entrypoint. Another important thing to notice is the use of type hinting. CLIEP uses type hinting to enforce returns to the TTY. As such, an entrypoint function must either type hint a return of type "int" or type "None".

A more complicated example could look like this:

from cliep import entrypoint, Argument

@entrypoint([
    Argument('-f', '--flag', is_flag=True),
    Argument('-i', '--input', is_required=True),
])
def main(flag: bool, user_input: int) -> int:
    print(flag, user_input)
    return user_input or 0

In this example we further the use of type hinting, as the Arguments in the list are passed to the entrypoint function in order of their place in the list, and as the values of each Argument are gathered, they use the type hints in the main function declaration to know what to type cast too. Because of this, in an entrypoint function all arguments must have a type hint.

Release files for cliep 1.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for cliep 1.0.3
File Interpreter ABI Platform
cliep-1.0.3-py3-none-any.whl Python 3 none any Details

Release files / cliep-1.0.3-py3-none-any.whl

Download URL cliep-1.0.3-py3-none-any.whl
Size 17.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
13f8fa4c50ee07ba2f79088e6a9e70febab03fd2701522e904b055e54e7b6079
BLAKE2b-256 checksum
How to use checksums
99439c39d61856e98d781fcdd24e61efea0a41eaf5f2b43f25c91216b1b1dc4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

Release history Release notifications | RSS feed

This release

1.0.3 This release

1 release file

1.0.2

2 release files

1.0.1

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page