Pairing is fine but the url for the channellist is different i found the new url but i must miss something becouse my change doesent work
def getChannels(self):
r = self._getReq('channeldb/tv/channelLists/{allcab}')
if r:
self.channels = dict(sorted({chn['name']:chn for chn in r['Channel']}.items(), key=lambda a: a[0].upper()))
self.channel_source_list = ['📺 ' + channelName for channelName in self.channels.keys()]
the result if i run the command manually is like this i have not enoug python kwnoledge to fix this myself i hope someone can help me
{
"version": 6,
"id": "allcab",
"operator": "KDG",
"installCountry": "Germany",
"listType": "TV",
"medium": "cable",
"Channel": [{
"ccid": 924,
"preset": 1,
"name": "Das Erste HD",
"onId": 0,
"tsid": 1051,
"sid": 11100,
"type": "DVB_C",
"serviceType": "audio_video",
"logoVersion": "_id"
}, {
"ccid": 923,
"preset": 2,
"name": "ZDF HD",
"onId": 0,
"tsid": 1079,
"sid": 11110,
"type": "DVB_C",
"serviceType": "audio_video",
"logoVersion": "_id"
}, {
"ccid": 922,
"preset": 3,
"name": "NDR FS HH HD",
"onId": 0,
"tsid": 1101,
"sid": 10329,
"type": "DVB_C",
"serviceType": "audio_video",
"logoVersion": "_id"
}