[python][转载]graphviz安装后测试代码

Posted FL1623863129

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python][转载]graphviz安装后测试代码相关的知识,希望对你有一定的参考价值。

test.gv文件

digraph G 

  subgraph cluster_0 
    style=filled;
    color=lightgrey;
    node [style=filled,color=white];
    a0 -> a1 -> a2 -> a3;
    label = "process #1";
  

  subgraph cluster_1 
    node [style=filled];
    b0 -> b1 -> b2 -> b3;
    label = "process #2";
    color=blue
  
  start -> a0;
  start -> b0;
  a1 -> b3;
  b2 -> a3;
  a3 -> a0;
  a3 -> end;
  b3 -> end;

  start [shape=Mdiamond];
  end [shape=Msquare];

test.py代码

from graphviz import Source
s = Source.from_file("test.gv",format='pdf')
print(s.source)
s.view("./result",cleanup=True)

结果:

 

以上是关于[python][转载]graphviz安装后测试代码的主要内容,如果未能解决你的问题,请参考以下文章

python中导入graphviz模块失败的解决办法

[python][转载]pytesseract安装后测试代码

Python——graphviz及pydotplus安装步骤

未找到 GraphViz 的可执行文件 - 为啥通过 pip 安装 graphViz 后没有安装可执行文件?

python graphviz的使用

graphviz绘制图和树,python