diff --git a/weboob/capabilities/gallery.py b/weboob/capabilities/gallery.py index bc4f1621..dbb09fae 100644 --- a/weboob/capabilities/gallery.py +++ b/weboob/capabilities/gallery.py @@ -132,3 +132,12 @@ class ICapGallery(IBaseCap): :rtype: :class:`Gallery` """ raise NotImplementedError() + + def iter_gallery_images(self, gallery): + """ + Iterate images from a Gallery. + + :type gallery: BaseGallery + :rtype: iter(BaseImage) + """ + raise NotImplementedError()