Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 363 Bytes

server_client.md

File metadata and controls

23 lines (14 loc) · 363 Bytes
import networkx as nx
get_ipython().magic('matplotlib inline')
import tega.driver
d = tega.driver.Driver(host='192.168.57.133')
server_client = d.get(path='graph.server_client.8888')
g = nx.DiGraph(server_client)
nx.draw_spring(g, node_size=1000, with_labels=True, arrows=True, alpha=0.8)

png