LoginSignup
0
0

More than 1 year has passed since last update.

discord.py 2.0.0ついにリリース

Last updated at Posted at 2022-08-20

2022/8/18、12時ごろ、ついにdiscord.pyのバージョン2.0.0がリリースされました。

主な変更点

pip install discord.py[speed]

というのができたらしい?

app_commandsの追加

スラッシュコマンドのこと。
これは僕の前の記事や、他の記事もいろいろ出ているのでググればわかる。

cogの非同期化

client.load_extensionclient.add_cogが非同期になった。
on_readyの実行時にawait client.add_cogとする。

Intentsの必須化

client=discord.Client()intents=Intents.なんか=Trueとしてintents=intentsとする。

discord.ui.View

主に、ボタンやセレクトメニュー、テキストインプットの実装。
これもさまざまな記事が書かれているので省く。

Componets

これはまだよくわからない。
ボタンの配置などを制御するらしい。

Paginator

おそらくdiscord.py 1の時にbuttonsというパッケージがあったからか、追加された。

エラーログ

on_errorかどこかで指定するらしい。
ドキュメント参照

参照

https://github.com/Rapptz/discord.py
https://pypi.org/project/discord.py
https://discordpy.readthedocs.io/en/latest/
https://discord.gg/dpy

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0