argparse-tui¶
Classes¶
TuiAction ¶
TuiAction(
option_strings: list[str],
dest: str = argparse.SUPPRESS,
default: Any = argparse.SUPPRESS,
help: str | None = "Open Textual UI.",
const: str | None = None,
metavar: str | None = None,
parent_parser: ArgumentParser | None = None,
**_kwargs: Any
)
argparse Action
that will analyze the parser and display a TUI.
When this action is triggered during argument parsing, it will launch a Textual UI for the parser. This allows adding a '--tui' flag to any argparse-based CLI to provide an interactive interface.
PARAMETER | DESCRIPTION |
---|---|
option_strings
|
The command-line flags that trigger this action
TYPE:
|
dest
|
The attribute name to store the result in
TYPE:
|
default
|
The default value if the argument is not present
TYPE:
|
help
|
The help text for this argument
TYPE:
|
const
|
The constant value for this action
TYPE:
|
metavar
|
The name to use in usage messages
TYPE:
|
parent_parser
|
The parent parser if this is in a subparser
TYPE:
|
Examples:
import argparse
from argparse_tui import TuiAction
parser = argparse.ArgumentParser()
parser.add_argument("--tui", action=TuiAction)
parser.print_usage()
Source code in src/argparse_tui/argparse.py
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
|
Functions¶
add_tui_argument ¶
add_tui_argument(
parser: ArgumentParser,
parent_parser: ArgumentParser | None = None,
option_strings: str | list[str] | None = None,
help: str = "Open Textual UI.",
default=argparse.SUPPRESS,
**kwargs
) -> None
Add a TUI argument to an existing argparse parser.
This function adds a flag (like --tui) to the parser that, when specified, will launch a Textual UI for configuring the command arguments.
PARAMETER | DESCRIPTION |
---|---|
parser
|
The argparse parser to add the argument to
TYPE:
|
parent_parser
|
The parent of the given parser, if this is a subparser
TYPE:
|
option_strings
|
List of CLI flags that will invoke the TUI (default: --tui)
TYPE:
|
help
|
Help text for the TUI argument
TYPE:
|
default
|
Default value for the argument
DEFAULT:
|
**kwargs
|
Additional keyword arguments passed to
DEFAULT:
|
Examples:
import argparse
from argparse_tui import add_tui_argument
parser = argparse.ArgumentParser()
add_tui_argument(parser)
parser.print_usage()
Source code in src/argparse_tui/argparse.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
|
add_tui_command ¶
add_tui_command(
parser: ArgumentParser,
command: str = DEFAULT_COMMAND_NAME,
help: str = "Open Textual UI.",
**kwargs: Any
) -> argparse._SubParsersAction
Add a TUI subcommand to an existing argparse parser.
This function adds a subcommand (like 'tui') to the parser that, when invoked, will launch a Textual UI for configuring the command arguments. This is useful for CLI applications that want to offer both command-line and TUI interfaces.
PARAMETER | DESCRIPTION |
---|---|
parser
|
The argparse parser to add the subcommand to
TYPE:
|
command
|
Name of the CLI command that will invoke the TUI (default=
TYPE:
|
help
|
Help message for the subcommand
TYPE:
|
**kwargs
|
If subparsers do not already exist, create with these kwargs
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
_SubParsersAction
|
The Argparse subparsers action that was discovered or created |
Examples:
import argparse
from argparse_tui import add_tui_command
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers()
add_tui_command(parser)
parser.print_usage()
Source code in src/argparse_tui/argparse.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 |
|
build_tui ¶
build_tui(
parser: ArgumentParser,
cli_args: Sequence[str] | None = None,
subparser_ignorelist: (
list[ArgumentParser] | None
) = None,
) -> App
Build a Textual UI (TUI) given an argparse parser.
Creates a Textual App that presents a form-based interface for the given argparse parser. The TUI allows users to interactively set argument values through a user-friendly interface instead of command line flags.
PARAMETER | DESCRIPTION |
---|---|
parser
|
The argparse parser to build a TUI for
TYPE:
|
cli_args
|
Arguments parsed for pre-populating the TUI form fields
TYPE:
|
subparser_ignorelist
|
List of subparsers to exclude from the TUI
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
App
|
A Textual App instance |
Examples:
from argparse_tui import build_tui
import argparse
import textual
parser = argparse.ArgumentParser(prog="awesome-app")
parser.add_argument("--value")
app = build_tui(parser)
assert isinstance(app, textual.app.App)
Source code in src/argparse_tui/argparse.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
|
invoke_tui ¶
invoke_tui(
parser: ArgumentParser,
cli_args: Sequence[str] | None = None,
subparser_ignorelist: (
list[ArgumentParser] | None
) = None,
) -> None
Invoke a Textual UI (TUI) given an argparse parser.
Builds and runs a TUI for the given argparse parser. This is a convenience function that combines build_tui() and app.run() in one call.
PARAMETER | DESCRIPTION |
---|---|
parser
|
The argparse parser to create a TUI for
TYPE:
|
cli_args
|
Arguments parsed for pre-populating the TUI form fields
TYPE:
|
subparser_ignorelist
|
List of subparsers to exclude from the TUI
TYPE:
|
Examples:
import argparse
from argparse_tui import invoke_tui
parser = argparse.ArgumentParser(prog="awesome-app")
parser.add_argument("--value")
# invoke_tui(parser)
Source code in src/argparse_tui/argparse.py
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|