Skip to main content

PyPI Status Python Version License Black
Read the documentation at https://python-inquirer.readthedocs.io/ Tests Codecov pre-commit

python-inquirer

Collection of common interactive command line user interfaces, based on Inquirer.js.

Goal and Philosophy

Born as a Inquirer.js clone, it shares part of the goals and philosophy.

So, Inquirer should ease the process of asking end user questions, parsing, validating answers, managing hierarchical prompts and providing error feedback.

You can download the python-inquirer code from GitHub or download the wheel from Pypi.

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

pip install inquirer

Documentation

Documentation has been moved to magmax.org/python-inquirer.

But here you have a couple of usage examples:

Text

import re

import inquirer
questions = [
  inquirer.Text('name', message="What's your name"),
  inquirer.Text('surname', message="What's your surname"),
  inquirer.Text('phone', message="What's your phone number",
                validate=lambda _, x: re.match('\+?\d[\d ]+\d', x),
                )
]
answers = inquirer.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 inquirer
questions = [
  inquirer.Editor('long_text', message="Provide long text")
]
answers = inquirer.prompt(questions)

List

Shows a list of choices, and allows the selection of one of them.

Example:

import inquirer
questions = [
  inquirer.List('size',
                message="What size do you need?",
                choices=['Jumbo', 'Large', 'Standard', 'Medium', 'Small', 'Micro'],
            ),
]
answers = inquirer.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 inquirer
questions = [
  inquirer.Checkbox('interests',
                    message="What are you interested in?",
                    choices=['Computers', 'Books', 'Science', 'Nature', 'Fantasy', 'History'],
                    ),
]
answers = inquirer.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 inquirer
questions = [
  inquirer.Path('log_file',
                 message="Where logs should be located?",
                 path_type=inquirer.Path.DIRECTORY,
                ),
]
answers = inquirer.prompt(questions)

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Copyright (c) 2014-2021 Miguel Ángel García (@magmax_en), based on Inquirer.js, by Simon Boudrias (@vaxilart)

Distributed under the terms of the MIT license.

Release files for inquirer 3.1.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for inquirer 3.1.3
File Size Uploaded
inquirer-3.1.3.tar.gz 14.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for inquirer 3.1.3
File Interpreter ABI Platform
inquirer-3.1.3-py3-none-any.whl Python 3 none any Details

Total release size: 32.8 kB

Release files / inquirer-3.1.3.tar.gz

Download URL inquirer-3.1.3.tar.gz
Size 14.6 kB
Tags Source
SHA-256 checksum
How to use checksums
aac309406f5b49d4b8ab7c6872117f43bf082a552dc256aa16bc95e16bb58bec
BLAKE2b-256 checksum
How to use checksums
1be3e2998fad3add25dc7dad7decb8dcd92e71888d7e9514c647d0a461a7381c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.2

Release files / inquirer-3.1.3-py3-none-any.whl

Download URL inquirer-3.1.3-py3-none-any.whl
Size 18.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a7441fd74d06fcac4385218a1f5e8703f7a113f7944e01af47b8c58e84f95ce5
BLAKE2b-256 checksum
How to use checksums
a5e7009c1ad178a2ec0ab21606ef3efc151b2a7be56a3735a521c93049425a02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.2

Release history Release notifications | RSS feed

3.4.1

2 release files

3.4.0

2 release files

3.3.0

2 release files

3.2.5

2 release files

3.2.4

2 release files

3.2.3

2 release files

3.2.2

2 release files

3.2.1

2 release files

3.2.0

2 release files

3.1.4

2 release files

This release

3.1.3 This release

2 release files

3.1.2

2 release files

3.1.1

2 release files

3.1.0

2 release files

3.0.0

2 release files

2.10.1

2 release files

2.10.0

2 release files

2.9.2

2 release files

2.9.1

2 release files

2.9.0

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.3

2 release files

2.6.2

2 release files

2.6.1

2 release files

2.5.1

2 release files

2.5.0

1 release file

2.4.0

1 release file

2.3.0

2 release files

2.2.0

2 release files

2.1.11

2 release files

2.1.10

1 release file

2.1.9

2 release files

2.1.7

2 release files

2.1.6

2 release files

2.1.5

1 release file

2.1.3

2 release files

2.1.2

2 release files

2.1.1

2 release files

2.1.0

2 release files

2.0.2

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.0

1 release file

0.6

1 release file

0.5

1 release file

0.0.4

0.0.3

0.0.2

0.0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page