def
inspect
cauldron.display.inspect()

Inspects the data and structure of the source dictionary object and adds the results to the display for viewing.

Arguments
Required
Optional
source

dict

A dictionary object to be inspected.

Basic Usage
01
02
03
04
05
06
07
08
09
10
import cauldron as cd data = dict( a={'x': 1, 'y': 2, 'z': 3}, b={'x': True, 'y': False, 'z': True}, c={'x': 'Hello', 'y': 'World', 'z': 'Foo'} ) # Add to the display cd.display.inspect(data)