cf.Field.title¶
-
Field.
title
¶ The title CF property.
A short description of the file contents from which this field was read, or is to be written to. See http://cfconventions.org/latest.html for details.
Examples: >>> f.title = 'model data' >>> f.title 'model data' >>> del f.title
>>> f.setprop('title', 'model data') >>> f.getprop('title') 'model data' >>> f.delprop('title')