diff --git a/bot-lib-demo.py b/bot-lib-demo.py deleted file mode 100644 index dd7128a..0000000 --- a/bot-lib-demo.py +++ /dev/null @@ -1,25 +0,0 @@ -import time -import json -from bot import Bot, BotClient - -class MyBotClient(BotClient): - def on_poll_idle(self): - super().on_poll_idle() - - def on_poll_wake(self): - super().on_poll_wake() - - def on_poll_status(self, status): - super().on_poll_status(status) - - def on_poll_exception(self, exc): - super().on_poll_exception(exc) - -with open("config.json") as json_file: - config = json.load(json_file) - -bot = Bot(MyBotClient, config) -bot.start() - -while True: - time.sleep(1)