cf.dump

cf.dump(x, **kwargs)

Print a description of an object to stdout.

If the object has a dump method then this is used to create the output. In this case the arguments are passed to the dump method. Otherwise the arguments are ignored and str(x) is printed.

Parameters :
x : object, optional

The object to print.

kwargs :

Returns :

None

8Examples*

>>> cf.dump(x)
>>> cf.dump(f, id='field2')

Previous topic

cf.aggregate

Next topic

cf.read

This Page