We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfec458 commit ea2fbcfCopy full SHA for ea2fbcf
imgurpython/client.py
@@ -685,3 +685,7 @@ def default_memes(self):
685
def default_topics(self):
686
topics = self.make_request('GET', 'topics/defaults')
687
return [Topic(topic) for topic in topics]
688
+
689
+ def gallery_topic_item(self, topic_id, item_id):
690
+ response = self.make_request('GET', 'topics/%s/%s' % (topic_id, item_id))
691
+ return build_gallery_images_and_albums(response)
0 commit comments