25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 | # Beforehand an account needs to be configured in the settings. (Registration
# on myoggradio doesn't require an email address or personal information.)
#
from channels import *
from config import *
from action import action
from uikit import uikit
import ahttp as http
import re
import json
from compat2and3 import StringIO
import copy
from uikit import gtk
# open source radio sharing stie
class myoggradio(ChannelPlugin):
# settings
title ="MOR"
#module = "myoggradio"
api = "http://www.myoggradio.org/"
listformat = "url/direct"
# hide unused columns
titles = dict(playing=False, listeners=False, bitrate=False)
# category map
categories = ['common', 'personal']
default = 'common' |
|
|
| 25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57 | # Beforehand an account needs to be configured in the settings. (Registration
# on myoggradio doesn't require an email address or personal information.)
#
from channels import *
from config import *
import action
from uikit import uikit
import ahttp as http
import re
import json
from compat2and3 import StringIO
import copy
from uikit import gtk
# open source radio sharing stie
class myoggradio(ChannelPlugin):
# settings
title ="MOR"
#module = "myoggradio"
api = "http://www.myoggradio.org/"
listformat = "srv"
# hide unused columns
titles = dict(playing=False, listeners=False, bitrate=False)
# category map
categories = ['common', 'personal']
default = 'common' |