PrismProject().graph
Overview
The graph method is used to display Prism projects as a network of nodes and edges (i.e., a graph). Here is the method definition for PrismProject.graph():
PrismProject.graph(
port: int = 8000,
open_window: bool = True,
hot_reload: bool = True,
log_level: Literal["info", "warning", "error", "debug", "critical"] = "info",
)Argument
Description
port
port on which to launch the webserver. Default is 8000.
open_window
boolean controlling whether to opne a new window in your default browser. Default is True.
hot_reload
boolean controlling whether to listen to changes the project task directory. Default is True.
log_level
logging level, one of info, warn, error, debug, or critical.
Here's what the the visualizer UI looks like:
[ TO DO ]
Last updated