PyInquirer icon indicating copy to clipboard operation
PyInquirer copied to clipboard

A Python module for common interactive command line user interfaces

Results 112 PyInquirer issues
Sort by recently updated
recently updated
newest added

I've peeked the definition of the question method in PyInquirer prompts in hopes of finding a way to remove the space that proceeds a message: ``` def get_prompt_tokens(cli): tokens =...

I'm currently building a Terminal menu that requires the user to be able to freely scroll throughout the Terminal to make decisions based on things that have been printed to...

Consider a case where you have many options in the checkbox type select menu. If I'm looking for a specific option I want to be able to press a keyboard...

Changed example call to expand.py instead of checkbox.py

Needed to change prompt.prompt() to just prompt() current raised an error. answers = prompt.prompt(questions, style=custom_style_3) AttributeError: 'function' object has no attribute 'prompt'

This new prompt type is just like `list` except when you type it filters the list of choices to those that match the text you have typed. I have tested...

I set up a fresh, new environment to test PyInquirer with but all examples return the following (or similar) error: ``` python checkbox.py Traceback (most recent call last): File "checkbox.py",...

AttributeError: 'function' object has no attribute 'prompt'

There is presently no code that checks if the message attribute is callable, and to call it to generate the message if so. This code fixes that and brings behavior...