Basic Bot setup
This commit is contained in:
commit
2ca6717165
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.vscode
|
||||||
|
__pycache__
|
||||||
|
*.json
|
7
bot.py
Normal file
7
bot.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import discord
|
||||||
|
from discord.ext import commands
|
||||||
|
from utils import config
|
||||||
|
|
||||||
|
bot = commands.Bot(config.get("prefix"))
|
||||||
|
|
||||||
|
bot.run(config.get("token"))
|
11
utils/config.py
Normal file
11
utils/config.py
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import json
|
||||||
|
|
||||||
|
config = None
|
||||||
|
with open("config.json") as file:
|
||||||
|
config = json.load(file)
|
||||||
|
|
||||||
|
if config is None:
|
||||||
|
raise "Failed to load config file"
|
||||||
|
|
||||||
|
def get(key: str) -> str:
|
||||||
|
return config[key]
|
Loading…
Reference in a new issue