0t79JeIfK01RHyzo@lemmy.mltoWorld News@lemmy.ml•Ukraine's Zelenskyy says he wants to end war with Russia through diplomacy next yearEnglish
3·
4 days agoIt’s kinda wild.
https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md
It also works in places I wouldn’t have expected it, like Twitch livestreams
yt-dlp https://www.twitch.tv/amazonmusic
It does workI know it at least partially worksclass add: count = 0 def __init__(self): add.count += 1 self.value = add.count def __str__(self): if self.value == 1: return "3" elif self.value == 2: return "7" else: return "32" result = add() # 1 2 print(result) result = add() # 3 4 print(result) result = add() # 3 4 5 20 print(result)