generated from kkrypt0nn/Python-Discord-Bot-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
32 lines (31 loc) · 1.41 KB
/
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
24
25
26
27
28
29
30
31
32
# To use this bot you need to set up the bot in here,
# You need to decide the prefix you want to use,
# and you need your Token and Application ID from
# the discord page where you manage your apps and bots.
# You need your User ID which you can get from the
# context menu on your name in discord under Copy ID.
# if you want to make more than 30 requests per hour to
# data.gov apis like nasa you will need to get an api key to
# replace "DEMO_KEY" below. The openweathermap (!wx),
# wolframalpha (!ask) and exchangerate-api.com apis need a
# free key from their websites to function.
# Add QRZ username and password for callsign lookup function
BOT_PREFIX = ("YOUR_BOT_PREFIX_HERE")
TOKEN = "YOUR_TOKEN_HERE"
APPLICATION_ID = "YOUR_APPLICATION_ID"
OWNERS = [123456789, 987654321]
DATA_GOV_API_KEY = "DEMO_KEY"
OPENWEATHER_API_KEY = "YOUR_API_KEY_HERE"
WOLFRAMALPHA_API_KEY = "YOUR_API_KEY_HERE"
EXCHANGERATE_API_KEY = "YOUR_API_KEY_HERE"
#QRZ_USERNAME = "YOUR_QRZ_USERNAME" #only used if using direct qrz access instead of qrmbot qrz
#QRZ_PASSWORD = "YOUR_QRZ_PASSWORD"
GOOGLEGEO_API_KEY = "YOUR_API_KEY_HERE"
WEBHOOK_URL = "https://webhookurl.here/"
APRS_FI_API_KEY = "YOUR_API_KEY_HERE"
APRS_FI_HTTP_AGENT = "lidbot/current (+https://github.com/vk3dan/sturdy-lidbot)"
BLACKLIST = []
# Default cogs that I use in the bot at the moment
STARTUP_COGS = [
"cogs.general", "cogs.help", "cogs.owner", "cogs.ham", "cogs.gonkphone"
]