mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-08 22:30:41 +00:00
35 lines
1.1 KiB
Markdown
35 lines
1.1 KiB
Markdown
Parses the Graphviz DOT language and creates an interface, in golang, with which to easily create new and manipulate existing graphs which can be written back to the DOT format.
|
|
|
|
This parser has been created using [gocc](http://code.google.com/p/gocc).
|
|
|
|
### Example (Parse and Edit) ###
|
|
|
|
```
|
|
graphAst, _ := parser.ParseString(`digraph G {}`)
|
|
graph := NewGraph()
|
|
Analyse(graphAst, graph)
|
|
graph.AddNode("G", "a", nil)
|
|
graph.AddNode("G", "b", nil)
|
|
graph.AddEdge("a", "b", true, nil)
|
|
output := graph.String()
|
|
```
|
|
|
|
### Documentation ###
|
|
|
|
The [godoc](https://godoc.org/github.com/awalterschulze/gographviz) includes some more examples.
|
|
|
|
### Installation ###
|
|
go get github.com/awalterschulze/gographviz
|
|
|
|
### Tests ###
|
|
|
|
[](https://travis-ci.org/awalterschulze/gographviz)
|
|
|
|
### Users ###
|
|
|
|
[aptly](https://github.com/smira/aptly) - Debian repository management tool
|
|
|
|
### Mentions ###
|
|
|
|
[Using Golang and GraphViz to Visualize Complex Grails Applications](http://ilikeorangutans.github.io/2014/05/03/using-golang-and-graphviz-to-visualize-complex-grails-applications/)
|