Skip to main content

Writing argparse-based command line applications can become tedious, repetitive, and difficult to do right. Relax and let this library free you from that burden.

Project description

Gitter

recline

Writing argparse-based command line applications can become tedious, repetitive, and difficult to do right. Relax and let this library free you from that burden.

This library helps you quickly implement an interactive command-based application in Python.

Documentation First

We all know that writing documentation is very important and yet it can easily become and afterthought or a nice to have if we're not diligent. This is often because it means duplicating a piece of your implementation in words, effectively writing the same thing twice. Recline strives to deduplicate this work by taking a documentation first attitude where your documentation becomes the implementation without additional work from you.

Interactive

The default mode is to run a REPL interface where a prompt is given to the user, the user types one of the available commands, the application processes it, displays the result, and then control is returned to the user once more.

But if your user isn't expected to or doesn't always want to run multiple commands, you also get a more traditional command-line interface for free.

Command-based

The application will be command based. Each command will have one or more words that identify the command. It may also have one or more arguments that augment or vary the action that command will take.

Batteries included

While the library is designed to be easy to implement for simple or small applications, it also comes with full power features for larger use cases including:

  • Tab completion
  • Input verification
  • Output formatting
  • Debugger integration

Before getting started

Some things to consider and prepare before you can use this library.

Software requirements

1. Python 3.9 or later

Installing and importing the library

You can install the package from pypi using the pip utility:

pip install recline

You can then import the library into your application:

import recline

Quick Start

After installing the package, you can get started with a few lines in hello.py:

import recline

@recline.command
def hello(name: str = None) -> None:
    """A basic hello world

    You can greet just about anybody with this command if they give you their name!

    Args:
        name: If a name is provided, the greeting will be more personal
    """
    response = "I'm at your command"
    if name:
        response += ", %s" % name
    print(response)

recline.relax()

Interactive mode

The default mode when a recline applciation is run is an interactive style. Running our above hello.py results in the following output:

$ python hello.py
> help
Available Commands:

hello - A basic hello world You can greet just about anybody with this command if

Built-in Commands
-----------------
exit - Exit the application
help - Display a list of available commands and their short description
man - Display the full man page for a given command
> hello ?
A basic hello world You can greet just about anybody with this command if

Optional arguments:
  -name <name> If a name is provided, the greeting will be more personal
    Default: None
> hello
I'm at your command
> hello -name Dave
I'm at your command, Dave
> exit
$

Non-interactive mode

If you would like to use the application as part of a larger script, it is much easier to do in a non-interactive way. This is also possible using recline without needing to change the application. Here's an example:

$ python hello.py -c "hello -name Dave"
I'm at your command, Dave
$

See the full documentation for more advanced usages and examples

Contributing contributions welcome

You may read about the contribution process including how to build and test your changes here.

Why recline?

There are a large number of different command line libraries on PyPi and GitHub. And some of them have the same sort of decorator design. Most, however, are missing the interactive elements that recline focuses on (tab completion, command chaining, background jobs, man pages). If you're still looking for the right fit for your application and recline isn't it, you can check out these other fine projects (in no particular order):

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

recline-2024.7.1.tar.gz (60.1 kB view details)

Uploaded Source

Built Distribution

recline-2024.7.1-py3-none-any.whl (66.3 kB view details)

Uploaded Python 3

File details

Details for the file recline-2024.7.1.tar.gz.

File metadata

  • Download URL: recline-2024.7.1.tar.gz
  • Upload date:
  • Size: 60.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for recline-2024.7.1.tar.gz
Algorithm Hash digest
SHA256 67d581739a575ac6f880388ed4d815375eee6bfc9f43b062be5e91a258cc4e5f
MD5 89b8c6fa3240cdb1e7a4e37ef7aae0e6
BLAKE2b-256 f23d8502fb626bc0ca6c359f2a6ba6625698c86dc039467b14a7259bce2cbcbc

See more details on using hashes here.

File details

Details for the file recline-2024.7.1-py3-none-any.whl.

File metadata

  • Download URL: recline-2024.7.1-py3-none-any.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for recline-2024.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 54683a0c653b0336fd15133e28591abc713649ab374927c66defecf755f89582
MD5 363bc6164b8c1209ec4029aa8f0e9981
BLAKE2b-256 6f5acbdd209d896517e6c50ed2bb058c0beffe4d0c3fbc6e414d03fc724fc622

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