walk_set(self, photoset_id, per_page=50, ...)
source code
Other arguments can be passed, as documented in the flickr.photosets.getPhotos API call in the Flickr API documentation, except for page because all pages will be returned eventually.
如果我只想要20个结果,我该怎么做?否则,它只是继续运行并获取数据
谢谢
答案 0 :(得分:1)
如getPhotos所述,你可以这样做:
walk_set(self, photoset_id, per_page=20, page=1)
答案 1 :(得分:0)
如果您只想要20张照片,请不要使用walk_set
,因为它旨在迭代一组中的所有照片。直接使用flickr.photosets.getPhotos
,并指定per_page=20
和page=1
。