cf.Field.attributes

Field.attributes

A dictionary of the attributes which are not CF properties.

Examples:
>>> f.attributes
{}
>>> f.foo = 'bar'
>>> f.attributes
{'foo': 'bar'}
>>> f.attributes.pop('foo')
'bar'
>>> f.attributes
{'foo': 'bar'}