Skip to content

Instantly share code, notes, and snippets.

@ziot
Created August 5, 2020 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziot/84b471cad505ea2b08c1bd1e39eb0c9a to your computer and use it in GitHub Desktop.
Save ziot/84b471cad505ea2b08c1bd1e39eb0c9a to your computer and use it in GitHub Desktop.
Mr.Beast Riddle - Dictionary / Word Solver
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