回答編集履歴
2
teratailのサイレント破壊的更新によって壊れてしまった部分を修正
test
CHANGED
@@ -1,23 +1,13 @@
|
|
1
1
|
glitchでdiscord.pyを動作させるためには、少し工夫が必要です。
|
2
|
-
|
3
2
|
僕が作成したdiscord-botのテンプレートを張っておきます。
|
4
|
-
|
5
3
|
[https://glitch.com/edit/#!/discord-python-test](https://glitch.com/edit/#!/discord-python-test)
|
6
|
-
|
7
4
|
```python
|
8
|
-
|
9
5
|
import discord
|
10
|
-
|
11
6
|
import os
|
12
|
-
|
13
7
|
#略
|
14
|
-
|
15
8
|
client.run(os.getenv('TOKEN'))
|
16
|
-
|
9
|
+
```
|
17
|
-
|
10
|
+
このコードで`import os`と`os.getenv("TOKEN")`は必須です。
|
18
|
-
|
19
11
|
これがなければ.envファイルから情報が取れません。
|
20
|
-
|
21
12
|
あとはremixしてあなたの思い通りのコードを書いてください。
|
22
|
-
|
23
13
|
discordのbot作り、応援しています。
|
1
リンクが飛べるように変更
test
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
僕が作成したdiscord-botのテンプレートを張っておきます。
|
4
4
|
|
5
|
-
https://glitch.com/edit/#!/discord-python-test
|
5
|
+
[https://glitch.com/edit/#!/discord-python-test](https://glitch.com/edit/#!/discord-python-test)
|
6
|
-
|
7
|
-
|
8
6
|
|
9
7
|
```python
|
10
8
|
|