CLI Reference
This section documents the public GONet Wizard command-line interface.
The CLI is useful for:
Inspecting images and metadata from the terminal.
Running repeatable extractions.
Launching GUI-backed tools from scripts or shell commands.
Processing groups of files with folders, wildcards, or comma-separated lists.
For a conceptual overview of the available tools, see Tools guide.
For implementation details about how commands are declared and dispatched, see command-system developer notes.
Important
The desktop installer/DMG is a GUI-first distribution path and does not add
command-line entry points to your shell. To use this CLI reference, install
the Python package with pip or pipx so that GONet_Wizard and
gonet-wizard are available from the terminal.
Basic Usage
The general command structure is:
GONet_Wizard [global-options] <command> [command-options]
To show the top-level help page:
GONet_Wizard --help
To show help for a specific command:
GONet_Wizard show --help
GONet_Wizard extract --help
Available Commands
Command |
Purpose |
GUI equivalent |
|---|---|---|
|
Inspect one or more GONet images by Bayer channel. |
|
|
Print or render metadata for one or more GONet images. |
|
|
Extract pixel-count measurements from selected image regions. |
|
|
Convert original RAW GONet |
|
|
Launch the interactive dashboard from JSON or CSV data products. |
|
|
Build full-array GONet products by combining Bayer channels. |
Command-line only |
|
Launch the graphical GONet Wizard launcher. |
Global Options
The top-level command supports several global options.
Option |
Description |
|---|---|
|
Show help text. |
|
Print the installed GONet Wizard version. |
|
Port for the unified local UI server used by preview and GUI pages. |
|
Enable PyWebview debug mode. |
|
Enable package logging at one of |
Note
Global options are placed before the command name.
For example:
GONet_Wizard --log-level INFO show image.jpg
Command Pages
CLI Command Names and Tool Pages
Most commands correspond directly to a user-facing tool page.
Command |
Tool page |
Notes |
|---|---|---|
|
Opens image inspection previews. |
|
|
Prints text output or returns HTML for GUI previews. |
|
|
Runs direct extraction or launches the interactive extraction app. |
|
|
Converts RAW GONet |
|
|
Launches a Dash application from JSON/CSV products. |
|
|
No general user-facing tool page yet. |
Advanced command-line-only workflow. |
|
Opens the graphical launcher. |
How the CLI Relates to Other Docs
The CLI Reference is intentionally practical: it shows command syntax, options, and examples.
For conceptual tool descriptions, see Tools guide. For GUI usage, see GUI Guide. For command-system internals, see command-system developer notes.