commit 2ca6717165f34b0f2d5ed09eab2a5d97145c73ea Author: Robert Date: Tue Aug 11 10:26:05 2020 +0200 Basic Bot setup diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fdc50ab --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode +__pycache__ +*.json \ No newline at end of file diff --git a/bot.py b/bot.py new file mode 100644 index 0000000..83aba1f --- /dev/null +++ b/bot.py @@ -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")) \ No newline at end of file diff --git a/utils/config.py b/utils/config.py new file mode 100644 index 0000000..834292a --- /dev/null +++ b/utils/config.py @@ -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] \ No newline at end of file