Skip to main content

Library for quick CLI user prompts, input, and menus.

Project description

License Build Status

Introduction

This project provides a Python 2.7/3.x library that allows the user to quickly create CLI prompts for user input. The main features of this library are:

  • Simple multi-entry menus.

  • Prompt for typed (integer/float/string) input.

  • Optional default values and validity checks.

  • Various CLI convenience functions.

  • User input can optionally be supplied from script command-line arguments allowing for simple automation.

  • Should work on any platform without additional dependencies.

Status

Currently, this project is in the development release stage. While this project is suitable for use, please note that there may be incompatibilities in new releases.

Release notes are maintained in the project changelog.

Requirements

Qprompt should run on any Python 2.7/3.x interpreter without additional dependencies.

Installation

Qprompt can be installed with pip using the following command: pip install qprompt

Additionally, Qprompt can be installed from source by running: python setup.py install

Usage

Start by importing Qprompt into your Python script:

import qprompt

You can prompt the user for various input types:

qprompt.ask_yesno()
qprompt.ask_int()
qprompt.ask_float()
qprompt.ask_str()

All prompts requiring user input will start with [?]:

qprompt.ask_int()
# [?] Enter an integer:

At any prompt, the user can enter the ? character to show valid entries:

qprompt.ask_yesno()
# [?] Proceed?: ?
# ['N', 'NO', 'Y', 'YES', 'n', 'no', 'y', 'yes']

The default prompt message can be changed:

qprompt.ask_str("Enter your name")
# [?] Enter your name:

An optional default value can be supplied:

qprompt.ask_yesno(dft="y")
# [?] Proceed? [y]:

Optional validity checks can be added:

qprompt.ask_int(vld=[1,2,3])
# [?] Enter an integer: 4
# [?] Enter an integer: 1

qprompt.ask_str(vld=lambda x: x.startswith("spa"))
# [?] Enter a string: foo
# [?] Enter a string: spam

qprompt.ask_str("Enter a path", vld=lambda x: os.path.exists(x))
# [?] Enter a path: C:\Windows

Robot problem? Try using a captcha:

qprompt.ask_captcha()
# [?] Enter the following letters, "kslg":

qprompt.ask_captcha(length=6)
# [?] Enter the following letters, "dkixzp":

Menus are easy to make:

menu = qprompt.Menu()
menu.add("p", "Previous")
menu.add("n", "Next")
menu.add("q", "Quit")
choice = menu.show()
# -- MENU --
#   (p) Previous
#   (n) Next
#   (q) Quit
# [?] Enter menu selection:

Your menus can do cool stuff by registering functions:

def foo(a, b):
    print(a + b)
menu.add("f", "foo", foo, [1, 2])

Some print-like functions:

qprompt.echo("foo")
# foo

qprompt.alert("bar")
# [!] bar

qprompt.warn("baz")
# [WARNING] baz

qprompt.error("qux")
# [ERROR] qux

Got a function that takes a while? Show that it is running with status which can be used as a function or decorator:

qprompt.status("Doing stuff...", time.sleep, [1])
# [!] Doing stuff... DONE.

@qprompt.status("Doing more stuff...")
def do_stuff():
    time.sleep(1)
do_stuff()
# [!] Doing more stuff... DONE.

Additional convenience functions:

qprompt.pause()
# Press ENTER to continue...

qprompt.hrule(width=10)
# ----------

qprompt.wrap("hello world", "hi", width=10)
# /-- hi ---
# hello world
# \---------

Check out the following additional examples of Qprompt; more can be found here:

Input Automation

User input can be automated using command-line arguments to the script.

Use the StdinAuto() context manager to automatically pass a list of strings to input functions:

with qprompt.StdinAuto(["foo","bar","42"]):
    print(ask_str())
    print(ask_str())
    print(ask_int())
# foo
# bar
# 42

The stdin_auto context manager will automatically pass script command-line arguments to input functions:

with qprompt.stdin_auto:
    print(ask_str())
    print(ask_str())
    print(ask_int())
# $ python example.py foo bar 42
# foo
# bar
# 42

Menus can be automated using the main() method:

menu = qprompt.Menu
menu.add("f", "Foo", some_useful_function)
menu.add("b", "Bar", another_useful_function)
menu.main()
# $ python example.py f
# some_useful_function() ran just now!

Menus can optionally loop allowing for multiple tasks to be run:

menu = qprompt.Menu
menu.add("f", "Foo", some_useful_function)
menu.add("b", "Bar", another_useful_function)
menu.main(loop=True)
# $ python example.py f b q
# some_useful_function() ran just now!
# another_useful_function() ran just now!

If no arguments are passed to the script, the input prompts will act as normal.

Documentation

The full documentation for this project can be found here on Read the Docs.

Roadmap

The following potential updates are under consideration:

  • Accept multiple menu choices from user at once; e.g. space separated entries like 1 2 q.

  • Default value for menus.

  • Timeouts for prompt inputs; default value used if timed out.

Similar

The following projects are similar and may be worth checking out:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qprompt-0.9.3.tar.gz (9.1 kB view details)

Uploaded Source

File details

Details for the file qprompt-0.9.3.tar.gz.

File metadata

  • Download URL: qprompt-0.9.3.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for qprompt-0.9.3.tar.gz
Algorithm Hash digest
SHA256 e68dcb17f2a95847415eed73ef8912e5e0ccb2a0db4e28fb10436d47c15cc030
MD5 df8026f9d0bbe49bdef16011aac234b6
BLAKE2b-256 22cf9e7b0b3be4fd3f35ca4265df6983816c45fa8f033806904d121d4c0b04d6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page