From 9425079a2b95bab0091e230ac2ba2cc0a181d8d3 Mon Sep 17 00:00:00 2001 From: Halhadus Date: Fri, 7 Feb 2025 22:57:21 +0300 Subject: [PATCH] Updated and renamed website module --- ...omizermodule.py => randomizermodule.py.old | 0 websitemodule.py | 142 ++++++++++++++++++ 2 files changed, 142 insertions(+) rename randomizermodule.py => randomizermodule.py.old (100%) create mode 100644 websitemodule.py diff --git a/randomizermodule.py b/randomizermodule.py.old similarity index 100% rename from randomizermodule.py rename to randomizermodule.py.old diff --git a/websitemodule.py b/websitemodule.py new file mode 100644 index 0000000..7b6e5af --- /dev/null +++ b/websitemodule.py @@ -0,0 +1,142 @@ +import os +import random +import requests + +# Ana kod Halhadus tarafından yazılmış ve DeepSeek-R1 tarafından optimize ve stilize edilmiştir. + +def randomize(listurl): + # Veri çekme ve temizleme + musiclist = requests.get(listurl).text.split("\n") + musiclist = [m.strip() for m in musiclist if m.strip() != ""] + + # HTML başlangıç template'i + html = """ + + + + + + Halhadus' Music List + + + + + + + + + +
+ + + +

Music List

+ + +
+ + +
""" + + random.shuffle(musiclist) + musiccount = 0 + + # Müzik kartları oluşturma + for music in musiclist: + try: + parts = music.split(" --- ") + if len(parts) != 3: + continue + + title, vid, platform = parts + musiccount += 1 + + # Thumbnail URL'si + thumbnail_url = f"https://img.youtube.com/vi/{vid}/hqdefault.jpg" + + # Platforma göre URL belirleme + base_url = "music.youtube.com" if platform == "YTM" else "www.youtube.com" + yt_url = f"https://{base_url}/watch?v={vid}" + + # HTML blok + html += f""" +
+
+ #{musiccount} + {title} + +
+ {title} Cover Art +
""" + + except Exception as e: + print(f"Error processing: {music} - {str(e)}") + + # Footer kısmı + html += f""" +
+
+ Total Tracks: {musiccount} +
+
+
+ +""" + + return html