Skip to content

Instantly share code, notes, and snippets.

View AliveChive's full-sized avatar
:shipit:
alivechive.xyz

AliveChive

:shipit:
alivechive.xyz
View GitHub Profile
@AliveChive
AliveChive / hook.py
Created February 23, 2020 04:08
a discord webhook controller
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()