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 ran into a situation in which I had to get from a checkbox list not only the choices, but also their separators. This was because I had to pick...

branch: master I want to running example checkbox.py, but the style same like incorrect, ![image](https://user-images.githubusercontent.com/30338668/97100260-a8703f00-16cc-11eb-8157-fc8e75fd92df.png)

This should be enough for quick multiline answers where possibly the editor question type is too much.

I noticed the project (at master) depends on `prompt-toolkit>=3.0.0=3.0.0,

In examples/checkbox.py there is a key named 'qmark' that is set to a UTF-8 character (a question mark inside a diamond I think). In the default and custom styles provided...

On MacOS, when I click with the mouse on any item of a PyInquirer list I get a KeyError thrown; this happens both in Terminal and in iTerm2. I have...

I was wondering if it's possible to move cursor up/down-ward just like in vim or terminal? That is: `j` or `Ctrl+N` -> ↓ `k` or `Ctrl+P` -> ↑

Sometimes you type something wrong and you need to go back to the previous step. Thanks~

```python import PyInquirer answers = PyInquirer.prompt( [ { "type": "confirm", "message": "Do it:", "name": "DO_IT", "default: True, "when": lambda x: "THING" in x, } ] ) print(answers) # {} ```...