-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
59 lines (47 loc) · 1.75 KB
/
app.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
import os
from platform import python_version
import rich as rch
from discord import Intents, Game, __version__
from discord.ext import commands
from classes.help import ZedHelpCommand
from classes.mongo_db_management import MongoDBConnection
from classes.twitter_ import TweepyWrapper
from config.main import PREFIX, OWNER_ID, TOKEN
# Intents
intents = Intents.all()
# The bot
bot = commands.Bot(
command_prefix=PREFIX,
intents=intents,
owner_id=OWNER_ID,
help_command=ZedHelpCommand(),
)
# Load cogs
if __name__ == "__main__":
for filename in os.listdir("Cogs"):
if filename.endswith(".py"):
bot.load_extension(f"Cogs.{filename[:-3]}")
@bot.event
async def on_ready():
print("/" * 39)
print(" ----------\\")
rch.print(f" | [b cyan]*[/] | [white]/[/]\\")
print(" -------- | / \\")
print(" / / \\ \\")
print(" / / / /")
rch.print(f" [white]/[/] [white]/[/] [b blue]The Z Bot[/] \\ \\")
print(" | -------------- /")
rch.print(f" | [b green]ONLINE[/] [white]/[/]")
print(" ------------------")
rch.print(f"|[b] [i]By: [purple]DroidZed[/purple][/i]{' ' * 17}|")
rch.print(f"|[b] Discord version: [u blue]{__version__}[/u blue]{' ' * 15}|", end="\n")
rch.print(
f"[b white]| Running under: [i yellow]Python v{python_version()}[/i yellow] :snake: |",
end="\n",
) # Don't remove the extra space added after the snake emoji, it was added so the bars will align in the console
# of the hosting.
print("/" * 39)
await bot.change_presence(activity=Game(name=f"{bot.command_prefix}help - By DroidZed"))
MongoDBConnection()
TweepyWrapper()
bot.run(TOKEN)