
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
discord.py(2.0.0) 備忘録 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
discord.py(2.0.0) 備忘録 - Qiita
import discord from discord import app_commands from discord.ext import tasks guild=discord.Objec... import discord from discord import app_commands from discord.ext import tasks guild=discord.Object(#サーバーid) client=discord.Client(intents=discord.Intents.default())#intentsは確か必須になりました。 tree=app_commands.CommandTree(client) @client.event async def on_ready(): await tree.sync(guild=guild) loop.start() @tree.command(guild=guild) async def test(i): await i.response.send_message("a") import discord fro