CLSP short for Command Line Selection Prompt, is a by fzf inspired, minimalistic, and fast to navigate single choice prompt.
Project description
CLSP
CLSP short for Command Line Selection Prompt, is a by fzf inspired, minimalistic, and fast to navigate single choice prompt.
from clsp import select
user_choice = select([1, 2, 3], info="Please pick a number:")
print("You selected:")
print(user_choice)
CLSP is designed to be user-friendly, minimal, and very easy to understand.
Due to it's search function, it supports large lists and spares the end-user unnecessary frustration.
It's especially useful if you'd like the user to choose between files, numbers, country codes, and much more.
Documentation
# CLSP can be easily imported using:
from clsp import select
# You can then show the actual prompt by calling the select function while passing a list type as the positional argument.
user_choice = select(["Choose me!", "Dare to choose me!"])
# You can navigate using the arrow key up and the arrow key down while pressing enter to confirm your selection.
You can provide additional key arguments for further configuration:
Name | Type | Description |
---|---|---|
title | STR | Information shown above the prompt. |
prompt | STR | Text in front of user input. |
search | STR | Pre-insert text into the input prompt. |
current | INT | Index as the default selection. |
rows | INT | Amount of choices at a time. |
cutoff | FLOAT | Precision of search. (0 < x < 1). |
amount_results | INT | The maximum amount of search results to return. |
highlight_color | STR | Highlight color for search (black, red, green, yellow, blue, magenta, cyan, white). |
full_exit | BOOL | Exit completely or pass None on KeyBoardInterrupt or ESC. |
ignore_warnings | BOOL | Ignore warnings. |
# The function 'select' will return a Selection object which holds following attributes:
print(f"Selected value: {user_choice.value}")
# > "Choose me!" or "Dare to choose me!"
print(f"Index: {user_choice.index}")
# > 0 or 1
if user_choice.search:
print(f"Search-Query: {user_choice.search}")
# > For example 'Dare'
print(f"Search Result: {user_choice.search_result}")
# > For example ["Dare to chose me!"]
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 Distributions
File details
Details for the file clsp-1.4.0.tar.gz
.
File metadata
- Download URL: clsp-1.4.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8db54f233788a43c66ca30e51b9fc8ad153adbff40ea898b612768255ee72edc |
|
MD5 | f58f818466fcae6eeaa40d0a08f7bcec |
|
BLAKE2b-256 | e47b3bc6fe623e2ecd4a4072ccbb50e048ad445dc1e5c7bcafbb36a6686050e7 |
File details
Details for the file clsp-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: clsp-1.4.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75bfa93dc542c94c2f1bef6b1e2812b2ff40ae276a68eb21bf6166e7f6f28d53 |
|
MD5 | 90ea453dd37adfb7bc2179db84b9f2c4 |
|
BLAKE2b-256 | 5e409494ea27f2cd42849390e1acb1e9459b4dd2b269aaf77f28a969e9a16d2e |
File details
Details for the file clsp-1.4-py3-none-any.whl
.
File metadata
- Download URL: clsp-1.4-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ab3292b51247a4e1a55fb2f7f924411b3450d5cbf68139d909e2c3eff3d2efe |
|
MD5 | 7c3e6b8f1936643856e2cff778eadd31 |
|
BLAKE2b-256 | eb475bd35c9faa46869c8320611b5120ca2562a0182baf3978707031c7db1bdd |