PyInquirer
PyInquirer copied to clipboard
A Python module for common interactive command line user interfaces
Can't hide the options once they have been revealed. Recommended fix in /prompts/expand.py for the help_choice function: ``` def help_choice(event): ic._help_active = not ic._help_active ```
It seems to be impossible to raise a validation error on type "checkbox". Here is the output I get when I run the "checkbox.py" example, and try to trigger "'You...
Travis build fails safety check due to outdated pipenv. ``` $ safety check ... | REPORT | | checked 52 packages, using default DB | +============================+===========+==========================+==========+ | package | installed...
PyInquirer/examples/editor.py does not work :( ``` (newcli-dev) ➜ ~ python cli.py Traceback (most recent call last): File "cli.py", line 27, in answers = prompt(questions, style=custom_style_2) File "/Users/igor/PythonEnvs/newcli-dev/lib/python3.7/site-packages/PyInquirer/prompt.py", line 67, in...
The dependency pygments version 2.6.0 is python3 only. So you cant install the current version of PyInquirer on python 2.7 because it has Pygments>=2.2.0 as dependency. Pygments 2.5.2 still has...
Hi together, I have just tried a short example and I encountered the following problem:  What I am doing wrong?
Not having j/k do up/down is confusing to me. Right now it's just [hardcoded](https://github.com/CITGuru/PyInquirer/blob/master/PyInquirer/prompts/checkbox.py#L205) to up/down keys. Either making j/k work by default, or maybe add something like `vi_style_movmenet=true` as...
How can I change color on different questions? ```python from colorata import Fore choice = prompt([ { 'name': 'start', 'type': 'list', 'message': 'Which pizza would you like?', 'choices': [ 'Margherita',...
Maybe adding something like: ``` { 'type': 'password', 'name': 'password', 'message': 'Your password :', 'repeat': True, } ``` Which would ask for the password again and validate if they are...
In simple terminals (TERM=dumb or TERM=unkown) without escape sequences for cursor movement the `list` type doesn't work properly (because no arrow movement is available). Is there any way to automatically...