View Discord webhook system
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
#open with Pycharm or idle. this is python file. | |
from discord_webhook import DiscordWebhook, DiscordEmbed | |
while True: | |
which = str(input("shout or chat?\n")) | |
shout = str("shout") | |
chat = str("chat") | |
if which == shout: | |
embedortext = str(input("embed or text?\n")) | |
if embedortext == "embed": |