##// END OF EJS Templates
catch NotImplementedError, not NotImplemented...
catch NotImplementedError, not NotImplemented in _ipython_display_

File last commit:

r14795:6721e7f2
r14795:6721e7f2
Show More
display.py
701 lines | 23.2 KiB | text/x-python | PythonLexer
Brian Granger
Display system is fully working now....
r3278 # -*- coding: utf-8 -*-
"""Top-level display functions for displaying object in different formats.
Authors:
* Brian Granger
"""
#-----------------------------------------------------------------------------
MinRK
allow Image("filename")
r10050 # Copyright (C) 2013 The IPython Development Team
Brian Granger
Display system is fully working now....
r3278 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
MinRK
clear_output implies '\r' for terminal frontends
r6422 from __future__ import print_function
MinRK
allow Image("filename")
r10050 import os
MinRK
enable retina display of Image objects...
r10803 import struct
MinRK
allow Image("filename")
r10050
Thomas Kluyver
Replace references to unicode and basestring
r13353 from IPython.utils.py3compat import (string_types, cast_bytes_py2, cast_unicode,
unicode_type)
Thomas Kluyver
Fix 'Custom Display Logic' example notebook for Python 3
r9197
MinRK
do't define redundant _publish in core.display
r10449 from .displaypub import publish_display_data
Brian Granger
Display system is fully working now....
r3278 #-----------------------------------------------------------------------------
MinRK
allow Image("filename")
r10050 # utility functions
#-----------------------------------------------------------------------------
def _safe_exists(path):
Kyle Kelley
Minor typo, casing, and plurality fixes
r10213 """Check path, but don't let exceptions raise"""
MinRK
allow Image("filename")
r10050 try:
return os.path.exists(path)
except Exception:
return False
MinRK
add metadata to display functions...
r10448 def _merge(d1, d2):
"""Like update, but merges sub-dicts instead of clobbering at the top level.
Dan McDougall
Added __html__() method to the HTML class so that other Python modules...
r10490
MinRK
add metadata to display functions...
r10448 Updates d1 in-place
"""
Dan McDougall
Added __html__() method to the HTML class so that other Python modules...
r10490
MinRK
add metadata to display functions...
r10448 if not isinstance(d2, dict) or not isinstance(d1, dict):
return d2
for key, value in d2.items():
d1[key] = _merge(d1.get(key), value)
return d1
MinRK
do't define redundant _publish in core.display
r10449 def _display_mimetype(mimetype, objs, raw=False, metadata=None):
"""internal implementation of all display_foo methods
Parameters
----------
mimetype : str
The mimetype to be published (e.g. 'image/png')
objs : tuple of objects
The Python objects to display, or if raw=True raw text data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
MinRK
do't define redundant _publish in core.display
r10449 """
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 if metadata:
metadata = {mimetype: metadata}
MinRK
do't define redundant _publish in core.display
r10449 if raw:
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 # turn list of pngdata into list of { 'image/png': pngdata }
objs = [ {mimetype: obj} for obj in objs ]
display(*objs, raw=raw, metadata=metadata, include=[mimetype])
MinRK
allow Image("filename")
r10050 #-----------------------------------------------------------------------------
Brian Granger
Display system is fully working now....
r3278 # Main functions
#-----------------------------------------------------------------------------
Brian Granger
Final work on display system....
r3288 def display(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display a Python object in all frontends.
By default all representations will be computed and sent to the frontends.
Frontends can decide which representation is used and how.
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
The Python objects to display.
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 raw : bool, optional
Are the objects to be displayed already mimetype-keyed dicts of raw display data,
or Python objects that need to be formatted before display? [default: False]
Brian Granger
Display system is fully working now....
r3278 include : list or tuple, optional
A list of format type strings (MIME types) to include in the
format data dict. If this is set *only* the format types included
in this list will be computed.
exclude : list or tuple, optional
Kyle Kelley
Minor typo, casing, and plurality fixes
r10213 A list of format type strings (MIME types) to exclude in the format
Brian Granger
Display system is fully working now....
r3278 data dict. If this is set all format types will be computed,
except for those included in this argument.
MinRK
add metadata to display functions...
r10448 metadata : dict, optional
A dictionary of metadata to associate with the output.
mime-type keys in this dictionary will be associated with the individual
representation formats, if they exist.
Brian Granger
Display system is fully working now....
r3278 """
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 raw = kwargs.get('raw', False)
Brian Granger
Final work on display system....
r3288 include = kwargs.get('include')
exclude = kwargs.get('exclude')
MinRK
add metadata to display functions...
r10448 metadata = kwargs.get('metadata')
Bernardo B. Marques
remove all trailling spaces
r4872
Brian Granger
Display system is fully working now....
r3278 from IPython.core.interactiveshell import InteractiveShell
Dan McDougall
Added __html__() method to the HTML class so that other Python modules...
r10490
Jonathan Frederic
Widget Display logic
r14233 if not raw:
format = InteractiveShell.instance().display_formatter.format
for obj in objs:
Jonathan Frederic
Dev meeting widget review day 1
r14586
MinRK
catch NotImplementedError, not NotImplemented...
r14795 # If _ipython_display_ is defined, use that to display this object.
display_method = getattr(obj, '_ipython_display_', None)
if display_method is not None:
try:
display_method(**kwargs)
except NotImplementedError:
pass
else:
continue
if raw:
publish_display_data('display', obj, metadata)
else:
format_dict, md_dict = format(obj, include=include, exclude=exclude)
if metadata:
# kwarg-specified metadata gets precedence
_merge(md_dict, metadata)
publish_display_data('display', format_dict, md_dict)
Brian Granger
More improvements to the display system....
r3279
MinRK
add metadata to display functions...
r10448
def display_pretty(*objs, **kwargs):
"""Display the pretty (default) representation of an object.
Parameters
----------
objs : tuple of objects
The Python objects to display, or if raw=True raw text data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
MinRK
add metadata to display functions...
r10448 """
_display_mimetype('text/plain', objs, **kwargs)
Brian Granger
More improvements to the display system....
r3279
Brian E. Granger
Updates to the display system....
r4526 def display_html(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display the HTML representation of an object.
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
Brian E. Granger
Finishing display system work....
r4528 The Python objects to display, or if raw=True raw HTML data to
Brian E. Granger
Updates to the display system....
r4526 display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian E. Granger
Updates to the display system....
r4526 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('text/html', objs, **kwargs)
Brian Granger
Display system is fully working now....
r3278
Brian E. Granger
Updates to the display system....
r4526 def display_svg(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display the SVG representation of an object.
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
Brian E. Granger
Updates to the display system....
r4526 The Python objects to display, or if raw=True raw svg data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian Granger
Display system is fully working now....
r3278 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('image/svg+xml', objs, **kwargs)
Brian Granger
Display system is fully working now....
r3278
Brian E. Granger
Updates to the display system....
r4526 def display_png(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display the PNG representation of an object.
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
Brian E. Granger
Updates to the display system....
r4526 The Python objects to display, or if raw=True raw png data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian Granger
Display system is fully working now....
r3278 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('image/png', objs, **kwargs)
Brian Granger
Display system is fully working now....
r3278
Brian E. Granger
Finishing display system work....
r4528 def display_jpeg(*objs, **kwargs):
"""Display the JPEG representation of an object.
Parameters
----------
objs : tuple of objects
The Python objects to display, or if raw=True raw JPEG data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian E. Granger
Finishing display system work....
r4528 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('image/jpeg', objs, **kwargs)
Brian E. Granger
Finishing display system work....
r4528
Brian E. Granger
Updates to the display system....
r4526 def display_latex(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display the LaTeX representation of an object.
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
Brian E. Granger
Updates to the display system....
r4526 The Python objects to display, or if raw=True raw latex data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian Granger
Display system is fully working now....
r3278 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('text/latex', objs, **kwargs)
Brian Granger
Display system is fully working now....
r3278
Brian E. Granger
Updates to the display system....
r4526 def display_json(*objs, **kwargs):
Brian Granger
Display system is fully working now....
r3278 """Display the JSON representation of an object.
Kyle Kelley
Fixed minor typo
r10212
Thomas Kluyver
Notebook does not support displaying JSON
r8086 Note that not many frontends support displaying JSON.
Brian Granger
Display system is fully working now....
r3278
Parameters
----------
Brian Granger
Final work on display system....
r3288 objs : tuple of objects
Brian E. Granger
Updates to the display system....
r4526 The Python objects to display, or if raw=True raw json data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian Granger
Display system is fully working now....
r3278 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('application/json', objs, **kwargs)
Brian Granger
Display system is fully working now....
r3278
Brian E. Granger
Updates to the display system....
r4526 def display_javascript(*objs, **kwargs):
Brian Granger
Renaming the special methods of the formatters....
r3878 """Display the Javascript representation of an object.
Brian Granger
Display system is fully working now....
r3278
Brian Granger
Renaming the special methods of the formatters....
r3878 Parameters
----------
objs : tuple of objects
Brian E. Granger
Updates to the display system....
r4526 The Python objects to display, or if raw=True raw javascript data to
display.
raw : bool
Are the data objects raw data or Python objects that need to be
formatted before display? [default: False]
MinRK
add metadata to display functions...
r10448 metadata : dict (optional)
MinRK
display_mime(objs, metadata) puts metadata into mime type key...
r10450 Metadata to be associated with the specific mimetype output.
Brian Granger
Renaming the special methods of the formatters....
r3878 """
MinRK
add metadata to display functions...
r10448 _display_mimetype('application/javascript', objs, **kwargs)
Brian E. Granger
Updates to the display system....
r4526
#-----------------------------------------------------------------------------
# Smart classes
#-----------------------------------------------------------------------------
class DisplayObject(object):
"""An object that wraps data to be displayed."""
Brian E. Granger
Finishing display system work....
r4528 _read_flags = 'r'
def __init__(self, data=None, url=None, filename=None):
"""Create a display object given raw data.
Brian E. Granger
Updates to the display system....
r4526
When this object is returned by an expression or passed to the
display function, it will result in the data being displayed
in the frontend. The MIME type of the data should match the
subclasses used, so the Png subclass should be used for 'image/png'
data. If the data is a URL, the data will first be downloaded
Bernardo B. Marques
remove all trailling spaces
r4872 and then displayed. If
Brian E. Granger
Updates to the display system....
r4526
Parameters
----------
data : unicode, str or bytes
MinRK
allow Image("filename")
r10050 The raw data or a URL or file to load the data from
Brian E. Granger
Finishing display system work....
r4528 url : unicode
A URL to download the data from.
filename : unicode
Path to a local file to load the data from.
Brian E. Granger
Updates to the display system....
r4526 """
MinRK
allow Image("filename")
r10050 if data is not None and isinstance(data, string_types):
if data.startswith('http') and url is None:
url = data
filename = None
data = None
elif _safe_exists(data) and filename is None:
url = None
filename = data
data = None
Kyle Kelley
Fixed minor typo
r10212
MinRK
allow Image("filename")
r10050 self.data = data
self.url = url
Thomas Kluyver
Replace references to unicode and basestring
r13353 self.filename = None if filename is None else unicode_type(filename)
Kyle Kelley
Fixed minor typo
r10212
Brian E. Granger
Finishing display system work....
r4528 self.reload()
MinRK
validate that text display data is text...
r14153 self._check_data()
def _check_data(self):
"""Override in subclasses if there's something to check."""
pass
Brian E. Granger
Finishing display system work....
r4528
def reload(self):
"""Reload the raw data from file or URL."""
if self.filename is not None:
with open(self.filename, self._read_flags) as f:
self.data = f.read()
elif self.url is not None:
try:
Sean Vig
Fix Python 3 handling of urllib...
r13640 try:
from urllib.request import urlopen # Py3
except ImportError:
from urllib2 import urlopen
response = urlopen(self.url)
Brian E. Granger
Finishing display system work....
r4528 self.data = response.read()
MinRK
respect encoding of display data from urls
r4684 # extract encoding from header, if there is one:
encoding = None
for sub in response.headers['content-type'].split(';'):
sub = sub.strip()
if sub.startswith('charset'):
encoding = sub.split('=')[-1].strip()
break
# decode data, if an encoding was specified
if encoding:
self.data = self.data.decode(encoding, 'replace')
Brian E. Granger
Finishing display system work....
r4528 except:
self.data = None
Brian E. Granger
Updates to the display system....
r4526
MinRK
validate that text display data is text...
r14153 class TextDisplayObject(DisplayObject):
"""Validate that display data is text"""
def _check_data(self):
if self.data is not None and not isinstance(self.data, string_types):
MinRK
xpects typo
r14159 raise TypeError("%s expects text, not %r" % (self.__class__.__name__, self.data))
MinRK
validate that text display data is text...
r14153
class Pretty(TextDisplayObject):
Brian E. Granger
Updates to the display system....
r4526
def _repr_pretty_(self):
return self.data
MinRK
validate that text display data is text...
r14153 class HTML(TextDisplayObject):
Brian E. Granger
Updates to the display system....
r4526
def _repr_html_(self):
return self.data
Dan McDougall
Added __html__() method to the HTML class so that other Python modules...
r10490 def __html__(self):
"""
This method exists to inform other HTML-using modules (e.g. Markupsafe,
htmltag, etc) that this object is HTML and does not need things like
special characters (<>&) escaped.
"""
return self._repr_html_()
Brian E. Granger
Updates to the display system....
r4526
MinRK
validate that text display data is text...
r14153 class Math(TextDisplayObject):
Brian E. Granger
Updates to the display system....
r4526
def _repr_latex_(self):
Brian Granger
Changes to Math class and added Latex class....
r6065 s = self.data.strip('$')
return "$$%s$$" % s
MinRK
validate that text display data is text...
r14153 class Latex(TextDisplayObject):
Brian Granger
Changes to Math class and added Latex class....
r6065
def _repr_latex_(self):
Brian E. Granger
Updates to the display system....
r4526 return self.data
Brian E. Granger
Finishing display system work....
r4528 class SVG(DisplayObject):
Kyle Kelley
Fixed minor typo
r10212
MinRK
extract svg tag from svg files...
r5671 # wrap data in a property, which extracts the <svg> tag, discarding
# document headers
_data = None
Kyle Kelley
Fixed minor typo
r10212
MinRK
extract svg tag from svg files...
r5671 @property
def data(self):
return self._data
Kyle Kelley
Fixed minor typo
r10212
MinRK
extract svg tag from svg files...
r5671 @data.setter
def data(self, svg):
if svg is None:
self._data = None
return
# parse into dom object
Thomas Kluyver
Defer import of xml.dom.minidom
r9390 from xml.dom import minidom
MinRK
unicode fixes in SVG...
r11535 svg = cast_bytes_py2(svg)
MinRK
extract svg tag from svg files...
r5671 x = minidom.parseString(svg)
# get svg tag (should be 1)
found_svg = x.getElementsByTagName('svg')
if found_svg:
svg = found_svg[0].toxml()
else:
# fallback on the input, trust the user
# but this is probably an error.
pass
MinRK
unicode fixes in SVG...
r11535 svg = cast_unicode(svg)
MinRK
extract svg tag from svg files...
r5671 self._data = svg
Kyle Kelley
Fixed minor typo
r10212
Brian E. Granger
Updates to the display system....
r4526 def _repr_svg_(self):
return self.data
MinRK
validate that text display data is text...
r14153 class JSON(TextDisplayObject):
Brian E. Granger
Updates to the display system....
r4526
def _repr_json_(self):
return self.data
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 css_t = """$("head").append($("<link/>").attr({
rel: "stylesheet",
type: "text/css",
href: "%s"
}));
"""
lib_t1 = """$.getScript("%s", function () {
"""
lib_t2 = """});
"""
Brian E. Granger
Updates to the display system....
r4526
MinRK
validate that text display data is text...
r14153 class Javascript(TextDisplayObject):
Brian E. Granger
Updates to the display system....
r4526
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 def __init__(self, data=None, url=None, filename=None, lib=None, css=None):
"""Create a Javascript display object given raw data.
When this object is returned by an expression or passed to the
display function, it will result in the data being displayed
in the frontend. If the data is a URL, the data will first be
Kyle Kelley
Fixed minor typo
r10212 downloaded and then displayed.
MinRK
document initially hidden javascript container
r6425 In the Notebook, the containing element will be available as `element`,
and jQuery will be available. The output area starts hidden, so if
the js appends content to `element` that should be visible, then
it must call `container.show()` to unhide the area.
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120
Parameters
----------
data : unicode, str or bytes
The Javascript source code or a URL to download it from.
url : unicode
A URL to download the data from.
filename : unicode
Path to a local file to load the data from.
lib : list or str
A sequence of Javascript library URLs to load asynchronously before
running the source code. The full URLs of the libraries should
be given. A single Javascript library URL can also be given as a
string.
css: : list or str
A sequence of css files to load before running the source code.
Kyle Kelley
Fixed minor typo
r10212 The full URLs of the css files should be given. A single css URL
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 can also be given as a string.
"""
Thomas Kluyver
Replace references to unicode and basestring
r13353 if isinstance(lib, string_types):
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 lib = [lib]
elif lib is None:
lib = []
Thomas Kluyver
Replace references to unicode and basestring
r13353 if isinstance(css, string_types):
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 css = [css]
elif css is None:
css = []
if not isinstance(lib, (list,tuple)):
raise TypeError('expected sequence, got: %r' % lib)
if not isinstance(css, (list,tuple)):
raise TypeError('expected sequence, got: %r' % css)
self.lib = lib
self.css = css
super(Javascript, self).__init__(data=data, url=url, filename=filename)
Brian E. Granger
Updates to the display system....
r4526 def _repr_javascript_(self):
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 r = ''
for c in self.css:
r += css_t % c
for l in self.lib:
r += lib_t1 % l
r += self.data
Brian Granger
Minor cleanup of Javascript display code.y
r6121 r += lib_t2*len(self.lib)
Brian Granger
Add javascript library and css stylesheet loading to JS class.
r6120 return r
Brian E. Granger
Updates to the display system....
r4526
MinRK
check image header to identify image type,...
r10049 # constants for identifying png/jpeg data
_PNG = b'\x89PNG\r\n\x1a\n'
_JPEG = b'\xff\xd8'
Brian E. Granger
Updates to the display system....
r4526
MinRK
enable retina display of Image objects...
r10803 def _pngxy(data):
"""read the (width, height) from a PNG header"""
ihdr = data.index(b'IHDR')
# next 8 bytes are width/height
w4h4 = data[ihdr+4:ihdr+12]
return struct.unpack('>ii', w4h4)
def _jpegxy(data):
"""read the (width, height) from a JPEG header"""
# adapted from http://www.64lines.com/jpeg-width-height
idx = 4
while True:
block_size = struct.unpack('>H', data[idx:idx+2])[0]
idx = idx + block_size
if data[idx:idx+2] == b'\xFF\xC0':
# found Start of Frame
iSOF = idx
break
else:
# read another block
idx += 2
h, w = struct.unpack('>HH', data[iSOF+5:iSOF+9])
return w, h
Brian E. Granger
Finishing display system work....
r4528 class Image(DisplayObject):
_read_flags = 'rb'
Jerry Fowler
Issue 2053:...
r8077 _FMT_JPEG = u'jpeg'
_FMT_PNG = u'png'
_ACCEPTABLE_EMBEDDINGS = [_FMT_JPEG, _FMT_PNG]
Brian E. Granger
Finishing display system work....
r4528
MinRK
enable retina display of Image objects...
r10803 def __init__(self, data=None, url=None, filename=None, format=u'png', embed=None, width=None, height=None, retina=False):
Andrew Mark
Updated docstring for core.display.Image to make clear that the image is not necessarily displayed on creation.
r12557 """Create a PNG/JPEG image object given raw data.
Brian E. Granger
Finishing display system work....
r4528
Andrew Mark
Updated docstring for core.display.Image to make clear that the image is not necessarily displayed on creation.
r12557 When this object is returned by an input cell or passed to the
Brian E. Granger
Finishing display system work....
r4528 display function, it will result in the image being displayed
in the frontend.
Parameters
----------
data : unicode, str or bytes
MinRK
further clarify Image docstring
r10619 The raw image data or a URL or filename to load the data from.
This always results in embedded image data.
Brian E. Granger
Finishing display system work....
r4528 url : unicode
MinRK
further clarify Image docstring
r10619 A URL to download the data from. If you specify `url=`,
the image data will not be embedded unless you also specify `embed=True`.
Brian E. Granger
Finishing display system work....
r4528 filename : unicode
Path to a local file to load the data from.
MinRK
further clarify Image docstring
r10619 Images from a file are always embedded.
Brian E. Granger
Finishing display system work....
r4528 format : unicode
The format of the image data (png/jpeg/jpg). If a filename or URL is given
for format will be inferred from the filename extension.
embed : bool
Matthias BUSSONNIER
Embed image as default...
r6529 Should the image data be embedded using a data URI (True) or be
loaded using an <img> tag. Set this to True if you want the image
to be viewable later with no internet connection in the notebook.
Default is `True`, unless the keyword argument `url` is set, then
default value is `False`.
Note that QtConsole is not able to display images if `embed` is set to `False`
Jerry Fowler
Issue 2053:...
r8077 width : int
Width to which to constrain the image in html
height : int
Height to which to constrain the image in html
MinRK
enable retina display of Image objects...
r10803 retina : bool
Automatically set the width and height to half of the measured
width and height.
This only works for embedded images because it reads the width/height
from image data.
For non-embedded images, you can just set the desired display width
and height directly.
Matthias BUSSONNIER
Embed image as default...
r6529
Examples
--------
MinRK
further clarify Image docstring
r10619 # embedded image data, works in qtconsole and notebook
# when passed positionally, the first arg can be any of raw image data,
# a URL, or a filename from which to load image data.
# The result is always embedding image data for inline images.
Matthias BUSSONNIER
Embed image as default...
r6529 Image('http://www.google.fr/images/srpr/logo3w.png')
MinRK
further clarify Image docstring
r10619 Image('/path/to/image.jpg')
Image(b'RAW_PNG_DATA...')
Matthias BUSSONNIER
Embed image as default...
r6529
MinRK
further clarify Image docstring
r10619 # Specifying Image(url=...) does not embed the image data,
# it only generates `<img>` tag with a link to the source.
# This will not work in the qtconsole or offline.
Matthias BUSSONNIER
Embed image as default...
r6529 Image(url='http://www.google.fr/images/srpr/logo3w.png')
Brian E. Granger
Finishing display system work....
r4528 """
if filename is not None:
ext = self._find_ext(filename)
elif url is not None:
ext = self._find_ext(url)
Jerry Fowler
Issue 2053:...
r8077 elif data is None:
raise ValueError("No image data found. Expecting filename, url, or data.")
MinRK
allow Image("filename")
r10050 elif isinstance(data, string_types) and (
data.startswith('http') or _safe_exists(data)
):
Brian E. Granger
Finishing display system work....
r4528 ext = self._find_ext(data)
else:
ext = None
Jerry Fowler
Issue 2053:...
r8077
Brian E. Granger
Finishing display system work....
r4528 if ext is not None:
Jerry Fowler
Issue 2053:...
r8077 format = ext.lower()
Brian E. Granger
Finishing display system work....
r4528 if ext == u'jpg' or ext == u'jpeg':
Jerry Fowler
Issue 2053:...
r8077 format = self._FMT_JPEG
Brian E. Granger
Finishing display system work....
r4528 if ext == u'png':
Jerry Fowler
Issue 2053:...
r8077 format = self._FMT_PNG
MinRK
check image header to identify image type,...
r10049 elif isinstance(data, bytes) and format == 'png':
# infer image type from image data header,
# only if format might not have been specified.
if data[:2] == _JPEG:
format = 'jpeg'
Jerry Fowler
Issue 2053:...
r8077
Thomas Kluyver
Replace references to unicode and basestring
r13353 self.format = unicode_type(format).lower()
Matthias BUSSONNIER
Embed image as default...
r6529 self.embed = embed if embed is not None else (url is None)
Jerry Fowler
Issue 2053:...
r8077
if self.embed and self.format not in self._ACCEPTABLE_EMBEDDINGS:
raise ValueError("Cannot embed the '%s' image format" % (self.format))
self.width = width
self.height = height
MinRK
enable retina display of Image objects...
r10803 self.retina = retina
Brian E. Granger
Finishing display system work....
r4528 super(Image, self).__init__(data=data, url=url, filename=filename)
MinRK
enable retina display of Image objects...
r10803
if retina:
self._retina_shape()
def _retina_shape(self):
"""load pixel-doubled width and height from image data"""
if not self.embed:
return
if self.format == 'png':
w, h = _pngxy(self.data)
elif self.format == 'jpeg':
w, h = _jpegxy(self.data)
else:
# retina only supports png
return
self.width = w // 2
self.height = h // 2
Brian E. Granger
Finishing display system work....
r4528
def reload(self):
"""Reload the raw data from file or URL."""
if self.embed:
super(Image,self).reload()
MinRK
enable retina display of Image objects...
r10803 if self.retina:
self._retina_shape()
Brian E. Granger
Finishing display system work....
r4528
def _repr_html_(self):
if not self.embed:
Jerry Fowler
Issue 2053:...
r8077 width = height = ''
if self.width:
width = ' width="%d"' % self.width
if self.height:
height = ' height="%d"' % self.height
return u'<img src="%s"%s%s/>' % (self.url, width, height)
Dan McDougall
Added __html__() method to the HTML class so that other Python modules...
r10490
MinRK
publish image shape as metadata
r10444 def _data_and_metadata(self):
"""shortcut for returning metadata with shape information, if defined"""
md = {}
if self.width:
md['width'] = self.width
if self.height:
md['height'] = self.height
if md:
return self.data, md
else:
return self.data
Brian E. Granger
Finishing display system work....
r4528
def _repr_png_(self):
if self.embed and self.format == u'png':
MinRK
publish image shape as metadata
r10444 return self._data_and_metadata()
Brian E. Granger
Finishing display system work....
r4528
def _repr_jpeg_(self):
if self.embed and (self.format == u'jpeg' or self.format == u'jpg'):
MinRK
publish image shape as metadata
r10444 return self._data_and_metadata()
Brian E. Granger
Finishing display system work....
r4528
def _find_ext(self, s):
Thomas Kluyver
Replace references to unicode and basestring
r13353 return unicode_type(s.split('.')[-1].lower())
Brian Granger
Adding clear_output to kernel and HTML notebook.
r5080
Jonathan Frederic
Added wait flag to clear_output.
r12592 def clear_output(wait=False):
"""Clear the output of the current cell receiving output.
Parameters
----------
wait : bool [default: false]
Wait to clear the output until new output is available to replace it."""
Brian Granger
Adding clear_output to kernel and HTML notebook.
r5080 from IPython.core.interactiveshell import InteractiveShell
MinRK
clear_output implies '\r' for terminal frontends
r6422 if InteractiveShell.initialized():
Jonathan Frederic
Added wait flag to clear_output.
r12592 InteractiveShell.instance().display_pub.clear_output(wait)
MinRK
clear_output implies '\r' for terminal frontends
r6422 else:
from IPython.utils import io
Jonathan Frederic
Removed ability to clear stdout and stderr individually.
r12589 print('\033[2K\r', file=io.stdout, end='')
io.stdout.flush()
print('\033[2K\r', file=io.stderr, end='')
io.stderr.flush()