File: ex1.py

package info (click to toggle)
python-gvgen 0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 200 kB
  • ctags: 201
  • sloc: python: 719; sh: 24; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 273 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python

import gvgen

# Creates the new graph instance
graph = gvgen.GvGen()

# Creates two items labeled "Foo" and "Bar"
a = graph.newItem("foo")
b = graph.newItem("bar")

# Links from "foo" to "bar"
graph.newLink(a,b)

# Outputs the graphviz code
graph.dot()