Plex-Bot-Music/PlexBot/__main__.py

20 lines
491 B
Python
Raw Normal View History

2020-07-23 06:21:41 +02:00
from discord.ext.commands import Bot
from .bot import General
from .bot import Plex
from PlexBot import load_config
config = load_config("config.yaml")
BOT_PREFIX = config["discord"]["prefix"]
TOKEN = config["discord"]["token"]
BASE_URL = config["plex"]["base_url"]
PLEX_TOKEN = config["plex"]["token"]
LIBRARY_NAME = config["plex"]["library_name"]
bot = Bot(command_prefix=BOT_PREFIX)
bot.add_cog(General(bot))
bot.add_cog(Plex(bot, BASE_URL, PLEX_TOKEN, LIBRARY_NAME))
bot.run(TOKEN)