-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimple-main.py
101 lines (24 loc) · 960 Bytes
/
simple-main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import asyncio
import os
import discord
from discord.ext import commands
class YouTubeTutorial(commands.Bot):
def __init__(self):
intents = discord.Intents.default()
intents.members = True
intents.presences = True
intents.message_content = True
super().__init__(command_prefix=".", intents=intents, case_insensitive=True)
async def setup_hook(self) -> None:
for filename in os.listdir('./cogs'):
if filename.endswith('.py'):
await self.load_extension(f"cogs.{filename[:-3]}")
await self.tree.sync()
async def on_ready(self):
print("unser bot sollte jetzt online sein & wir sind bereit!")
bot = YouTubeTutorial()
async def discord_login():
async with bot:
await bot.start(token="123", reconnect=True)
if __name__ == "__main__":
done = asyncio.run(discord_login())