- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://pygraphviz.github.io/
- 软件文档: http://pygraphviz.github.io/documentation.html
- 官方下载: http://pypi.python.org/pypi/pygraphviz
软件介绍
Graphviz 适合编程快速绘制流程图之类的图形。而pygraphviz对graphviz进行了封装,提供python程序调用接口。网上有很多对graphiviz进行python封装的程序如pydot等等。
示例代码:
>>> import pygraphviz as pgv
>>> G=pgv.AGraph()
>>> G.add_node('a')
>>> G.add_edge('b','c')
>>> G
strict graph {
a;
b -- c;
}
Linux Device Drivers
Jonathan Corbet、Alessandro Rubini、Greg Kroah-Hartman / O'Reilly Media / 2005-2-17 / USD 39.95
Device drivers literally drive everything you're interested in--disks, monitors, keyboards, modems--everything outside the computer chip and memory. And writing device drivers is one of the few areas ......一起来看看 《Linux Device Drivers》 这本书的介绍吧!
