diff --git a/websitemodule.py b/websitemodule.py index 7b6e5af..34e78d6 100644 --- a/websitemodule.py +++ b/websitemodule.py @@ -2,14 +2,13 @@ import os import random import requests -# Ana kod Halhadus tarafından yazılmış ve DeepSeek-R1 tarafından optimize ve stilize edilmiştir. +# Main code written by Halhadus, optimized and stylized by DeepSeek-R1 -def randomize(listurl): - # Veri çekme ve temizleme +def randomize(listurl): # Data fetching and cleaning musiclist = requests.get(listurl).text.split("\n") musiclist = [m.strip() for m in musiclist if m.strip() != ""] - # HTML başlangıç template'i + # HTML base template html = """
@@ -69,21 +68,20 @@ def randomize(listurl):