diff --git a/post.py b/post.py index 2221dd6..1c596b5 100644 --- a/post.py +++ b/post.py @@ -24,25 +24,19 @@ except: meta = json.load(open('meta.json', 'r')) takes = json.load(open('takes.json')) -take = random.choice(takes['templates']).format( - ideology = random.choice(takes['ideologies']), - ideology2 = random.choice(takes['ideologies']), - thing = random.choice(takes['things']), - thing2 = random.choice(takes['things']), - thing3 = random.choice(takes['things']), - site = random.choice(takes['sites']), - ideolog = random.choice([i[:-1] + "t" for i in takes['ideologies'] if i.endswith("ism")]) -) +args = { + 'ideology': random.choice(takes['ideologies']), + 'ideology2': random.choice(takes['ideologies']), + 'thing': random.choice(takes['things']), + 'thing2': random.choice(takes['things']), + 'thing3': random.choice(takes['things']), + 'site': random.choice(takes['sites']), + 'ideolog': random.choice([i[:-1] + "t" for i in takes['ideologies'] if i.endswith("ism")]) +} -cw = random.choice(takes['content warnings']).format( - ideology = random.choice(takes['ideologies']), - ideology2 = random.choice(takes['ideologies']), - thing = random.choice(takes['things']), - thing2 = random.choice(takes['things']), - thing3 = random.choice(takes['things']), - site = random.choice(takes['sites']), - ideolog = random.choice([i[:-1] + "t" for i in takes['ideologies'] if i.endswith("ism")]) -) +take = random.choice(takes['templates']).format(**args) + +cw = random.choice(takes['content warnings']).format(**args) print(take)