示例#1
0
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)
示例#2
0
文件: bruh.py 项目: thgeraads/selfbot
async def zalgo(msg):
    content = msg.content.replace(f"{prefix}zalgo ", "")
    await msg.delete()
    await msg.channel.send(zalgoify.process(content))
示例#3
0
 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}')
示例#4
0
 def response(self, query, message):
     return zalgoify.process(query)