forked from BenLangmead/ads1-notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgvmagic.py
100 lines (84 loc) · 2.58 KB
/
gvmagic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"""
Graphviz IPython magic extensions
Magic methods:
%dot <dot graph>
%%dot <dot ...
... graph>
%dotstr "<dot graph>"
%dotobj obj.to_dot()
%dotobjs obj[0].to_dot(), obj[1].to_dot(), ...
Usage:
%load_ext gvmagic
"""
from subprocess import Popen, PIPE
from IPython.core.display import display_svg
from IPython.core.magic import (
Magics, magics_class,
line_magic, line_cell_magic
)
from IPython.utils.warn import info, error
def rundot(s):
"""Execute dot and return a raw SVG image, or None."""
dot = Popen(['dot', '-Tsvg'], stdin=PIPE, stdout=PIPE, stderr=PIPE)
stdoutdata, stderrdata = dot.communicate(s.encode('utf-8'))
status = dot.wait()
if status == 0:
return stdoutdata
else:
fstr = "dot returned {}\n[==== stderr ====]\n{}"
error(fstr.format(status, stderrdata.decode('utf-8')))
return None
@magics_class
class GraphvizMagics(Magics):
@line_cell_magic
def dot(self, line, cell=None):
"""dot line/cell magic"""
if cell is None:
s = line
else:
s = line + '\n' + cell
data = rundot(s)
if data:
display_svg(data, raw=True)
@line_magic
def dotstr(self, line):
"""dot string magic"""
s = self.shell.ev(line)
data = rundot(s)
if data:
display_svg(data, raw=True)
@line_magic
def dotobj(self, line):
"""dot object magic"""
obj = self.shell.ev(line)
try:
s = obj.to_dot()
except AttributeError:
error("expected object to implement 'to_dot()' method")
except TypeError:
error("expected to_dot method to be callable w/o args")
else:
data = rundot(s)
if data:
display_svg(data, raw=True)
@line_magic
def dotobjs(self, line):
"""dot objects magic"""
objs = self.shell.ev(line)
for i, obj in enumerate(objs):
try:
s = obj.to_dot()
except AttributeError:
error("expected object to implement 'to_dot()' method")
except TypeError:
error("expected to_dot method to be callable w/o args")
else:
data = rundot(s)
if data:
info("object {}:".format(i))
display_svg(data, raw=True)
def load_ipython_extension(ipython):
"""Load the extension in IPython."""
ipython.register_magics(GraphvizMagics)
def unload_ipython_extension(ipython):
"""Unload the extension in IPython."""