This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import requests | |
DISCORD_API_URL = 'https://discordapp.com/api/v6' | |
DISCORD_API_SECRET = 'Bot ...' | |
WELCOME_CHANNEL_ID = YOUR_CHANNEL_GOES_HERE | |
COHORT_SIZE = 1000 | |
headers = {'Authorization': DISCORD_API_SECRET, 'Content-Type': 'application/json'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import time | |
import subprocess | |
import shlex | |
names = ['Author A', 'Author B', 'Author C', 'Author D', ] | |
voices = ['Good', 'Bad', 'Cello', 'Pipe Organ'] | |
timer = 60 * 15 | |
while True: |