Collection of common interactive command line user interfaces, based on Inquirer.js
Project description
python-inquirer3
This is a fork of magmax/python-inquirer. This one is hopefully more responsive (Issues/PRs/...).
Collection of common interactive command line user interfaces, based on magmax/python-inquirer.
Goal and Philosophy
inquirer3 should ease the process of asking end user questions, parsing, validating answers, managing hierarchical prompts and providing error feedback.
Platforms support
Python-inquirer supports mainly UNIX-based platforms (eq. Mac OS, Linux, etc.). Windows has experimental support, please let us know if there are any problems!
Installation
Install the last released version using pip:
pip install inquirer3
Also, you can download the python-inquirer code from GitHub or download the wheel from Pypi.
Documentation
Text
import re
import inquirer3
questions = [
inquirer3.Text('name', message="What's your name"),
inquirer3.Text('surname', message="What's your surname"),
inquirer3.Text('phone', message="What's your phone number",
validate=lambda _, x: re.match('\+?\d[\d ]+\d', x),
)
]
answers = inquirer3.prompt(questions)
Editor
Like a Text question, but used for larger answers. It opens external text editor which is used to collect the answer.
The environment variables $VISUAL
and $EDITOR
, can be used to specify which editor should be used. If not present inquirer fallbacks to vim -> emacs -> nano
in this order based on availability in the system.
External editor handling is done using great library python-editor.
Example:
import inquirer3
questions = [
inquirer3.Editor('long_text', message="Provide long text")
]
answers = inquirer3.prompt(questions)
List
Shows a list of choices, and allows the selection of one of them.
Example:
import inquirer3
questions = [
inquirer3.List('size',
message="What size do you need?",
choices=['Jumbo', 'Large', 'Standard', 'Medium', 'Small', 'Micro'],
),
]
answers = inquirer3.prompt(questions)
List questions can take one extra argument carousel=False
. If set to true, the answers will rotate (back to first when pressing down on last choice, and down to last choice when pressing up on first choice)
Checkbox
Shows a list of choices, with multiple selection.
Example:
import inquirer3
questions = [
inquirer3.Checkbox('interests',
message="What are you interested in?",
choices=['Computers', 'Books', 'Science', 'Nature', 'Fantasy', 'History'],
),
]
answers = inquirer3.prompt(questions)
Checkbox questions can take extra argument carousel=False
. If set to true, the answers will rotate (back to first when pressing down on last choice, and down to last choice when pressing up on first choice)
Another argument that can be used is locked=<List>
. The given choices in the locked argument cannot be removed. This is useful if you want to make clear that a specific option out of the choices must be chosen.
Path
Like Text question, but with builtin validations for working with paths.
Example:
import inquirer3
questions = [
inquirer3.Path('log_file',
message="Where logs should be located?",
path_type=inquirer3.Path.DIRECTORY,
),
]
answers = inquirer3.prompt(questions)
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Copyright (c) 2014-2023 Miguel Ángel García
Distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file inquirer3-0.6.1.tar.gz
.
File metadata
- Download URL: inquirer3-0.6.1.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca0e26922e0ba38c83bce65a54b3ed1c5f91c4c9fb72068c96a885e2749babc |
|
MD5 | 06c0a8e2b0aad6c02b4d25eb330f3706 |
|
BLAKE2b-256 | a14c12a087bac2a235d3f134daa6186199e82abf512a0961d0012cdd1c74f737 |
File details
Details for the file inquirer3-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: inquirer3-0.6.1-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27b4ef0beb518ac4cc7df765304663b728ba0bd32f3346bede458644b56f0146 |
|
MD5 | a758572532315e93a9dfe4745fd5ebfb |
|
BLAKE2b-256 | 8462545e48a919c685cf4c2ce423c1adb88c8cfa747237ca4e107e0870c758da |