cf.Count.history¶
-
Count.
history
¶ The history CF property.
A list of the applications that have modified the original data. See http://cfconventions.org/latest.html for details.
Examples:
>>> f.history = 'created on 2012/10/01' >>> f.history 'created on 2012/10/01' >>> del f.history
>>> f.set_property('history', 'created on 2012/10/01') >>> f.has_property('history') True >>> f.get_property('history') 'created on 2012/10/01' >>> f.del_property('history')