1
0
Fork 0
mirror of https://github.com/LaQuay/TDTChannels.git synced 2025-06-01 02:09:25 +02:00

Minor Ambit

This commit is contained in:
Marc 2018-09-23 11:52:56 +02:00
parent 53cc99d844
commit 9c270bbc6e
3 changed files with 1 additions and 2 deletions
script

33
script/ambit.py Normal file
View file

@ -0,0 +1,33 @@
class Ambito:
name = None
channels = []
def __init__(self, name, channels):
self.name = name
self.channels = channels
def __channels_to_json__(self):
channel_list = []
for channel in self.channels:
channel_list.append(channel.to_json())
return channel_list
def to_json(self):
return {
"name": self.name,
"channels": self.__channels_to_json__()
}
def __channels_to_m3u8__(self):
channels_list = ""
for channel in self.channels:
for option in channel.get_options():
if option.is_m3u8_valid():
channels_list += channel.to_m3u8(option)
return channels_list
def to_m3u8(self):
return self.__channels_to_m3u8__()
def __str__(self):
return self.name