#Discord.pyとは
Discord Botをpythonで書くためのライブラリです。
Botの登録方法はこちらを。
また、日本人向けのDiscord.pyのサーバーはこちら
#コード
bot_example.py
import discord
client = discord.Client()
@client.event
async def on_ready():
print('ログ中:')
print(f'Botの名前: {client.user.name}')
print(f'Botのid: {client.user.id}')
print('------')
@client.event
async def on_message(message):
if message.content.startswith('私は誰でしょう?'):
reply = 'あなたは{.name}さんです'.format(message.author)
await message.channel.send(reply)
# botの接続と起動
# (tokenにはbotアカウントのアクセストークンを入れてください)
client.run('token')