Hi,
I would like to save in a pdf the graphviz object g without opening a window showing the graph. I tried the following code, but the window still open.
from lolviz import *
data = ['hi','mom',{3,4},{"parrt":"user"}]
g = listviz(data)
g.view(cleanup=True,quiet=True)
Hi, I would like to save in a pdf the graphviz object
g
without opening a window showing the graph. I tried the following code, but the window still open.