PyInquirer icon indicating copy to clipboard operation
PyInquirer copied to clipboard

A Python module for common interactive command line user interfaces

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

I have tried to use the example here: ``` from __future__ import print_function, unicode_literals from PyInquirer import prompt, print_json questions = [ { 'type': 'input', 'name': 'first_name', 'message': 'What\'s your...

Adjusting a `Separator` style, by changing the default colour: ![style](https://user-images.githubusercontent.com/20825496/183542273-5ee09c62-e3cf-4d00-a579-5821d46a540e.jpg) ![separator](https://user-images.githubusercontent.com/20825496/183542078-2a79ccec-2020-4bd7-9fa2-480a5cb26a8f.jpg) Executing the program doesn't have the `Separator` colour change, rather, the `Separator` retains its default colour: ![no_colour](https://user-images.githubusercontent.com/20825496/183542121-cf4c6d25-6b04-4495-a9dc-bfc4b45e06e2.jpg)

Should be `import re` instead of `import regex`

Hey If it's possible, will be glad if you can support this version :) thanks!

I've found that if I have a prompt that is more than a line long on a list input, that every time I move my cursor up or down the...

This is the error I am getting. ![image](https://user-images.githubusercontent.com/55452780/177514628-7ff4f31d-a8af-4e23-ba64-12741c3a7b72.png) This is my styling. ![image](https://user-images.githubusercontent.com/55452780/177514686-54213a9c-870a-4051-a7f7-6c2ff08b3991.png) This one's containing the question and prompt. ![image](https://user-images.githubusercontent.com/55452780/177514966-11781348-1d18-4efd-9c67-dbe7611e2078.png) Tried going over throw the library itself, but couldn't...

Traceback (most recent call last): ``` File "D:\CSE\Programs\Selenium\run.py", line 8, in from PyInquirer import prompt, print_json File "C:\Users\soiko\.virtualenvs\Selenium-nB22m_OD\lib\site-packages\PyInquirer\__init__.py", line 6, in from prompt_toolkit.token import Token File "C:\Users\soiko\.virtualenvs\Selenium-nB22m_OD\lib\site-packages\prompt_toolkit\__init__.py", line 16, in...

According to the code, user must select at least one topping otherwise it should print 'You must choose at least one topping' then ask again but instead program prints a...

im trying to use PageSize because my list is to huge but is not working, any help please?