Metadata-Version: 2.4
Name: bare-cli
Version: 1.0.1
Summary: May your CLI code be semantic and your text output beautifully bare.
Author-email: Jamison Griffith <jamison.griffith@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/jamogriff/bare-cli
Project-URL: Documentation, https://github.com/jamogriff/bare-cli/blob/main/README.md
Project-URL: Source, https://github.com/jamogriff/bare-cli
Project-URL: Issues, https://github.com/jamogriff/bare-cli/issues
Keywords: cli,color,colors,terminal,console,ansi,style,styles,text,command-line,formatting
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
Requires-Dist: colorama>=0.4.6
Dynamic: license-file

# BareCLI

May your CLI code be semantic and your text output beautifully bare.
![A demo of BareCLI](https://raw.githubusercontent.com/jamogriff/bare-cli/refs/heads/1.0.0/screenshot.png "May your CLI code be semantic and your text output beautifully bare.")

BareCLI is a slim Python package designed to keep your CLI code semantic
by providing beautiful text output styling. BareCLI features a status sidebar
on the left so an entire execution of a program can be quickly verified at a glance.

BareCLI's API is basically lifted from [Symfony's Command style helpers](https://symfony.com/doc/current/console/style.html).
The aesthetic is inspired by systemd's service log that is displayed
when some Linux distros perform a system shutdown.

## Usage

Install the package with `pip` or `uv`:
```
pip install bare-cli  //  uv add bare-cli
```

Import the following and construct a BareCLI instance
with an optional accent Color:
```
from bare_cli import BareCLI, Color, InvalidChoiceError

io = BareCLI() # default accent color
io = BareCLI(Color.CYAN) # use desired accent color
```

### Text Output Methods

#### io.title()

Display a title in accent color sandwiched by newlines.

#### io.info()

Display a blue info status sidebar and a main content message.

```
io.info(f"Process finished in {time} ms")

# Outputs the following:
[ INFO ] .. Process finished in 102 ms
```

#### io.success()

Display a green success status sidebar and a main content message.

```
io.success("We did it!")

# Outputs the following:
[ OK ] .... We did it!
```

#### io.error()

Display a red error status sidebar and a main content message.

```
io.error(f"Process failed with error code {code}")

# Outputs the following:
[ ERROR ] . Process failed with error code 422
```

### User Input Methods

All user input method statuses (i.e. the INPUT in the sidebar) are displayed in the accent color.

#### io.ask()

Prompt the user for input. Basically just wraps Python's `input()` function.

```
answer: str = io.ask("How are you?")
```

#### io.confirm()

Prompt the user to answer a boolean question.
The default value can be toggled by using the `permissive_by_default`
kwarg, so the user can just hit the Enter key instead of typing in an answer.

```
answer: bool = io.confirm("Do you like programming?, permissive_by_default=False")

# Outputs the following:
[ INPUT ] . Do you like programming? (yes/no) [no]:
```

#### io.choice()

Prompt the user to choose a value from a list of choices and return a tuple with chosen index and value.

The default behavior for this method is to give the user multiple chances
to choose a valid option and in the case they don't choose one BareCLI will exit the program.
This behavior can be changed by setting the `allow_chances` kwarg to `False` to not allow multiple
chances. Likewise, setting the `exit_early` kwarg to `False` will instead
raise an `InvalidChoiceError` so you can handle how you want.

```
choice: tuple[int, str] = io.choice("What food to do you like?", ["Hot dogs", "Noodes", "Pickles"])
```

