renamed a variable

also crashing out in the comments
This commit is contained in:
Kristy Fournier 2025-01-15 11:19:44 -05:00
parent 7c580b7bef
commit 1802ec3b79

View file

@ -5,7 +5,7 @@ import json,vlc,threading,time,random, argparse
# Argparse Stuff # Argparse Stuff
parser=argparse.ArgumentParser(description="Options for the Webby Bits") parser=argparse.ArgumentParser(description="Options for the Webby Bits")
parser.add_argument('-p','--port',help="Pick a port to host on, not the same as the web (client) port",default='19054') parser.add_argument('-p','--port',help="Pick a port to host on, not the same as the web (client) port",default='19054')
porttheuserpicked=parser.parse_args().port portTheUserPicked=parser.parse_args().port
#Initializing all the global stuff #Initializing all the global stuff
random.seed() random.seed()
global partyMode global partyMode
@ -132,6 +132,8 @@ def getPlaylist():
# what went through my head to make past-me think this is a good idea??? # what went through my head to make past-me think this is a good idea???
# i mean actually looping through once still shouldn't ever take that long # i mean actually looping through once still shouldn't ever take that long
# but like a binary search must exist in python and be faster # but like a binary search must exist in python and be faster
# wait no binary search only helps if they're sorted
# i mean i guess i could sort them and make searching faster
for k in songDatabaseList: for k in songDatabaseList:
if k["file"] == songNext: if k["file"] == songNext:
temp = k.copy() temp = k.copy()
@ -141,11 +143,14 @@ def getPlaylist():
for i in playlist: for i in playlist:
# oh my goodness i did it again # oh my goodness i did it again
# i seriously need to rewrite the databaseGenerator and this code # i seriously need to rewrite the databaseGenerator and this code
# wait isn't this literally useless code???
# oh no the playlist only contains names
# i should really have used an object for this.
for j in songDatabaseList: for j in songDatabaseList:
if j["file"] == i: if j["file"] == i:
tempPlaylist.append(j) tempPlaylist.append(j)
return tempPlaylist return tempPlaylist
if __name__ == "__main__": if __name__ == "__main__":
app.run(host='0.0.0.0', port=porttheuserpicked) app.run(host='0.0.0.0', port=portTheUserPicked)