-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
23 lines (16 loc) · 935 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Embed Discord Bot settings.
# Needed for STATUS and ACTIVITY constants.
import discord
# These can be ignored and deleted if you change the values of the constants below, else you should create a .env file with the env variables.
import os
from dotenv import load_dotenv
load_dotenv()
# TODO: Change these constants' values.
# TODO: Change this to match your bot's token ID.
TOKEN = os.getenv("DISCORD_TOKEN")[1:-1] # type: str
# TODO: Change this to match your guild's ID.
GUILD = os.getenv("DISCORD_GUILD")[1:-1] # type: str
# TODO: Change this as you'd like your bot to report its status (discord.Status).
STATUS = eval(os.getenv("DISCORD_STATUS")[1:-1]) # e.g. discord.Status.online
# TODO: Change this as you'd like your bot to report its activity (discord.Activity or one of its slimmed down versions, like discord.Game).
ACTIVITY = eval(os.getenv("DISCORD_ACTIVITY")[1:-1]) # e.g. discord.Game("Insert Game Name Here")