39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Surfmusik sharing site
class surfmusik (ChannelPlugin):
# module attributes
module = "surfmusik"
listformat = "m3u"
has_search = False
lang = "DE" # last configured categories
base = {
"DE": ("http://www.surfmusik.de/", "genre/", "land/"),
"EN": ("http://www.surfmusic.de/", "format/", "country/"),
}
|
|
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Surfmusik sharing site
class surfmusik (ChannelPlugin):
# module attributes
module = __name__
listformat = "m3u"
has_search = False
lang = "DE" # last configured categories
base = {
"DE": ("http://www.surfmusik.de/", "genre/", "land/"),
"EN": ("http://www.surfmusic.de/", "format/", "country/"),
}
|