def devilQuote(): response = requests.get( "https://evilinsult.com/generate_insult.php?lang=en&type=json") json_data = json.loads(response.text) quote = json_data['insult'] quote = zalgoify.process(quote.upper()) return (quote)
async def zalgo(msg): content = msg.content.replace(f"{prefix}zalgo ", "") await msg.delete() await msg.channel.send(zalgoify.process(content))
async def glitch(self, ctx, *text): t = zalgoify.process(text) if len(t) > 2000: return await ctx.send('Your text is too long!') else: return await ctx.send(f'{t}')
def response(self, query, message): return zalgoify.process(query)