Python Discord.py客户端语法无效

时间:2018-08-19 03:34:49

标签: python discord discord.py

我正在制造一个不和谐的机器人,并尝试使用Python设置播放状态,我尝试了GitHUb等不同的网站,但最终在我的代码中出现了建议,Python似乎不喜欢notepad++:C:\test.txt 有解决方案吗?

1 个答案:

答案 0 :(得分:0)

下次,请提供错误和源代码!

好吧,在此之后,这是我的源代码,可在python 3.6和discord.py 0.16.12上使用。

import discord
import discord.game

client = discord.client()
@client.event
async def on_message(message):
  if message.author == client.user:
    return

@client.event
async def on_ready():
  await client.change_presence(game=discord.Game(name=" with you ;)"))

client.run("<token>")

只需将其与您拥有的任何代码合并即可。

It works.