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: text, integer, float, path, yes/no, choice, multi-choice, date, time, date and time, and duration, each with validation and re-asking.
- 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
-
WizardUiBridgeThe 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()andUiBridgeTypeReturn the Textual bridge when Textual is installed and both streams are a terminal, and the console bridge otherwise.UiBridgeTypeforces one or the other. -
WizardUiBridgeConsoleAsks one question at a time on plain text streams. -
WizardUiBridgeTextualFull-screen text user interface, needs thetextualextra. -
AskTextField,AskIntField,AskFloatField,AskPathField,AskYesNoField,AskChoiceField,AskMultiChoiceField,AskDateField,AskTimeField,AskDateTimeField,AskDurationFieldThe typed fields a form is built from, each with a matchingAnswer...Field. -
WizardBack,WizardAbort,WizardCancelLevel,WizardNavigationHow a user asks to go back a step or to give up, without every question having to handle it. -
TableColumn,TableCellandask_table()Ask for a small table of values, with a fixed or variable number of rows. -
textual_installed()andload_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.
Deprecation: WizardUiBridge.ask() is removed next release
This is the last release that supports the low-level
WizardUiBridge.ask() method. The next release removes it entirely,
dropping both:
- calling
WizardUiBridge.ask()from a wizard, and - the backward-compatibility fallbacks that let a bridge which only
overrides
ask()keep working by rerouting the typedask_*()calls through it.
After the next release, any bridge that still calls or overrides
ask() will stop working. Every use now warns loudly, so the
change is impossible to miss: it raises a DeprecationWarning (shown by
pytest and other tools), an additional UserWarning that Python shows
to end users by default, and it prints the message to standard error.
To keep your bridge working, implement the typed methods directly
instead of ask(): ask_text(), ask_choice(), ask_multi(),
ask_yes_no() and ask_table(). 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.
Planned source code repo change
Currently both tableio_cfg_json and wizard-ui-bridge source code
are in the same repo in GitHub. This will change very soon.
The change will break some old URLs to the source code, to documentation,
and to examples. When the change happens a new release with new URLs will
be made.
Documentation
-
Teaching examples and walkthroughs: wizard_ui_bridge/example/src/wizard_ui_example
-
Public API notes: doc/wizard_ui_bridge_api.md
-
Protected/internal API notes: doc/wizard_ui_bridge_protected_api.md
-
Source repository: tableio_cfg_json
License
MIT
Test summary
- Test result: 1049 passed in 49s
- No flake8 warnings.
- No mypy errors found.
- No pylint warnings.
- No python layout warnings.
- Built version(s): 1.1
- Build and test using Python 3.14.6
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wizard_ui_bridge-1.1.tar.gz.
File metadata
- Download URL: wizard_ui_bridge-1.1.tar.gz
- Upload date:
- Size: 55.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cebd5ba7ff8afe6b92ee460c64c6216ab6b9df7ff2626357b09d07ae1ae84d52
|
|
| MD5 |
300659c2361c9c0761129a36bec7846e
|
|
| BLAKE2b-256 |
7ebbf7761980aeb72780dc30d99d4c66d4357d5984354cec0826a9573c99ac7d
|
File details
Details for the file wizard_ui_bridge-1.1-py3-none-any.whl.
File metadata
- Download URL: wizard_ui_bridge-1.1-py3-none-any.whl
- Upload date:
- Size: 61.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baedd5fa374b61085146a21d10bfdfd4470854f18967cc400efa6aeb05ac7048
|
|
| MD5 |
52d704c14e5d7ce76392b02ccd868c89
|
|
| BLAKE2b-256 |
e3ff7f6cf17032ec31daa61776ff7f7fc4ddf4e85d440e38ea8d4e109dbbf727
|