blob: 4986a1035e4a57b28c79be88c64f9c46f8d73b1d (
plain)
1
2
3
4
5
6
7
8
9
|
"""The TUI frontend for the audiobook generator.
``ui.tui`` is the DOS-style curses widget library, and ``ui.hub`` is the
main menu the user sees when running ``audiobook.py`` with no arguments
(set up/configure backends, convert the input directory). It is the only
entry point for the interactive workflow; everything else under
``backends/`` and ``converter/`` is library code driven by it or by the
``audiobook.py`` CLI flags.
"""
|