Created
August 5, 2020 18:43
-
-
Save ziot/84b471cad505ea2b08c1bd1e39eb0c9a to your computer and use it in GitHub Desktop.
Mr.Beast Riddle - Dictionary / Word Solver
This file contains 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 requests,json | |
import multiprocessing | |
cookie = "" | |
def getNextWord(num): | |
url = "https://www.mrriddle.com/phone/api/get-word" | |
r = requests.post(url, cookies = { | |
"bitlagoon": cookie | |
}, data = { | |
"action": "next" | |
}) | |
print r.text | |
x = list(range(1,7000)) | |
p = multiprocessing.Pool(10) | |
p.map(getNextWord, x) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment