RUN THIS TO GENERATE SONG LIST

This commit is contained in:
patrlim 2024-06-10 21:48:19 +02:00 committed by GitHub
parent 37ebf37e13
commit 81d0d42598
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
main.py Normal file
View file

@ -0,0 +1,16 @@
import os
json = open("songs.json", "w", encoding="utf-8")
json.write('{\n "songs":[\n')
i = 0
for file in os.listdir():
i += 1
if file[-4:] != ".ogg":
continue
json.write(" {\n" + ' "name":' + '"' + file.replace(".ogg","") + '",' + "\n")
json.write(' "url":' + '"' + 'https://github.com/patrlim/musicshite/raw/main/' + file.replace(" ","%20") + '"' + "\n }")
if i != len(os.listdir()):
json.write(",")
json.write("\n")
json.write(' ]\n}')