87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102 | for bookmark in group.findall("bookmark"):
r.append({
"genre": group.attrib["name"],
"title": bookmark.attrib["name"],
"url": bookmark.attrib["url"],
"playing": "",
})
except:
pass
return r
# send to
def share(self, *w):
row = self.parent.row()
if row: |
|
|
| 87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102 | for bookmark in group.findall("bookmark"):
r.append({
"genre": group.attrib["name"],
"title": bookmark.attrib["name"],
"url": bookmark.attrib["url"],
"playing": "",
})
except Exception as e:
log.DATA("Extracting from radiotray bookmarks.xml failed:", e)
return r
# send to
def share(self, *w):
row = self.parent.row()
if row: |