summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2025-03-19 14:38:17 -0400
committerTristan Williams <tgwil@tgwil.net>2025-03-19 14:38:17 -0400
commit38af77ef4dd82ac5ee2ad3473fb77335e1273308 (patch)
treed789e88eb585cc2fa2e3b51aa03e84acae2aa17b
parentFix typo (diff)
downloadsortashuffle-38af77ef4dd82ac5ee2ad3473fb77335e1273308.tar.gz
sortashuffle-38af77ef4dd82ac5ee2ad3473fb77335e1273308.tar.bz2
sortashuffle-38af77ef4dd82ac5ee2ad3473fb77335e1273308.zip
I should test things before I commit
-rw-r--r--sortashuffle.py56
1 files changed, 18 insertions, 38 deletions
diff --git a/sortashuffle.py b/sortashuffle.py
index 14cd082..aac1e51 100644
--- a/sortashuffle.py
+++ b/sortashuffle.py
@@ -19,41 +19,21 @@ TARGET = "<ENTER TARGET DIR>"
19SOURCES = ["<SOURCE DIR>", 19SOURCES = ["<SOURCE DIR>",
20 "<SOURCE DIR>"] 20 "<SOURCE DIR>"]
21 21
22def get_episode_list(): 22SHOWLIST = [[f for f in os.listdir(source)] for source in SOURCES]
23 """Get list of episodes for each show in SOURCES.""" 23
24 SHOWLIST = [[f for f in os.listdir(source)] for source in SOURCES] 24WEIGHTLIST = [len(show) for show in SHOWLIST]
25 25
26def get_weight_list(): 26SHUFFLED = []
27 """Determine weights (# of episodes) so shows get spread evenly.""" 27while any(SHOWLIST):
28 WEIGHTLIST = [len(show) for show in SHOWLIST] 28 selection = random.choices(range(len(SHOWLIST)), weights=WEIGHTLIST, k=1)[0]
29 29 SHUFFLED.append(SOURCES[selection] + "//" + SHOWLIST[selection].pop(0))
30def shuffle(): 30 WEIGHTLIST[selection] = len(SHOWLIST[selection])
31 """Shuffle shows, randomly selected according to weight.""" 31
32 SHUFFLED = [] 32count = 0
33 while any(SHOWLIST): 33for episode in SHUFFLED:
34 selection = random.choices(range(len(SHOWLIST)), weights=WEIGHTLIST, k=1)[0] 34 os.symlink(episode, TARGET + "//" + str(count))
35 SHUFFLED.append(SOURCES[selection] + "//" + SHOWLIST[selection].pop(0)) 35 count += 1
36 WEIGHTLIST[selection] = len(SHOWLIST[selection]) 36
37 37INDEX = open(TARGET + "//" + "_PLAYLIST_INDEX.txt", 'w')
38def deploy_symlinks(): 38INDEX.write("\n".join(SHUFFLED))
39 """Deploy a symlink for each episode in the playlist.""" 39INDEX.close()
40 count = 0
41 for episode in SHUFFLED:
42 os.symlink(episode, TARGET + str(count))
43 count += 1
44
45def deploy_index():
46 """Deploy playlist index file."""
47 INDEX = open(TARGET + "//" + "_PLAYLIST_INDEX.txt", 'w')
48 INDEX.write("\n".join(SHUFFLED))
49 INDEX.close()
50
51def main():
52 get_episode_list()
53 get_weight_list()
54 shuffle()
55 deploy_symlinks()
56 deploy_index()
57
58if __name__=="__main__":
59 main()