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 dhooks import Webhook | |
| import os | |
| import time | |
| from termcolor import colored | |
| clear = lambda: os.system('cls') | |
| def main(): | |
| clear() | |
| hook = input(colored("please enter webhook url: ",'yellow')).replace("ptb.", "").replace("canary.", "") | |
| try: | |
| Webhook(hook).get_info() |