• Stars
    star
    996
  • Rank 45,680 (Top 1.0 %)
  • Language
    Python
  • License
    MIT License
  • Created over 10 years ago
  • Updated 17 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A collection of common interactive command line user interfaces, based on Inquirer.js (https://github.com/SBoudrias/Inquirer.js/)

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-2023 Miguel Ángel García (@magmax_en), based on Inquirer.js, by Simon Boudrias (@vaxilart)

Distributed under the terms of the MIT license.

More Repositories

1

python-readchar

Python library to read characters and key strokes
Python
143
star
2

bbb

BuildBot Bootstrap
CSS
9
star
3

colorize

Give some color to your (remote) TTY!!
Python
9
star
4

python-pluginloader

Library to manage python plugins/extensions
Python
6
star
5

pdfcomparator

Compares two PDF files by appearance, not by content. It can be used in the command line, in order to use it inside bigger scripts.
Python
5
star
6

apps

Applications and libraries
Makefile
4
star
7

ansible-opentracing

Observability for Ansible with OpenTracing
Python
3
star
8

pybrowsertest

Browser Tests Framework.
Python
3
star
9

moodle-console

Access to Moodle from command line. Just for UCLM moodle.
HTML
2
star
10

bitbucket-openapi

BitBucket generated library from swagger spec. It is part of Atlassian-OpenApi project: https://github.com/magmax/atlassian-openapi
Python
2
star
11

livedoc

Python
2
star
12

pygrep

Visual grep with profiles and other facilities
Python
2
star
13

diplomacy_advisor

Alerts for webdiplomacy
Python
1
star
14

impinstaller

Multiplatform installer builder
Python
1
star
15

master-java

Ejercicios para el máster de Java que estoy haciendo.
Java
1
star
16

okane

Pequeño proyecto para gestionar la contabilidad doméstica personal.
Ruby
1
star
17

textile2rst

Translator from Textile to ReStructured Text
Python
1
star
18

DjangoBasic

Creación de un sitio básico en Django
Python
1
star
19

python-releaseme

Library and command line app to manage project releases or versions
Python
1
star
20

drupal2blogger

Exporta un site drupal directamente a blogger
Python
1
star
21

itreport

Dump Jira issues to yaml and transform it into reports (PDF, HTML, ...)
Python
1
star
22

angular-example

Example of Angular usage, adding a navigation bar (using Bootstrap) completely functional.
JavaScript
1
star
23

python-orm-mothers

Framework for testing that allows the creation of full randomized objects with history, just based on the ORM model.
Python
1
star
24

osomsite

Make your site awesome by generating just some indexes and rendering it in client.
JavaScript
1
star
25

nikola-theme-octopress

Octopress Theme for Nikola
JavaScript
1
star
26

Charla-Agile

Transparencias para la charla de introducción al desarrollo ágil,
Python
1
star