Section » fieldsets
fieldsets(name) → list
Retrieve fieldsets with the specified name from this current section.
enoimage:
src = red-roses.jpg
image:
src = white-roses.jpg
python>>> document = enopy.parse(input)
>>> images = document.fieldsets('image')
>>> for image in images:
... print(image.entry('src'))
Parameters
nameA string specifying the name of the fieldsets to retrieve.
Return value
A list of Fieldset
s.