Command-Line Interface

GONet Wizard Command-Line Interface.

The GONet Wizard package provides a command-line interface for interacting with GONet devices, launching the dashboard, and inspecting or plotting GONet data. It allows users to:

  • Visualize GONet images (show)

  • View metadata from GONet files (show_meta)

  • Launch the interactive dashboard (dashboard)

  • Connect to a remote camera and run imaging-related commands (connect)

This CLI is launched using the GONet_Wizard.__main__ module.

Available Commands

  • show — Plot GONet GONet files by channel

  • show_meta — Print metadata of files

  • dashboard — Launch the interactive dashboard

  • connect snap — Trigger remote snapshot

  • connect terminate_imaging — Kill imaging processes remotely

Usage Examples

GONet_Wizard show image1.npy --red
GONet_Wizard show_meta *.npy
GONet_Wizard dashboard
GONet_Wizard connect 192.168.0.101 snap config.json
GONet_Wizard connect 192.168.0.101 terminate_imaging

Submodules

GONet_Wizard.__main__.main()[source]

Main CLI dispatch function for the GONet Wizard package.

Parses user input from the command line and delegates to the appropriate command module. Supports both top-level and nested subcommands.

Return type:

None