Inheritance diagram for IPython.core.display:
Top-level display functions for displaying object in different formats.
Authors:
Bases: object
An object that wraps data to be displayed.
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a display an PNG/JPEG image given raw data.
When this object is returned by an expression or passed to the display function, it will result in the image being displayed in the frontend.
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
 format : unicode 
 embed : bool 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Bases: IPython.core.display.DisplayObject
Create a 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. 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 and then displayed. If
| Parameters : | data : unicode, str or bytes 
 url : unicode 
 filename : unicode 
  | 
|---|
Reload the raw data from file or URL.
Clear the output of the current cell receiving output.
Optionally, each of stdout/stderr or other non-stream data (e.g. anything produced by display()) can be excluded from the clear event.
By default, everything is cleared.
| Parameters : | stdout : bool [default: True] 
 stderr : bool [default: True] 
 other : bool [default: True] 
  | 
|---|
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 : | objs : tuple of objects 
 include : list or tuple, optional 
 exclude : list or tuple, optional 
  | 
|---|
Display the HTML representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the Javascript representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the JPEG representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the JSON representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the LaTeX representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the PNG representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the pretty (default) representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|
Display the SVG representation of an object.
| Parameters : | objs : tuple of objects 
 raw : bool 
  | 
|---|