PyInquirer
PyInquirer copied to clipboard
A Python module for common interactive command line user interfaces
https://github.com/CITGuru/PyInquirer/blob/3a7af86a3fa9ea35740c45ea35f7ce3a53e182c2/PyInquirer/__init__.py#L13 Shouldn't version be ```1.0.3``` for now?
Hi there, I see that you have a TODO in the style section. Do you know when this would be ready? Because I would love to experiment with styles. BTW...
Hello, I would like to use PyInquirer inside curses. Is this possible? When i tried to use it, it prompts the questions but override the curses, i mean it clears...
Hey, I wrote an article related to this library. I really liked it let me know if you can suggest me edits. https://muhammadraza.me/2019/Creating-Interactive-CLI-App/
The pageSize property is described in the documentation, but it has no effect and doesn't seem to be mentioned anywhere in the source code.
Here's a minimal demo of the bug. ```python from PyInquirer import prompt, style_from_dict, Token, Separator custom_style_2 = style_from_dict({ Token.Separator: '#6C6C6C', Token.QuestionMark: '#FF9D00 bold', # Token.Selected: '', # default Token.Selected: '#5F819D',...
One thing that bothers me about this implementation of inquirer is how pressing y/n jumps immediately to the next prompt. I think for the last X decades we've been conditioned...
Hi! I'd like to use PyInquirer for some scripts which should be in German. It would be great if there was a configuration option to change the messages and accepted...
Say I have a list that's user created, or I'm storing options for restoring save points in my program, I need keys that can be displayed. Something like: `list =...
`ipython` (and `jupyter`) require `prompt-toolkit=2.0.0`. One cannot work with both `ipython` and `PyInquirer` because of this. (Python 3) Seems like an easy fix, not sure why the requirements are so...