如何在文件discord.py中发送文本

时间:2018-11-29 01:33:30

标签: discord.py

我已经在工作文件中制作了一个.txt文件,但在我编写该文件时不起作用 this

SELECT 
COUNT(DISTINCT [a])

FROM    
(SELECT Column1 [a]
FROM TableA
UNION ALL
SELECT Column2
FROM TableA 

) [x]

1 个答案:

答案 0 :(得分:0)

send_file要求将目的地作为第一个参数(例如文本通道对象)传递。

您需要以某种方式在readlist中获得通道对象,最简单的方法可能是在pass_context=True批注中使用command并为上下文对象添加一个参数到readlist通过了。例如

@client.command(pass_context=True)
async def readlist(ctx):
    # you can now get the channel the command was called in with ctx.message.channel