This commit is contained in:
doms9 2025-08-28 19:43:35 -04:00
parent e1fd9efb8c
commit 00000d95a1
4 changed files with 252 additions and 66 deletions

View file

@ -44,8 +44,8 @@ async def main() -> None:
additions = tvpass.urls | fstv.urls
lines = [
f'#EXTINF:-1 tvg-chno="{chnl_number}" tvg-id="(N/A)" tvg-name="{event}" tvg-logo="https://i.gyazo.com/ec27417a9644ae517196494afa72d2b9.png" group-title="Live Events",{event}\n{url}'
for chnl_number, (event, url) in enumerate(
f'#EXTINF:-1 tvg-chno="{chnl_number}" tvg-id="(N/A)" tvg-name="{event}" tvg-logo="{info["logo"]}" group-title="Live Events",{event}\n{info["url"]}'
for chnl_number, (event, info) in enumerate(
sorted(additions.items()),
start=chnl_number + 1,
)