Removed bot library demo (it was more of a test)

master
Thor 3 years ago
parent e1b3e0ffb3
commit e0ef417f73
  1. 25
      bot-lib-demo.py

@ -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)
Loading…
Cancel
Save