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
| #!/usr/bin/env python3 | |
| from random import random | |
| import requests | |
| import time | |
| import json | |
| import sys | |
| import re | |
| FORM = 1 | |
| FIELDS = 1 |
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 requests | |
| # ---------- CONSTANTS ---------- | |
| OPTIC_ID = 5026801 | |
| RADIANT = 0 | |
| DIRE = 1 | |
| NONE = 2 | |
| SEP = '\n***\n' |
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 requests | |
| import random | |
| title = "SHREK" | |
| descriptions = [ | |
| "Somebody once told me the world is macaroni", | |
| "I ain't the sharpest tool in the shed", | |
| "She was looking kind of dumb with her finger and her thumb", | |
| "In the shape of an L on her forehead" | |
| ] |
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
| from __future__ import print_function | |
| import sys | |
| import enchant | |
| try: | |
| input = raw_input | |
| except NameError: | |
| pass | |
| def permutations(word): |