From 2ca6717165f34b0f2d5ed09eab2a5d97145c73ea Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 11 Aug 2020 10:26:05 +0200 Subject: [PATCH] Basic Bot setup --- .gitignore | 3 +++ bot.py | 7 +++++++ utils/config.py | 11 +++++++++++ 3 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 bot.py create mode 100644 utils/config.py 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