DOT Viewer
Plugin to visualize .dot graphs within the HAL GUI.
- dot_viewer.load_dot_file(path: os.PathLike, creator_plugin: str = '') None
Loads a dot file in the graphic viewer provided by dot_viewer plugin.
- Parameters
path (pathlib.Path) – The path to the
.dotfile.creator_plugin (str) – The name of plugin that created the
.dotfile. Will try to detect from content or query by popup if empty.
- class dot_viewer.DotViewerPlugin
This class provides an interface to integrate a .dot viewer as a plugin within the HAL framework.
- get_dependencies(self: dot_viewer.DotViewerPlugin) Set[str]
Get a set of plugin names that this plugin depends on.
- get_description(self: dot_viewer.DotViewerPlugin) str
Get the description of the plugin.
- Returns
The description of the plugin.
- Return type
- get_name(self: dot_viewer.DotViewerPlugin) str
Get the name of the plugin.
- Returns
The name of the plugin.
- Return type
- get_version(self: dot_viewer.DotViewerPlugin) str
Get the version of the plugin.
- Returns
The version of the plugin.
- Return type