Diff
Differences From Artifact [feab3a3374]:
- File contrib/vtuner.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: 4850) [annotate] [blame] [check-ins using]
To Artifact [999b1f5e71]:
- File contrib/vtuner.py — part of check-in [4419f22d5d] at 2019-07-15 14:38:25 on branch trunk — vTuner: minor fix from stream_update regex (user: mario, size: 4848) [annotate] [blame] [check-ins using]
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # encoding: UTF-8 # api: streamtuner2 # title: vTuner # url: http://vtuner.com/ # description: Huge station list by music service provider |
| ︙ | |||
84 85 86 87 88 89 90 | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | - + |
# cancel page scan if no further result links
if not re.search(r"""<A HREF="[^>]+&iCurrPage=%s">""" % (i + 1), html, re.I):
log.DATA("No further results at page %s" % i)
break
# crude <tr> extraction
rx_radio = re.compile(r"""
|
| ︙ |