-
Notifications
You must be signed in to change notification settings - Fork 25
RawlistPrompt
This page is deprecated, documentation moved to: https://inquirerpy.readthedocs.io/
A list prompt with automatic number shortcut applied.
Each choice will have a number prepend in front of it. You can use this number as a shortcut key to jump to the choice or just use the normal up/down keybindings to navigate. Checkout Keybinding documentation for more information.
class RawlistPrompt(BaseListPrompt):
def __init__(
self,
message: Union[str, Callable[[SessionResult], str]],
choices: Union[Callable[[SessionResult], List[Any]], List[Any]],
default: Any = None,
separator: str = ")",
style: InquirerPyStyle = None,
vi_mode: bool = False,
qmark: str = "?",
pointer: str = " ",
instruction: str = "",
transformer: Callable[[Any], Any] = None,
filter: Callable[[Any], Any] = None,
height: Union[int, str] = None,
max_height: Union[int, str] = None,
multiselect: bool = False,
marker: str = INQUIRERPY_POINTER_SEQUENCE,
validate: Union[Callable[[Any], bool], Validator] = None,
invalid_message: str = "Invalid input",
keybindings: Dict[str, List[Dict[str, Any]]] = None,
show_cursor: bool = True,
) -> None:Classic Syntax (PyInquirer)
from InquirerPy import prompt
from InquirerPy.separator import Separator
questions = [
{
"type": "rawlist",
"choices": [
"Apple",
"Orange",
"Peach",
"Cherry",
"Melon",
"Strawberry",
"Grapes",
],
"message": "Pick your favourites:",
"default": 3,
"multiselect": True,
"transformer": lambda result: ", ".join(result),
"validate": lambda result: len(result) > 1,
"invalid_message": "Minimum 2 selections",
},
{
"type": "rawlist",
"choices": [
{"name": "Delivery", "value": "dl"},
{"name": "Pick Up", "value": "pk"},
Separator(line=15 * "*"),
{"name": "Car Park", "value": "cp"},
{"name": "Third Party", "value": "tp"},
],
"message": "Select your preferred method:",
},
]
result = prompt(questions)Alternate Syntax
from InquirerPy import inquirer
from InquirerPy.separator import Separator
fruit = inquirer.rawlist(
message="Pick your favourites:",
choices=[
"Apple",
"Orange",
"Peach",
"Cherry",
"Melon",
"Strawberry",
"Grapes",
],
default=3,
multiselect=True,
transformer=lambda result: ", ".join(result),
validate=lambda result: len(result) > 1,
invalid_message="Minimum 2 selections",
).execute()
method = inquirer.rawlist(
message="Select your preferred method:",
choices=[
{"name": "Delivery", "value": "dl"},
{"name": "Pick Up", "value": "pk"},
Separator(line=15 * "*"),
{"name": "Car Park", "value": "cp"},
{"name": "Third Party", "value": "tp"},
],
).execute()REQUIRED
The question message to display/ask the user.
When providing as a function, the current prompt session result will be provided as a parameter. If you are using the alternate syntax (i.e. inquirer), put a dummy parameter (_) in your function.
from InquirerPy import inquirer
def get_message(_) -> str:
message = "Name:"
# logic ...
return message
result = inquirer.rawlist(message=get_message, choices=[1, 2, 3]).execute()Note: for rawlist, choices cannot exceed length of 9.
REQUIRED
A list of choices for user to select.
When providing as a function, the current prompt session result will be provided as a parameter. If you are using the alternate syntax (i.e. inquirer), put a dummy parameter (_) in your function.
Each choice can be either any value that have a string representation (e.g. can str(value)), or it can be a dictionary which consists of the following keys.
- name: (Any) The display name of the choice, user will be able to see this value.
- value: (Any) The value of the choice, can be different than the
name, user will not be able to see this value.
Choice can also be a Separator instance, which can yields visual effect of separating groups of choices. Visit the documentation on Separator
for more details.
The default value of the prompt. This will be used to determine where the current highlighted choice is. It can be either a value or a callable
When providing as a function, the current prompt session result will be provided as a parameter. If you are using the alternate syntax (i.e. inquirer), put a dummy parameter (_) in your function.
The default value for rawlist can be three types of value:
- shortcut index: (int) default value can be an integer between 1-9 and the highlighted choice will be set to that choice.
- choice: (Any) value can also just be a choice if the choice is not in a dictionary form.
- chocie["value"]: (Any) if providing as a dictionary, default value should match one of the
choice["value"].
This value can change the UI appearance between the index number and choice. By default, the separator
is ).
? Question: 1█
1) choice1
2) choice2If you are suing classic syntax (i.e.
style), there's no need to provide this value sincepromptalready sets the style, unless you would like to apply different style for different question.
An InquirerPyStyle instance. Use get_style to retrieve an instance, reference Style documentation for more information.
If you are suing classic syntax (i.e.
prompt), there's no need to provide this value sincepromptalready sets sets this value, unless you would like to applyvi_modeto specific questions.
Enable vim keybindings for the rawlist prompt. It will change the up navigation from ctrl-p/up to k/up and down navigation from ctrl-n/down to j/down.
Checkout Keybindings documentation for more information.
The question mark symbol to display in front of the question. By default, the qmark is ?.
? Question1
? Question2The pointer symbol which indicates the current selected choice. Reference Style for detailed information on prompt components.
The default symbol for rawlist is a space, meaning the pointer is not visible. Checkout the demo in Example.
? Question: 2█
1) choice1
2) choice2
3) choice3Optionally provide some instruction to the user such as navigation keybindings or how many choices they should select. This will be displayed right after the question message in the prompt.
Note:
filterfunction won't affect the answer passed intotransformer,filterwill manipulate thechoice["value"]while thetransformerfunction will manipulate thechoice["name"].
A callable to transform the result. This is visual effect only, meaning it doesn't affect the returned result, it only changes the result displayed in the prompt.
The value provided to the transformer is name of a choice (choice["name"]) or a list of name of the choices. This means
that the value may be string even if the choices only consists of other types. Reference the following example.
result = inquirer.rawlist(
message="Select one:", choices=[1, 2, 3], default=2
).execute() # UI -> ? Select one: 2
result = inquirer.rawlist(
message="Select one:",
choices=[1, 2, 3],
default=2,
transformer=lambda result: int(result) * 2,
).execute() # UI -> ? Select one: 4A callable to filter the result. Different than the transformer, this affects the actual
returned result but doesn't affect the visible prompt content.
The value provided to the filter is the value of a choice (choice["value"]) or a list of value of the choices.
result = inquirer.rawlist(
message="Select one:", choices=[1, 2, 3], default=2
).execute() # result = 2
result = inquirer.rawlist(
message="Select one:",
choices=[1, 2, 3],
default=2,
filter=lambda result: result * 2,
).execute() # result = 4Note: for a better experience, setting the
max_heightis the preferred way of specifying the height.max_heightallow the height of the prompt to be more dynamic, prompt will only take as much space as it needs. When reaching max_height, user will be able to scroll.
Set the height of the rawlist prompt. This parameter can be used to control
how much height the prompt should take. The height parameter will set the prompt
height to a fixed value no matter how much space the content requires.
When content is less than the height, height will be extended to the specified height even if the content doesn't require that much space leaving areas blank.
When content is greater than the height, user will be able to scroll through the prompt when navigating up/down.
The value of height can be either a int or a string. An int indicates an exact value in how many lines
in the terminal the prompt should take. (e.g. setting height to 1 will cause the prompt to only display 1 choice at a time).
A str indicates a percentile in respect to the entire visible terminal.
The following example will only display 2 choices at a time, meaning only the choice 1 and 2 will be visible.
The choice 3 will be visible when user scroll down.
result = inquirer.rawlist(
message="Select one:",
choices=[1, 2, 3],
default=2,
height=2
).execute()The following example will cause the rawlist prompt to take 50% of the entire terminal.
result = inquirer.rawlist(
message="Select one:",
choices=[1, 2, 3],
default=2,
height="50%" # or just "50"
).execute()The default max_height for all prompt is "60%" if both height and max_height is not provided.
This value controls the maximum height the prompt can grow. When reaching the maximum height, user will be able to scroll.
The value of max_height can be either a int or a string. An int indicates an exact value in how many lines
in the terminal the prompt can take. (e.g. setting height to 1 will cause the prompt to only display 1 choice at a time).
A str indicates a percentile in respect to the entire visible terminal.
The following example will let the rawlist prompt to display all of its content unless the visible terminal is less 10 lines in which
9 * 0.5 - 2 is not enough to display all 3 choices, then user will be able to scroll.
result = inquirer.rawlist(
message="Select one:",
choices=[1, 2, 3],
default=2,
max_height="50%" # or just "50"
).execute()Enable multiple selection of the rawlist prompt. This enables the keybindings such as tab and shift-tab to select more
choices. Visit Keybinding for detailed information on keybindings.
Setting this value to True also change the result from a single value to a list of values.
A symbol indicating the selected/marked choices. When a choice is selected using keybindings such as tab or space, this
symbol will be displayed between the pointer and choice. Reference Style for more details
on prompt components.
The default symbol is an unicode ❯.
? Question: 3█
❯1) choice1
❯2) choice2
3) choice3Provide the validator for this question. Checkout Validator documentation for full details.
An effective way of using validator against a rawlist prompt would be checking and enforcing the minimum choices that's required to be selected in
a multiselect scenario.
Configure the error message to display to the user when input does not meet compliance.
If the validate parameter is a Validator instance, then skip this parameter.
Provide a dictionary of custom keybindings to apply to this prompt. For more information of keybindings, reference Keybinding section.
By default, InquirerPy will display cursor at the end of the rawlist prompt. Set to False if you prefer
to hide the cursor.
Prompts
