Skip to content
Permalink
Browse files
Update botClient.py
  • Loading branch information
stavilam committed Nov 28, 2018
1 parent 371f56b commit 7d297f73e9ee6683fe8b05625761cb2f16508611
Showing 1 changed file with 8 additions and 4 deletions.
@@ -2,17 +2,21 @@ from discord.ext import commands

"""Module which contains all the authentication keys and tokens for the Bot connection, API and Database access etc."""

"""Add your discord bot application token here"""
botToken = "" #discord bot token
client = commands.Bot(command_prefix=commands.when_mentioned_or('>'),
description='CyberLife Prototype')

"""Add your discord user id here"""
adminId = ''
colorCode = [0x17e6f0, 0xe88f2a, 0xee0d0d, 0xff00ff]
# aqua blue, warning orange, danger red, eden club pink

weatherKey = '11da6f3bdcc71b85b5ff0b0b2e438d0b' #https://openweathermap.org
timeKey = '7BAYU4WNSSTW' #https://timezonedb.com
dictionaryId = '135ce08c' #https://developer.oxforddictionaries.com
dictionaryKey = 'b09cfb94a4d60e043ec3e4daa754f796'
"""Add your own API Keys Here"""
weatherKey = '' #https://openweathermap.org
timeKey = '' #https://timezonedb.com
dictionaryId = '' #https://developer.oxforddictionaries.com
dictionaryKey = ''

dbuser="" #MySQL database user name
dbpasswd="" #MySQL database user password

0 comments on commit 7d297f7

Please sign in to comment.