(self)
| 103 | example = "https://agn.ph/gallery/post/show/12345/" |
| 104 | |
| 105 | def posts(self): |
| 106 | url = f"{self.root}/gallery/post/show/{self.groups[0]}/?api=xml" |
| 107 | post = self.request_xml(url) |
| 108 | return (self._xml_to_dict(post),) |
nothing calls this directly
no test coverage detected