Skip to main content

User interface bridge for wizards asking a user questions.

Project description

wizard-ui-bridge

wizard-ui-bridge is the user-interface-independent way for a wizard to ask a user questions.

A wizard asks a series of questions and turns the answers into something, often a configuration file. WizardUiBridge is the interface it asks through, so the same wizard runs on a plain console, on a full-screen Textual user interface, on a graphical user interface you write yourself, or on a scripted bridge in your tests.

Is this package for you?

This package is a good fit when one or more of these apply:

  • You have a wizard, or a program that asks a user a series of questions, and you do not want the questions to be tied to one user interface.
  • You want typed questions, each with validation and re-asking: text, integer, path, yes/no, choice and multi-choice asked one at a time, and float, date, time, date and time and duration as fields of a form.
  • You want to ask a whole form at once where the user interface can show one, and fall back to one question at a time where it cannot.
  • You want the user to be able to go back a step or cancel, without every question having to handle that.
  • You want a full-screen text user interface for free when the program runs in a terminal, and a plain console fallback when it does not.
  • You want your wizard to be testable without a terminal.

This package is probably not the right one when:

  • You want a general widget toolkit. Use Textual or a GUI toolkit directly.
  • You only need one input() call.

Installation

wizard-ui-bridge requires Python 3.12 or newer.

pip install --upgrade wizard-ui-bridge

Textual is optional. Install it with the extra when you want the full-screen text user interface:

pip install --upgrade 'wizard-ui-bridge[textual]'

Without the extra, everything except the Textual bridge works, and make_text_ui_bridge() returns the console bridge. Importing wizard_ui_bridge never imports Textual; it is imported the first time a Textual bridge is actually used. Asking for the Textual bridge without Textual installed raises ImportError naming the extra to install.

Quick start

Ask a small form, on the best user interface the terminal allows:

import sys

from wizard_ui_bridge import AskTextField, AskIntField, AskYesNoField, \
    make_text_ui_bridge

bridge = make_text_ui_bridge(sys.stdout, sys.stdin, sys.stderr)
answers = bridge.ask_form('Describe the export', [
    AskTextField('Report name', 'Shown as the title of the report'),
    AskIntField('Rows', 'How many rows to export', min_value=1),
    AskYesNoField('Headings', 'Write a heading row', True)])
for answer in answers:
    print(f'{answer.asking.short_question}: {answer.value}')

The same code runs as a full-screen form when Textual is installed and the program runs in a terminal, and as one console question at a time when it does not.

Ask one question at a time instead:

name = bridge.ask_text('Report name', default='report')
rows = bridge.ask_int('Rows', min_value=1)

Main entry points

  • WizardUiBridge The bridge a wizard asks through. Subclass it to connect a wizard to a user interface of your own; the base class turns the typed questions and whole-form questions into the few methods your subclass implements.

  • make_text_ui_bridge() and UiBridgeType Return the Textual bridge when Textual is installed and both streams are a terminal, and the console bridge otherwise. UiBridgeType forces one or the other.

  • WizardUiBridgeConsole Asks one question at a time on plain text streams.

  • WizardUiBridgeTextual Full-screen text user interface, needs the textual extra.

  • AskTextField, AskIntField, AskFloatField, AskPathField, AskYesNoField, AskChoiceField, AskMultiChoiceField, AskDateField, AskTimeField, AskDateTimeField, AskDurationField The typed fields a form is built from, each with a matching Answer...Field.

  • WizardBack, WizardAbort, WizardCancelLevel, WizardNavigation How a user asks to go back a step or to give up, without every question having to handle it.

  • TableColumn, TableCell and ask_table() Ask for a small table of values, with a fixed or variable number of rows.

  • textual_installed() and load_textual_bridge() Ask whether the optional Textual bridge can be used, and get the class when it can.

Writing your own bridge

A bridge of your own subclasses WizardUiBridge and implements the few asking methods. The modules wizard_ui_bridge.bridge_helpers and wizard_ui_bridge.form_helpers hold the helpers the bundled bridges use to interpret raw answers and to build form answers, so that a bridge of your own behaves the same way.

Removed: WizardUiBridge.ask()

The low-level WizardUiBridge.ask() method is removed, and with it:

  • calling WizardUiBridge.ask() from a wizard, and
  • the backward-compatibility fallbacks that let a bridge which only overrode ask() keep working by rerouting the typed ask_*() calls through it.

Version 1.1 was the last version that supported ask(), where every use warned loudly that it was about to be removed. A bridge that still calls or overrides ask() no longer works.

Implement the typed methods directly instead of ask(): ask_text(), ask_choice(), ask_multi(), ask_yes_no() and ask_table(), together with show(). A typed method a bridge does not implement raises NotImplementedError. See Writing your own bridge above.

Relation to tableio-cfg-json

This package used to be part of tableio-cfg-json. It was split out so that a wizard that has nothing to do with TableIO does not have to install TableIO and everything TableIO depends on.

Applications that import the bridge from tableio_cfg_json keep working, with a deprecation warning per name, and should change the imports as described in the tableio-cfg-json documentation.

Source code repo history

The wizard UI bridge wizard-ui-bridge code used to be part of tableio-cfg-json git repo, but has been split out.

The two git repos https://github.com/tom-bjorkholm/wizard-ui-bridge and https://github.com/tom-bjorkholm/tableio_cfg_json share a common history. Up until version 1.1 there was only one repo. Now that repo is split in two, and each repo holds only code for its package. However, both repos have the common history.

Documentation

License

MIT

Test summary

  • Test result: 713 passed in 30s
  • No flake8 warnings.
  • No mypy errors found.
  • No pylint warnings.
  • No python layout warnings.
  • Built version(s): 1.2
  • Build and test using Python 3.14.6

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

wizard_ui_bridge-1.2.tar.gz (54.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wizard_ui_bridge-1.2-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

File details

Details for the file wizard_ui_bridge-1.2.tar.gz.

File metadata

  • Download URL: wizard_ui_bridge-1.2.tar.gz
  • Upload date:
  • Size: 54.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.6

File hashes

Hashes for wizard_ui_bridge-1.2.tar.gz
Algorithm Hash digest
SHA256 63e325e7b46723ce03c3ba169d446354739637ef2304e1c25782c2d71f92e185
MD5 c4cf8f8117263ba8a8250e48bf63a468
BLAKE2b-256 9d89e04a644cdd6a89f59121ad9a6c4a58ec56bacbfb018da1e4d27091a18796

See more details on using hashes here.

File details

Details for the file wizard_ui_bridge-1.2-py3-none-any.whl.

File metadata

  • Download URL: wizard_ui_bridge-1.2-py3-none-any.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.6

File hashes

Hashes for wizard_ui_bridge-1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 49cd0a681410284556a91a043437802439016e4b9d0609ca4b94fc0d4ad5c87b
MD5 912c33814b7dff99e96738bbc0d8dc87
BLAKE2b-256 aadb438a6963d31a26da12f48f3f072b1eedb60ddb3596f7f235d49c1e36688a

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