(self, page)
| 70 | return data |
| 71 | |
| 72 | def images(self, page): |
| 73 | extr = text.extract_from(page) |
| 74 | cdns = util.json_loads(extr("var cdns =", ";"))[0] |
| 75 | imgs = util.json_loads(extr("var chapterImages =", ";")) |
| 76 | |
| 77 | if cdns[-1] != "/": |
| 78 | cdns += "/" |
| 79 | |
| 80 | return [ |
| 81 | (cdns + path, None) |
| 82 | for path in imgs |
| 83 | ] |
| 84 | |
| 85 | |
| 86 | class ManganeloMangaExtractor(ManganeloExtractor, MangaExtractor): |