##// END OF EJS Templates
Image embed vs not embed notebook example...
Image embed vs not embed notebook example consist of 2 images, same URL, display in the notebook, one witih embed=True the other with embed=False, Chosen url is google doodle url which should show : the first, embeded : google doodle of robert doisneau's commemoration day the other, with url kwarg : google doodle of current the day

File last commit:

r3880:e7df0ac1
r6530:fe2f9ba3
Show More
display.py
27 lines | 668 B | text/x-python | PythonLexer
Brian Granger
Renaming the special methods of the formatters....
r3878 """Code that shows off the IPython display logic.
"""
Brian Granger
Misc updates the display system....
r3880 from IPython.lib.latextools import latex_to_png
Brian Granger
Renaming the special methods of the formatters....
r3878 from IPython.core.display import (
display, display_pretty, display_html,
Brian Granger
Misc updates the display system....
r3880 display_svg, display_json, display_png
Brian Granger
Renaming the special methods of the formatters....
r3878 )
class Circle(object):
def __init__(self, radius):
self.radius = radius
def _repr_pretty_(self, p, cycle):
p.text(u"\u25CB")
def _repr_html_(self):
return "<h1>Cirle: radius=%s</h1>" % self.radius
def _repr_svg_(self):
return """<svg>
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red"/>
</svg>"""
Brian Granger
Misc updates the display system....
r3880 def _repr_png_(self):
return latex_to_png('$\circle$')