bundles / IPython 9.14.0.dev / IPython / core / formatters / format_display_data
function
IPython.core.formatters:format_display_data
Signature
def format_display_data ( obj , include = None , exclude = None ) Summary
Return a format data dict for an object.
Extended Summary
By default all format types will be computed.
Parameters
obj: objectThe Python object whose format data will be computed.
Returns
format_dict: dictA dictionary of key/value pairs, one or each format that was generated for the object. The keys are the format types, which will usually be MIME type strings and the values and JSON'able data structure containing the raw data for the representation in that format.
include: list or tuple, optionalA 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, optionalA list of format type string (MIME types) to exclude in the format data dict. If this is set all format types will be computed, except for those included in this argument.
Aliases
-
IPython.core.formatters.format_display_data