Diff
Differences From Artifact [05a66c0287]:
- File channels/radionomy.py — part of check-in [09dec64f41] at 2016-12-16 16:26:55 on branch trunk — Reverted all `module = __name__` assignments, because that was carrying the module over, not the base classname. Added #extraction-method: meta information to channel plugins. (user: mario, size: 5061) [annotate] [blame] [check-ins using]
To Artifact [04a11c793d]:
- File channels/radionomy.py — part of check-in [0c7040e314] at 2016-12-18 14:04:19 on branch trunk — Add more .progress() indication (user: mario, size: 5109) [annotate] [blame] [check-ins using]
84 85 86 87 88 89 90 91 92 93 94 95 96 97 | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | + | # https://www.radionomy.com/de/style/GENRE html = ahttp.get(req, ajax=1, referer=1) # https://www.radionomy.com/de/OnAir/Update self.onair_update(req) # collect additional pages for i in range(0, int(conf.radionomy_pages) - 1): self.progress(conf.radionomy_pages) add = ahttp.get(req, { "scrollOffset": i }, post=1, ajax=1, referer=1) if add.find("browseRadio") < 0: break html += add self.onair_update(req) # extractzz |