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

ERROR: Command errored out with exit status 1: command: 'c:\users\abhis\appdata\local\programs\python\python35\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\abhis\\AppData\\Local\\Temp\\pip-install-uy67tyzt\\regex\\setup.py'"'"'; __file__='"'"'C:\\Users\\abhis\\AppData\\Local\\Temp\\pip-install-uy67tyzt\\regex\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\abhis\AppData\Local\Temp\pip-record-hrok6gsy\install-record.txt' --single-version-externally-managed --compile...

The documentation says that the "message" attribute of a question can be a string or a function that takes the current answers and returns a string. That doesn't appear to...

Hi there, Many thanks for merging the recent PRs. We're currently using the `master` branch until a release goes out so I noticed the updates pretty quickly. After patching our...

Ran into this packaging 1.7.2.7/6 This is largely a local issue but very strange. ``` File "/home/rob/.local/lib/python3.6/site-packages/cookiecutter/operators/checkbox.py", line 8, in from PyInquirer import prompt File "/home/rob/.local/lib/python3.6/site-packages/PyInquirer/__init__.py", line 6, in from...

Hello, I'm trying to write a custom validator using a class. The problem is that I need to compare the value in the validate() method with an attribute of the...

Perfect example, ironically, is pizza toppings! E.g. you might want double bacon and single chicken or something. Suggest enhancement to enable users to select quantities of checked items. Example implementation...

Hi! I believe I've already seen this issue here but can't find it. Would it be possible to include a parameter for the "type: confirm" to not automatically react on...

I often want to perform an action as a result of a prompt choice/input: For example: ```python q = { 'type' : 'list, 'name' : 'action', 'message' : 'choose an...

docstring says ``` * run example by typing `python example/checkbox.py` in your console ``` should be ``` * run example by typing `python example/rawlist.py` in your console ```

I use the following array for choices: ``` [, {'name': 'nvme0n1', 'value': 'node-0:nvme0n1', 'checked': True}, {'name': 'nvme1n1', 'value': 'node-0:nvme1n1', 'checked': True}, {'name': 'nvme2n1', 'value': 'node-0:nvme2n1', 'checked': True}, {'name': 'nvme3n1', 'value':...