在邮件删除邮件Discord.py上

时间:2018-01-20 00:08:43

标签: python python-3.x discord discord.py

import discord
import asyncio
client = discord.Client()

@client.event
async def on_ready():
    print ("I’m Now Online")

@client.event
async def on_message(message):
  if message.author == client.user:
    return
  elif message.content.startswith("deletethis"):

我很想知道当消息的作者发送上述命令时,我能够添加到这个以删除上面的命令。 愿有人帮忙创造吗?我已经通过大脑尝试了自己,并没有在网上找到任何东西,所以我正在寻找一些帮助。

1 个答案:

答案 0 :(得分:1)

for async只需

await message.delete()

否则rewrite只做

awk '/^ +\(/{a=1}/\)$/{a=0;print}a==1'  filename