Effortlessly create descriptive, colorized command line interfaces (CLIs) for your script collections!
Project description
Simplify script and package management by quickly creating a CLI that automatically parses arguments and returns of your functions. Get an instant understanding of your collection without diving into extensive documentation. Customize descriptions and add informative text, making script interaction easy without remembering all the details.
Install
pip install speed-cli
Basic Usage
from speed_cli import CLI
from your_package import test_func, test_func_two, test_func_three
CLI(menu=[
test_func,
test_func_two,
test_func_three
])
and that's it! With an example your_package.py
file looking like this:
def test_func():
print("K")
def test_func_two(number):
print(f"Doing some calculations with: {number}!")
def test_func_three(my_num: int = 5, my_str: str = 'fredl') -> str:
return f"{my_num**2} {my_str}"
this would give you an interactive prompt like this:
.. of course, you can always modify your CLI and make it more fancy and descriptive! Lets say i want to give the second function some more description, and add custom fields:
from speed_cli import CLI, Color, MenuEntry
red = Color('red')
CLI(color="blue",
menu=[
test_func,
MenuEntry(func=test_func_two,
title="My second test function",
description="This function is used to do this and that!",
warning=f"Be aware to pass the argument {red.colorize('number')} !!"
),
test_func_three
])
would give you:
.. you can also add default arguments for your functions:
def test_func(some_str=None, some_int=None):
print(f"K {some_str} {some_int}")
CLI(menu=[
MenuEntry(func=test_func, args=["fredi", 10])
])
.. the Color
class also allows you to simply use colored texts in your prints:
from speed_cli import Color
c = Color()
print(f"I like {c.colorize('colors')} to {c.colorize('emphasize', color='green', bold=True)} on the "
f"{c.colorize('important', color='black', background='bg_cyan')} stuff!")
gives you:
TODO:
- currently only accepts strings as arguments, conversions have to be done in underlying function; convert based on types if given
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
Built Distribution
File details
Details for the file speed_cli-0.2.0.tar.gz
.
File metadata
- Download URL: speed_cli-0.2.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.2 Linux/6.9.3-surface-2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46fd217c84b728dfa1f2663c51e1742677344fe06aa4a58b5a1dc3f534a1c7aa |
|
MD5 | d58606d3eb0e608c86febec54bfac323 |
|
BLAKE2b-256 | ddbe95e738635127f58ca8f895b34c7144e9a331abd76e60cd7994ca43e76390 |
File details
Details for the file speed_cli-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: speed_cli-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.11.2 Linux/6.9.3-surface-2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aecb363a296c89ef25238f70fc1e5e934e53756f9f97bd21474a4c407c44a7e |
|
MD5 | 7a86aefdca8537fa1ac6d457f5802be7 |
|
BLAKE2b-256 | 96a992946679f99cb18f86ff8646dfb92fda862dec893a40ce0c8c426c3b6158 |