文件名称:gogephi:Gephi Streaming API的Golang客户端
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-18 09:35:55
Go
Golang Gephi Streaming API 客户端 这是Gephi Streaming API的golang客户端。 用法 g := gephi.NewClient("localhost:8080", "workspace0") a := gephi.NewNode("A") b := gephi.NewNode("B") b.Attributes["Foo"] = "Bar" b.Size = 100 e := gephi.NewEdge("A --- B", &a, &b) e1 := gephi.NewEdge("A --> B", &a, &b) e1.Directed = true g.AddNode(a) g.AddNode(b) g.AddEdge(e) g.AddEdge(e1) g.Commit()
【文件预览】:
gogephi-master
----gephi_test.go(1KB)
----entity.go(294B)
----LICENSE(1KB)
----.gitignore(266B)
----node.go(497B)
----edge.go(629B)
----README.md(426B)
----gephi.go(3KB)