-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandomish.py
42 lines (36 loc) · 1.25 KB
/
randomish.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import json
import os
import secrets
from collections import deque
"""
I started seeing the same styles propagate over and over again and realized I
wanted something a little less random and more intentional yet different every
time. Something random...ish. So this is a deque that gets randomized, recorded,
consumed, destroyed, and re-generated. So maybe it should be called RARECODEREd.
"""
def shuffle_with_secrets(lst):
shuffled = []
while lst:
element = secrets.choice(lst)
lst.remove(element)
shuffled.append(element)
return shuffled
def load_or_initialize_deque(style_list, file_path):
if os.path.exists(file_path):
with open(file_path, 'r') as file:
return deque(json.load(file))
else:
return deque(shuffle_with_secrets(style_list))
def save_deque(file_path, dq):
with open(file_path, 'w') as file:
json.dump(list(dq), file)
def randomish(style_list, file_path='randomish_queue.json', consume=True):
dq = load_or_initialize_deque(style_list, file_path)
if not dq:
dq = deque(shuffle_with_secrets(style_list))
if consume:
style_for_today = dq.popleft()
else:
style_for_today = dq[0]
save_deque(file_path, dq)
return style_for_today