InquirerPy
InquirerPy copied to clipboard
:snake: Python port of Inquirer.js (A collection of common interactive command-line user interfaces)
I'm using the fuzzy prompt to list EC2 instances, the choices are a list of `Choice` with a value and name, the name is in this format ``` | ```...
In PyInquirer, I'm benefiting from the ability to pass the same dict into prompt() that gets returned: ```python answers = prompt(questions, answers) ``` This lets me seed initial defaults from...
I'm trying to migrate code from PyInquirer, which leans on class-based validators. Here's an example, borrowing from https://inquirerpy.readthedocs.io/en/latest/pages/validator.html: ```python #!/usr/bin/env python3 from InquirerPy import prompt from prompt_toolkit.validation import ValidationError, Validator...
I can scroll through a list on mac, but not on windows. react = [ inquirer.List('REACT', message="REACT TO MESSAGE?", choices=['YES', 'NO'], ), ] reaction = inquirer.prompt(react)
Hi! Perfect, thank you very much for this, it was getting catastrophic with pyinquirer and the deprecated prompt-toolkit. As you state on Pypi, I report one broken thing: Passing answers...
Hello! I really appreciate the work you did on this. The fuzzy search is pretty key. I was wondering how hard it would be or if it's possible to return...
First of all, thanks a lot for this wonderful port. PyInquirer was using many old libraries and had become unusable. Your module comes as a life-saver! Now, on to the...
Fixes #50 This fixes the incorrect type hint, changed from `None` to `Any` ```diff - async def execute_async(self) -> None: + async def execute_async(self) -> Any: ```